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
KEY AnnotationName name
AnnotationValue value
ActualPosition position
ChangedPosition
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.sqlViewName: 'CDSVIEWANNOPOS'
@EndUserText.label: 'CDS View Header Annotations'
@ObjectModel.usageType.serviceQuality:  #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Cds_View_Annotation_Position
  as select from ddheadanno {
  key strucobjn    as CDSName,
  key name         as AnnotationName,
  value        as AnnotationValue,
  position     as ActualPosition,
  position - 1 as ChangedPosition
};    
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DDHEADANNO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/