p_cfd_cust_cds_view_key_fields

DDL: P_CFD_CUST_CDS_VIEW_KEY_FIELDS Type: view_entity

Key Fields of Custom CDS View

p_cfd_cust_cds_view_key_fields is a CDS View that provides data about "Key Fields of Custom CDS View" in SAP S/4HANA. It reads from 1 data source (dd03nd) and exposes 3 fields with key fields viewName, fieldName.

Data Sources (1)

SourceAliasJoin Type
dd03nd fields from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Key Fields of Custom CDS View view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY viewName dd03nd strucobjn DD: Name of a structured object (e.g. entity, context)
KEY fieldName dd03nd fieldname UI Group FieldName
length

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_cust_cds_view_key_fields.
-- 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 p_cfd_cust_cds_view_key_fields AS
SELECT
  fields.strucobjn AS viewName,
  fields.fieldname AS fieldName,
  cast ( fields.leng as integer ) AS length
FROM dd03nd AS fields
;