/APE/C_DomainValues

DDL: /APE/C_DOMAINVALUES Type: view_entity CONSUMPTION

Values from DDIC Domain

/APE/C_DomainValues is a Consumption CDS View that provides data about "Values from DDIC Domain" in SAP S/4HANA. It reads from 1 data source (/APE/I_DomainValue) and exposes 3 fields with key fields Name, ValueCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_DomainValue /APE/I_DomainValue from

Associations (1)

CardinalityTargetAliasCondition
[0..1] /APE/C_DomainValuesText _Text $projection.Name = _Text.Name and $projection.ValueCode = _Text.ValueCode and _Text.Language = $session.system_language

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Values from DDIC Domain view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #CONSUMPTION view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Name domname Domain
KEY ValueCode domvalue_l Lower Value
_Text _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_DomainValues.
-- 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_DomainValues AS
SELECT
  domname AS Name,
  domvalue_l AS ValueCode
FROM /APE/I_DomainValue
LEFT OUTER JOIN /APE/C_DomainValuesText AS _Text ON Name = _Text.Name AND ValueCode = _Text.ValueCode AND _Text.Language = $session.system_language  -- association [0..1]
;