ATO_PREFIX_SET

Transparent Table Temporary Data

Prefix and Namespace Settings for ATO

ATO_PREFIX_SET is an SAP database table in S/4HANA. Prefix and Namespace Settings for ATO. It contains 17 fields. 8 CDS views read from this table.

CDS Views using this table (8)

ViewTypeJoinVDMDescription
ATOV_BUSINESS_USER_BASE view inner ATO: Basic View for Business User
ATOV_ITEM_PREFIX_SETTINGS view left_outer Join Item Prefix and Settings
ATOV_NAMESPACE_SETTINGS view from ATO: Namespace Settings
ATOV_NAMESPACE_VH view inner Value Help for ATO Items namespace selection
ATOV_PREFIX_ADAPT_TYPE_SUP_U view from Supported Adaptation Types per Namespace
ATOV_PREFIX_ADAPT_TYPE_SUP_U view union Supported Adaptation Types per Namespace
ATOV_TRNSPACE view left_outer ATO: Namespace Settings - Fallback
EITV_EXP_ITEMS_ADD_BASE view inner Basic View for Add Items to Templates

Fields (17)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY dev_prefix NAMESPACE Namespace
dev_prefix_short NAMESPACE Namespace
is_default_prefix ABAP_BOOLEAN Truth Value
is_abap_namespace ABAP_BOOLEAN Truth Value
is_change_items_allowed ABAP_BOOLEAN Truth Value
is_create_items_allowed ABAP_BOOLEAN Truth Value
is_transport_allowed ABAP_BOOLEAN Truth Value
is_template_import_allowed ABAP_BOOLEAN Truth Value
is_template_export_allowed ABAP_BOOLEAN Truth Value
category ATO_PREFIX_CATEGORY Category of Prefix
created_by AS4USER Last Changed By
created_at TIMESTAMP Time Stamp
last_changed_by AS4USER Last Changed By
last_changed_at TIMESTAMP Time Stamp
description ATO_COLLECTION_DESCRIPTION Collect Description
provider_description ATO_COLLECTION_DESCRIPTION Collect Description

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.

-- Prefix and Namespace Settings for ATO
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ATO_PREFIX_SET (
    CLIENT,                      -- Client [MANDT]
    DEV_PREFIX,                  -- Namespace [NAMESPACE]
    DEV_PREFIX_SHORT,            -- Namespace [NAMESPACE]
    IS_DEFAULT_PREFIX,           -- Truth Value [ABAP_BOOLEAN]
    IS_ABAP_NAMESPACE,           -- Truth Value [ABAP_BOOLEAN]
    IS_CHANGE_ITEMS_ALLOWED,     -- Truth Value [ABAP_BOOLEAN]
    IS_CREATE_ITEMS_ALLOWED,     -- Truth Value [ABAP_BOOLEAN]
    IS_TRANSPORT_ALLOWED,        -- Truth Value [ABAP_BOOLEAN]
    IS_TEMPLATE_IMPORT_ALLOWED,  -- Truth Value [ABAP_BOOLEAN]
    IS_TEMPLATE_EXPORT_ALLOWED,  -- Truth Value [ABAP_BOOLEAN]
    CATEGORY,                    -- Category of Prefix [ATO_PREFIX_CATEGORY]
    CREATED_BY,                  -- Last Changed By [AS4USER]
    CREATED_AT,                  -- Time Stamp [TIMESTAMP]
    LAST_CHANGED_BY,             -- Last Changed By [AS4USER]
    LAST_CHANGED_AT,             -- Time Stamp [TIMESTAMP]
    DESCRIPTION,                 -- Collect Description [ATO_COLLECTION_DESCRIPTION]
    PROVIDER_DESCRIPTION,        -- Collect Description [ATO_COLLECTION_DESCRIPTION]
    PRIMARY KEY (CLIENT, DEV_PREFIX)
);