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)
);