Rsodp_Abap_Cds_Aggrlevel
ABAP CDS: Aggregation Level
Rsodp_Abap_Cds_Aggrlevel is a CDS View that provides data about "ABAP CDS: Aggregation Level" in SAP S/4HANA. It reads from 3 data sources (ddldependency, ddldependency, ddheadanno) and exposes 3 fields with key fields objectname, dataCategory.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| ddldependency | t0 | from |
| ddldependency | t1 | inner |
| ddheadanno | t2 | inner |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | RSODPABAPCDSVWAL | view | |
| ClientHandling.type | #CLIENT_INDEPENDENT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #SINGLE | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | ABAP CDS: Aggregation Level | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | objectname | ddldependency | objectname | |
| KEY | dataCategory | |||
| viewname | ddldependency | objectname |
@AbapCatalog.sqlViewName: 'RSODPABAPCDSVWAL'
@ClientHandling.type: #CLIENT_INDEPENDENT
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering: { status: #ACTIVE, type: #SINGLE }
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'ABAP CDS: Aggregation Level'
define view Rsodp_Abap_Cds_Aggrlevel as select from ddldependency as t0
inner join ddldependency as t1 on t1.ddlname = t0.ddlname
inner join ddheadanno as t2 on t2.strucobjn = t1.objectname
{
key t0.objectname as objectname,
key cast( left( t2.value, 255 ) as char255 ) as dataCategory,
t1.objectname as viewname
}
where t0.state = 'A' and t0.objecttype = 'VIEW'
and t1.state = 'A' and t1.objecttype = 'STOB'
and t2.name = 'ANALYTICS.DATACATEGORY'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DDHEADANNO",
"DDLDEPENDENCY"
],
"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