ATO_CHANGEL_DEP

Transparent Table Temporary Data

ATO Item to ATO Items Dependencies

ATO_CHANGEL_DEP is an SAP database table in S/4HANA. ATO Item to ATO Items Dependencies. It contains 7 fields. 8 CDS views read from this table.

CDS Views using this table (8)

ViewTypeJoinVDMDescription
ATOV_CL_ITEM_DEP_EXP_LATEST view from Latest Item Dependencies - Exported Item
atov_cl_item_dep_latest_exp view inner Latest Export of Dep Items for CL
atov_cmn_import_item_level view inner EXT: Col Version Deps on Item Level Deps
atov_deps_imp_not_most_recent view_entity inner Deps not imported in required version
atov_historic_item_deps view_entity from Exported item deps relevant for move
ATOV_IMP_MISSING_ITEM_DEPS view left_outer Missing item dependencies at import
atov_item_dep_latest_export view_entity from Latest exported CL for item dependency
ATOV_ST_CURRENT_COL_ITEM_DEP view inner Current collection item dependencies

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY changelist_id INT4 INT4
KEY item_type ATO_ITEM_TYPE Item Type
KEY item_id ATO_ITEM_ID Item ID
KEY depending_on_item_type ATO_ITEM_TYPE Item Type
KEY depending_on_item_id ATO_ITEM_ID Item ID
depending_on_last_notification TIMESTAMP Time Stamp
non_exp_relevant ABAP_BOOLEAN Truth Value

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- ATO Item to ATO Items Dependencies
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ATO_CHANGEL_DEP (
    CHANGELIST_ID,                   -- INT4 [INT4]
    ITEM_TYPE,                       -- Item Type [ATO_ITEM_TYPE]
    ITEM_ID,                         -- Item ID [ATO_ITEM_ID]
    DEPENDING_ON_ITEM_TYPE,          -- Item Type [ATO_ITEM_TYPE]
    DEPENDING_ON_ITEM_ID,            -- Item ID [ATO_ITEM_ID]
    DEPENDING_ON_LAST_NOTIFICATION,  -- Time Stamp [TIMESTAMP]
    NON_EXP_RELEVANT,                -- Truth Value [ABAP_BOOLEAN]
    PRIMARY KEY (CHANGELIST_ID, ITEM_TYPE, ITEM_ID, DEPENDING_ON_ITEM_TYPE, DEPENDING_ON_ITEM_ID)
);