P_TextIdType
P_TextIdType is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ttxit) and exposes 4 fields with key fields TechnicalObjectType, DocumentText.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ttxit | ttxit | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | PTXTTYP | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TechnicalObjectType | tdobject | Texts: Application Object | |
| KEY | DocumentText | tdid | Text ID | |
| Note | tdtext | Short Text | ||
| Language | tdspras | Language |
@VDM.private : true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'PTXTTYP'
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define view P_TextIdType
as select from ttxit
{
@EndUserText.label: 'Texts: Application Object'
key tdobject as TechnicalObjectType,
@EndUserText.label: 'Text ID'
key tdid as DocumentText,
@EndUserText.label: 'Short Text'
@Semantics.text
tdtext as Note,
@EndUserText.label: 'Language'
@Semantics.language: true
tdspras as Language
}
where tdobject = 'EBAN'
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