ALL_CDS_VIEWS

DDL: ALL_CDS_VIEWS SQL: ALLCDSVIEWS Type: view

List of all cds views

ALL_CDS_VIEWS is a CDS View that provides data about "List of all cds views" in SAP S/4HANA. It reads from 1 data source (ddddlsrc) and exposes 2 fields with key field DDLSourceName.

Data Sources (1)

SourceAliasJoin Type
ddddlsrc CDSViewsList from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ALLCDSVIEWS view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label List of all cds views view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName ddddlsrc ddlname DDL Source Name
CDSOriginKey ddddlsrc source_origin Source Origin

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 ALL_CDS_VIEWS.
-- 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: ALLCDSVIEWS

CREATE VIEW ALL_CDS_VIEWS AS
SELECT
  CDSViewsList.ddlname AS DDLSourceName,
  CDSViewsList.source_origin AS CDSOriginKey
FROM ddddlsrc AS CDSViewsList
;