I_Text_Type_Db
Text Types
I_Text_Type_Db is a Basic CDS View that provides data about "Text Types" in SAP S/4HANA. It reads from 1 data source (ttxit) and exposes 4 fields with key fields TechnicalObjectType, DocumentText, Language. Part of development package APPL_MM_COMP_NOTES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ttxit | ttxit | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ITYPETEXTDB | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Text Types | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TechnicalObjectType | tdobject | Texts: Application Object | |
| KEY | DocumentText | tdid | Text ID | |
| KEY | Language | tdspras | Language | |
| Note | tdtext | Short Text |
@AbapCatalog.sqlViewName: 'ITYPETEXTDB'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text Types'
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
define view I_Text_Type_Db as select from ttxit
{
@EndUserText.label: 'Texts: Application Object'
key tdobject as TechnicalObjectType,
@EndUserText.label: 'Text ID'
key tdid as DocumentText,
@EndUserText.label: 'Language'
@Semantics.language: true
key tdspras as Language,
@EndUserText.label: 'Short Text'
@Semantics.text
tdtext as Note
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA