Cds_view_annotation_query

DDL: CDS_VIEW_ANNOTATION_QUERY SQL: CDSVIEWANNOQRY Type: view

CDS View Header Annotations

Cds_view_annotation_query is a CDS View that provides data about "CDS View Header Annotations" in SAP S/4HANA. It reads from 1 data source (Cds_View_Annotation_Position) and exposes 3 fields with key fields DDLSourceName, AnnotationName.

Data Sources (1)

SourceAliasJoin Type
Cds_View_Annotation_Position ddh from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName CDSVIEWANNOQRY view
EndUserText.label CDS View Header Annotations view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName ddldependency ddlname DDL Source Name
KEY AnnotationName Cds_View_Annotation_Position AnnotationName Zone name
AnnotationValue Cds_View_Annotation_Position AnnotationValue Value from table

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 Cds_view_annotation_query.
-- 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: CDSVIEWANNOQRY

CREATE VIEW Cds_view_annotation_query AS
SELECT
  ddldependency.ddlname AS DDLSourceName,
  ddh.AnnotationName AS AnnotationName,
  ddh.AnnotationValue AS AnnotationValue
FROM Cds_View_Annotation_Position AS ddh
;