CDS_VIEW_NONCUBES

DDL: CDS_VIEW_NONCUBES SQL: CDSVIEWNONCUBES Type: view

All Analytical Non-Cubes

CDS_VIEW_NONCUBES is a CDS View that provides data about "All Analytical Non-Cubes" in SAP S/4HANA. It reads from 5 data sources (Cds_View_Annotation, ddddlsrc, ddldependency, this, this) and exposes 4 fields with key field DDLSourceName.

Data Sources (5)

SourceAliasJoin Type
Cds_View_Annotation _Cubes inner
ddddlsrc ddddlsrc from
ddldependency ddldependency inner
this this inner
this this inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CDSVIEWNONCUBES view
EndUserText.label All Analytical Non-Cubes view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName ddddlsrc ddlname DDL Source Name
CDSName ddldependency objectname Object name
SQLViewName
AnnotationValue

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 CDS_VIEW_NONCUBES.
-- 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: CDSVIEWNONCUBES

CREATE VIEW CDS_VIEW_NONCUBES AS
SELECT
  ddddlsrc.ddlname AS DDLSourceName,
  ddldependency.objectname AS CDSName,
  coalesce( Cds_Sql_View.SQLViewName, ddddlsrc.ddlname) AS SQLViewName
FROM ddddlsrc
INNER JOIN ddldependency ON /* join condition not captured in parsed metadata */
INNER JOIN this ON /* join condition not captured in parsed metadata */
INNER JOIN Cds_View_Annotation AS _Cubes ON /* join condition not captured in parsed metadata */
;