Cds_View_Annotation_Position

DDL: CDS_VIEW_ANNOTATION_POSITION SQL: CDSVIEWANNOPOS Type: view

CDS View Header Annotations

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

Data Sources (1)

SourceAliasJoin Type
ddheadanno ddheadanno from

Annotations (7)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName CDSVIEWANNOPOS view
EndUserText.label CDS View Header Annotations view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (5)

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

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_Position.
-- 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: CDSVIEWANNOPOS

CREATE VIEW Cds_View_Annotation_Position AS
SELECT
  strucobjn AS CDSName,
  name AS AnnotationName,
  value AS AnnotationValue,
  position AS ActualPosition,
  position - 1 AS ChangedPosition
FROM ddheadanno
;