I_PPM_Text
Language dependant Texts for PPM objects
I_PPM_Text is a Basic CDS View that provides data about "Language dependant Texts for PPM objects" in SAP S/4HANA. It reads from 1 data source (cgpl_text) and exposes 3 fields with key fields ReferencedObjectUUID, LanguageCode. Part of development package VDM_PPM_OBJECTS_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cgpl_text | Text | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Language dependant Texts for PPM objects | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AbapCatalog.sqlViewName | IPPMTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.representativeKey | ReferencedObjectUUID | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view |
@EndUserText.label: 'Language dependant Texts for PPM objects'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AbapCatalog: {
sqlViewName: 'IPPMTEXT',
compiler.compareFilter: true,
preserveKey:true
}
@ObjectModel: {
representativeKey: 'ReferencedObjectUUID',
dataCategory: #TEXT,
usageType: {
serviceQuality: #C,
dataClass: #MIXED,
sizeCategory: #L
}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
define view I_PPM_Text as select from cgpl_text as Text
{
@ObjectModel.text.element: 'ObjectName'
key cast(Text.guid as /s4ppm/tv_entity_guid preserving type ) as ReferencedObjectUUID,
@Semantics.language: true
key Text.langu as LanguageCode,
@Semantics.text: true
@Semantics.languageReference: 'LanguageCode'
Text.text1 as ObjectName
}
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