ddcds_entity_elements_extended

DDL: DDCDS_ENTITY_ELEMENTS_EXTENDED Type: view_entity

Metadata of CDS Entities: ext. Elements

ddcds_entity_elements_extended is a CDS View that provides data about "Metadata of CDS Entities: ext. Elements" in SAP S/4HANA. It reads from 1 data source (dd03nd) and exposes 2 fields with key fields entity_name, element_name.

Data Sources (1)

SourceAliasJoin Type
dd03nd elements from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Metadata of CDS Entities: ext. Elements view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY entity_name Entity Name Upper Case
KEY element_name Entity State

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 ddcds_entity_elements_extended.
-- 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 ddcds_entity_elements_extended AS
SELECT
  cast(elements.strucobjn as abap.char(30)) AS entity_name,
  cast(elements.fieldname as abap.char(30)) AS element_name
FROM dd03nd AS elements
;