P_CDSHEADERANNOTATIONS
P_CDSHEADERANNOTATIONS is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ddheadanno) and exposes 5 fields with key fields DDLName, AnnotationName.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ddheadanno | ddheadanno | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCDSHEADERANNO | 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 | #M | view | |
| ObjectModel.usageType.dataClass | #META | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DDLName | strucobjn | ||
| KEY | AnnotationName | name | ||
| AnnotationValue | value | |||
| ActualPosition | position | |||
| ReplaceCharacter |
@AbapCatalog.sqlViewName: 'PCDSHEADERANNO'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'CDS View header Annotations'
@ClientHandling.type: #CLIENT_INDEPENDENT
@ClientHandling.algorithm: #NONE
@VDM.private: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #META
define view P_CDSHEADERANNOTATIONS
as select from ddheadanno
{
key strucobjn as DDLName,
key name as AnnotationName,
value as AnnotationValue,
position as ActualPosition,
'''' as ReplaceCharacter
} where value !=''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DDHEADANNO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA