P_Cfd_Associable_Cds_View_Keys

DDL: P_CFD_ASSOCIABLE_CDS_VIEW_KEYS Type: view_entity

Key Fields of Associable CDS Views

P_Cfd_Associable_Cds_View_Keys is a CDS View that provides data about "Key Fields of Associable CDS Views" in SAP S/4HANA. It reads from 1 data source (dd03nd) and exposes 6 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 Associable CDS Views view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ViewName dd03nd strucobjn DD: Name of a structured object (e.g. entity, context)
KEY FieldName dd03nd fieldname UI Group FieldName
FieldNameCamelCase dd03nd fieldname_raw Property Name
DataType dd03nd datatype Field Type
Length
Scale

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_Associable_Cds_View_Keys.
-- 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_Associable_Cds_View_Keys AS
SELECT
  fields.strucobjn AS ViewName,
  fields.fieldname AS FieldName,
  fields.fieldname_raw AS FieldNameCamelCase,
  fields.datatype AS DataType,
  cast ( fields.leng as integer ) AS Length,
  cast ( fields.decimals as integer ) AS Scale
FROM dd03nd AS fields
;