P_Cfd_Domain_Value

DDL: P_CFD_DOMAIN_VALUE SQL: P_CFD_DOM_VAL Type: view

Fixed values of a DDIC domain

P_Cfd_Domain_Value is a CDS View that provides data about "Fixed values of a DDIC domain" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key fields Name, Code.

Data Sources (1)

SourceAliasJoin Type
dd07l Value from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName P_CFD_DOM_VAL view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Fixed values of a DDIC domain view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Name dd07l domname Domain
KEY Code dd07l 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 P_Cfd_Domain_Value.
-- 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.
-- SQL view name: P_CFD_DOM_VAL

CREATE VIEW P_Cfd_Domain_Value AS
SELECT
  Value.domname AS Name,
  Value.domvalue_l AS Code
FROM dd07l AS Value
;