atov_cmn_import_item_level

DDL: ATOV_CMN_IMPORT_ITEM_LEVEL SQL: ATO_V_CDIL Type: view

EXT: Col Version Deps on Item Level Deps

atov_cmn_import_item_level is a CDS View that provides data about "EXT: Col Version Deps on Item Level Deps" in SAP S/4HANA. It reads from 3 data sources (atov_changelist_minus_ignored, ato_changel_dep, atov_cl_item_base) and exposes 1 field.

Data Sources (3)

SourceAliasJoin Type
atov_changelist_minus_ignored changelist from
ato_changel_dep cl_item_deps inner
atov_cl_item_base used_item_cl_item inner

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_CDIL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label EXT: Col Version Deps on Item Level Deps view

Fields (1)

KeyFieldSource TableSource FieldDescription
version atov_changelist_minus_ignored collection_version Collection Version

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_item_level.
-- 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_CDIL

CREATE VIEW atov_cmn_import_item_level AS
SELECT
  changelist.collection_version AS version
FROM atov_changelist_minus_ignored AS changelist
INNER JOIN ato_changel_dep AS cl_item_deps ON /* join condition not captured in parsed metadata */
INNER JOIN atov_cl_item_base AS used_item_cl_item ON /* join condition not captured in parsed metadata */
;