atov_cmn_import_dep_objcts

DDL: ATOV_CMN_IMPORT_DEP_OBJCTS SQL: ATO_V_D2CUST_DEV Type: view

Deps to Custom Development Objects

atov_cmn_import_dep_objcts is a CDS View that provides data about "Deps to Custom Development Objects" in SAP S/4HANA. It reads from 6 data sources and exposes 4 fields.

Data Sources (6)

SourceAliasJoin Type
ato_changel_bom changelist_bom inner
ato_changel_bom changelist_bom inner
ato_changel_depk dependencies from
ato_changel_depd dependencies union
atov_changelist_minus_ignored using_changelist inner
atov_changelist_minus_ignored using_changelist inner

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_D2CUST_DEV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Deps to Custom Development Objects view

Fields (4)

KeyFieldSource TableSource FieldDescription
version atov_changelist_minus_ignored collection_version Collection Version
exported_at atov_changelist_minus_ignored exported_at Time Stamp
version atov_changelist_minus_ignored collection_version Collection Version
exported_at atov_changelist_minus_ignored exported_at Time Stamp

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_import_dep_objcts.
-- 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: ATO_V_D2CUST_DEV

CREATE VIEW atov_cmn_import_dep_objcts AS
SELECT
  using_changelist.collection_version AS version,
  using_changelist.exported_at AS exported_at
FROM ato_changel_depk AS dependencies
INNER JOIN atov_changelist_minus_ignored AS using_changelist ON /* join condition not captured in parsed metadata */
INNER JOIN ato_changel_bom AS changelist_bom ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): ato_changel_depd
;