P_Ddl_Viewname

DDL: P_DDL_VIEWNAME SQL: PDDLVIEWNAME Type: view BASIC

P_Ddl_Viewname is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (ddldependency, ddldependency) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
ddldependency sqlview inner
ddldependency stob from

Annotations (4)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName PDDLVIEWNAME view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
stob_name ddldependency objectname Object name
view_name ddldependency objectname Object name
ddl_name ddldependency ddlname DDL Source 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 P_Ddl_Viewname.
-- 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: PDDLVIEWNAME

CREATE VIEW P_Ddl_Viewname AS
SELECT
  stob.objectname AS stob_name,
  sqlview.objectname AS view_name,
  stob.ddlname AS ddl_name
FROM ddldependency AS stob
INNER JOIN ddldependency AS sqlview ON /* join condition not captured in parsed metadata */
;