/APE/C_DomainValuesText

DDL: /APE/C_DOMAINVALUESTEXT Type: view_entity COMPOSITE

Domain Value - Text

/APE/C_DomainValuesText is a Composite CDS View that provides data about "Domain Value - Text" in SAP S/4HANA. It reads from 1 data source (/APE/I_DomainValueText) and exposes 4 fields with key fields Name, ValueCode, Language.

Data Sources (1)

SourceAliasJoin Type
/APE/I_DomainValueText DomainValueText from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Domain Value - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Name view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Name domname Domain
KEY ValueCode domvalue_l Lower Value
KEY Language ddlanguage Lang.
Text 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 /APE/C_DomainValuesText.
-- 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 /APE/C_DomainValuesText AS
SELECT
  domname AS Name,
  domvalue_l AS ValueCode,
  ddlanguage AS Language,
  ddtext AS Text
FROM /APE/I_DomainValueText AS DomainValueText
;