ATO_ADAPT_TYPEST

Transparent Table System Table (SAP only)

adaptation types and their classes

ATO_ADAPT_TYPEST is an SAP database table in S/4HANA. adaptation types and their classes. It contains 3 fields. 9 CDS views read from this table.

CDS Views using this table (9)

ViewTypeJoinVDMDescription
ATOV_ALL_TEXT_ADAPT_TYPE view union Item Type descr of all R3TR and LIMU
ATOV_CUST_DEPENDENCIES view left_outer ATO Item Dependencies to Custom Objects
ATOV_ITEM_DEPENDENCIES view left_outer ATO Items Dependencies
ATOV_ITEM_USAGES view left_outer ATO Items Usages
ATOV_PREFIX_ADAPT_TYPE_SUP_U view inner Supported Adaptation Types per Namespace
ATOV_PREFIX_ADAPT_TYPE_SUP_U view left_outer Supported Adaptation Types per Namespace
ATOV_RELEASED_DEPENDENCIES view left_outer ATO Item Dependencies to Released Object
ATOV_TEXT_ADAPTATION_TYPE view from Adaptation type text
P_EIT_Item_Type_Text view from Extensibility Template: Item Type Text

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY language SPRAS Language
KEY adaptation_type ATO_ITEM_TYPE Item Type
description ATO_ITEM_TYPE_DESCRIPTION Type 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.

-- adaptation types and their classes
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ATO_ADAPT_TYPEST (
    LANGUAGE,         -- Language [SPRAS]
    ADAPTATION_TYPE,  -- Item Type [ATO_ITEM_TYPE]
    DESCRIPTION,      -- Type Description [ATO_ITEM_TYPE_DESCRIPTION]
    PRIMARY KEY (LANGUAGE, ADAPTATION_TYPE)
);