P_Cfd_Successors_For_C0_CDS

DDL: P_CFD_SUCCESSORS_FOR_C0_CDS Type: view_entity

P_Cfd_Successors_For_C0_CDS is a CDS View in SAP S/4HANA. It reads from 2 data sources (ddldependency, ddldependency) and exposes 3 fields with key fields tadir_object, object_type, object_key.

Data Sources (2)

SourceAliasJoin Type
ddldependency _stobDependencyObject left_outer
ddldependency _stobDependencySuccessor left_outer

Annotations (1)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY tadir_object
KEY object_type
KEY object_key registry cds_view_name STOB 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_Cfd_Successors_For_C0_CDS.
-- 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.

CREATE VIEW P_Cfd_Successors_For_C0_CDS AS
SELECT
  'DDLS' AS tadir_object,
  'CDS_STOB' AS object_type,
  registry.cds_view_name AS object_key
LEFT OUTER JOIN ddldependency AS _stobDependencyObject ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ddldependency AS _stobDependencySuccessor ON /* join condition not captured in parsed metadata */
;