/ssb/cds_Sql_View

DDL: /SSB/CDS_SQL_VIEW SQL: /ssb/cdssqlview Type: view

Fetches list of all sql views

/ssb/cds_Sql_View is a CDS View that provides data about "Fetches list of all sql views" in SAP S/4HANA. It reads from 1 data source (ddldependency) and exposes 2 fields with key field DDLSourceName.

Data Sources (1)

SourceAliasJoin Type
ddldependency ddldependency from

Annotations (7)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName /ssb/cdssqlview view
EndUserText.label Fetches list of all sql views view
ObjectModel.usageType.serviceQuality #P view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName 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 /ssb/cds_Sql_View.
-- 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: /ssb/cdssqlview

CREATE VIEW /ssb/cds_Sql_View AS
SELECT
  ddldependency.ddlname AS DDLSourceName,
  ddldependency.objectname AS SQLViewName
FROM ddldependency
;