Rsodp_Abap_Cds_Aggrlevel

DDL: RSODP_ABAP_CDS_AGGRLEVEL SQL: RSODPABAPCDSVWAL Type: view

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)

SourceAliasJoin Type
ddldependency t0 from
ddldependency t1 inner
ddheadanno t2 inner

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY objectname ddldependency objectname Object name
KEY dataCategory
viewname ddldependency objectname Object name

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 Rsodp_Abap_Cds_Aggrlevel.
-- 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: RSODPABAPCDSVWAL

CREATE VIEW Rsodp_Abap_Cds_Aggrlevel AS
SELECT
  t0.objectname AS objectname,
  cast( left( t2.value, 255 ) as char255 ) AS dataCategory,
  t1.objectname AS viewname
FROM ddldependency AS t0
INNER JOIN ddldependency AS t1 ON /* join condition not captured in parsed metadata */
INNER JOIN ddheadanno AS t2 ON /* join condition not captured in parsed metadata */
;