QB_CDS_VIEW_CUBES

DDL: QB_CDS_VIEW_CUBES SQL: QBCDSVIEWCUBES Type: view

Cube CDS

QB_CDS_VIEW_CUBES is a CDS View that provides data about "Cube CDS" in SAP S/4HANA. It reads from 2 data sources (Cds_View_Annotation, ddldependency) and exposes 2 fields.

Data Sources (2)

SourceAliasJoin Type
Cds_View_Annotation _Cubes from
ddldependency ddldependency inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName QBCDSVIEWCUBES view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Cube CDS view

Fields (2)

KeyFieldSource TableSource FieldDescription
CDSName ddldependency ddlname DDL Source Name
SQLViewName 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 QB_CDS_VIEW_CUBES.
-- 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: QBCDSVIEWCUBES

CREATE VIEW QB_CDS_VIEW_CUBES AS
SELECT
  ddldependency.ddlname AS CDSName,
  ddldependency.objectname AS SQLViewName
FROM Cds_View_Annotation AS _Cubes
INNER JOIN ddldependency ON /* join condition not captured in parsed metadata */
;