ATO_PK_PACKAGE

Transparent Table Application Table

Transport Configuration for Package

ATO_PK_PACKAGE is an SAP database table in S/4HANA. Transport Configuration for Package. It contains 7 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
Atov_Pk_Package_Conf view from Package Configuration
Atov_Pk_Package_With_Local view from Registered packages with local packages
ATOV_U_ITEM_BASE view left_outer All items / base view

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY package_name devclass Package
request trkorr Request/Task
auto_transp_creation ato_auto_transp_creation Autom. Trans. Creat.
auto_task_creation ato_auto_task_creation Autom. Task Creat.
last_changed_by syuname User Name
last_changed_at timestamp Time Stamp

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.

-- Transport Configuration for Package
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ATO_PK_PACKAGE (
    CLIENT,                -- Client [mandt]
    PACKAGE_NAME,          -- Package [devclass]
    REQUEST,               -- Request/Task [trkorr]
    AUTO_TRANSP_CREATION,  -- Autom. Trans. Creat. [ato_auto_transp_creation]
    AUTO_TASK_CREATION,    -- Autom. Task Creat. [ato_auto_task_creation]
    LAST_CHANGED_BY,       -- User Name [syuname]
    LAST_CHANGED_AT,       -- Time Stamp [timestamp]
    PRIMARY KEY (CLIENT, PACKAGE_NAME)
);