ATOV_CMN_EXT_MISSING_CUST_DEV

DDL: ATOV_CMN_EXT_MISSING_CUST_DEV SQL: ATOV_CMN_EXTCDO Type: view

Extensibility Deps to missing Custom Dev Objects

ATOV_CMN_EXT_MISSING_CUST_DEV is a CDS View that provides data about "Extensibility Deps to missing Custom Dev Objects" in SAP S/4HANA. It reads from 3 data sources (ato_changelists, ato_changel_depk, tadir) and exposes 2 fields.

Data Sources (3)

SourceAliasJoin Type
ato_changelists changelist inner
ato_changel_depk dependencies from
tadir tadir left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATOV_CMN_EXTCDO view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Extensibility Deps to missing Custom Dev Objects view

Fields (2)

KeyFieldSource TableSource FieldDescription
item_type ato_changel_depk item_type Type
item_id ato_changel_depk item_id Simulation Item ID

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 ATOV_CMN_EXT_MISSING_CUST_DEV.
-- 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: ATOV_CMN_EXTCDO

CREATE VIEW ATOV_CMN_EXT_MISSING_CUST_DEV AS
SELECT
  dependencies.item_type AS item_type,
  dependencies.item_id AS item_id
FROM ato_changel_depk AS dependencies
INNER JOIN ato_changelists AS changelist ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tadir ON /* join condition not captured in parsed metadata */
;