I_CCV_Element_Successors

DDL: I_CCV_ELEMENT_SUCCESSORS Type: view_entity

CCV Element - Successors

I_CCV_Element_Successors is a CDS View that provides data about "CCV Element - Successors" in SAP S/4HANA. It reads from 3 data sources (DDCDS_ENTITY_ELEMENTS, ddfieldanno, dd02b) and exposes 3 fields with key fields entity_name, element_name.

Data Sources (3)

SourceAliasJoin Type
DDCDS_ENTITY_ELEMENTS elements inner
ddfieldanno fieldanno inner
dd02b header from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CCV Element - Successors view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY entity_name dd02b strucobjn_raw DD: Original Name of a Struct. Obj. (e.g. Entity, Context)
KEY element_name DDCDS_ENTITY_ELEMENTS element_name_raw
successor

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 I_CCV_Element_Successors.
-- 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 I_CCV_Element_Successors AS
SELECT
  header.strucobjn_raw AS entity_name,
  elements.element_name_raw AS element_name,
  replace(upper(fieldanno.value), '''', '') AS successor
FROM dd02b AS header
INNER JOIN DDCDS_ENTITY_ELEMENTS AS elements ON /* join condition not captured in parsed metadata */
INNER JOIN ddfieldanno AS fieldanno ON /* join condition not captured in parsed metadata */
;