TACE_ITEMTYPES

Transparent Table Customizing Table

Assignment of Accrual Item Types to Posting Schemas

TACE_ITEMTYPES is an SAP database table in S/4HANA. Assignment of Accrual Item Types to Posting Schemas. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
V_TACE_ITEMTYPE_POST view inner Accrual item types that perform postings

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY comp ace_comp Component
KEY itemtype ace_itemtype Accr Item Type
KEY bukrs bukrs Company Code
KEY posting_type ace_ttype Accr Trans Type

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.

-- Assignment of Accrual Item Types to Posting Schemas
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TACE_ITEMTYPES (
    MANDT,         -- Client [mandt]
    COMP,          -- Component [ace_comp]
    ITEMTYPE,      -- Accr Item Type [ace_itemtype]
    BUKRS,         -- Company Code [bukrs]
    POSTING_TYPE,  -- Accr Trans Type [ace_ttype]
    PRIMARY KEY (MANDT, COMP, ITEMTYPE, BUKRS, POSTING_TYPE)
);