I_RequestObjectLangText

DDL: I_REQUESTOBJECTLANGTEXT Type: view_entity

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.

Data Sources (2)

SourceAliasJoin Type
dd07l Domain from
dd07t DomainText left_outer

Annotations (6)

NameValueLevelField
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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TransportRequestObjectType dd07l domvalue_l Lower Value
TransportRequestObjectTypeDesc dd07t ddtext Short text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_RequestObjectLangText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_RequestObjectLangText AS
SELECT
  Domain.domvalue_l AS TransportRequestObjectType,
  DomainText.ddtext AS TransportRequestObjectTypeDesc
FROM dd07l AS Domain
LEFT OUTER JOIN dd07t AS DomainText ON /* join condition not captured in parsed metadata */
;