P_CDSFIELDANNOTATIONS

DDL: P_CDSFIELDANNOTATIONS SQL: PCDSFIELDANNO Type: view BASIC

P_CDSFIELDANNOTATIONS is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ddfieldanno) and exposes 5 fields with key fields DDLName, FieldName, AnnotationName.

Data Sources (1)

SourceAliasJoin Type
ddfieldanno ddfieldanno from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCDSFIELDANNO view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #CLIENT_INDEPENDENT view
ClientHandling.algorithm #NONE view
VDM.private true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DDLName strucobjn DD: Name of a structured object (e.g. entity, context)
KEY FieldName lfieldname DD: Concatenated Field Name
KEY AnnotationName name Zone name
AnnotationValue value Value from table
ActualPosition position Test Position

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_CDSFIELDANNOTATIONS.
-- 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: PCDSFIELDANNO

CREATE VIEW P_CDSFIELDANNOTATIONS AS
SELECT
  strucobjn AS DDLName,
  lfieldname AS FieldName,
  name AS AnnotationName,
  value AS AnnotationValue,
  position AS ActualPosition
FROM ddfieldanno
;