I_RequestObjectLangText
Calculate translation for LANG Program ID
I_RequestObjectLangText is a CDS View that provides data about "Calculate translation for LANG Program ID" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field TransportRequestObjectType. Part of development package S_APS_TR_CUS.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Calculate translation for LANG Program ID | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Calculate translation for LANG Program ID'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity I_RequestObjectLangText as select from dd07l as Domain
left outer join dd07t as DomainText on Domain.domname = DomainText.domname
and Domain.as4local = DomainText.as4local
and Domain.valpos = DomainText.valpos
and Domain.as4vers = DomainText.as4vers
{
key Domain.domvalue_l as TransportRequestObjectType,
@Semantics.text: true
DomainText.ddtext as TransportRequestObjectTypeDesc
}
where
Domain.domname = 'CTO_TRANSLATION_TEXT'
and Domain.as4local = 'A'
and Domain.as4vers = '0000'
and DomainText.ddlanguage = $session.system_language
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