TPTMT

Transparent Table Customizing (protected)

Materials: Item Category Groups in Mat.Master: Texts

TPTMT is an SAP database table in S/4HANA. Materials: Item Category Groups in Mat.Master: Texts. It contains 4 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_ItemCategoryGroupText view from BASIC Item Category Group - Text
P_Itemcatgrptext view from BASIC
VC_INTEGRATION_TPTMT view from Extraction for TPTMT

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY spras SPRAS Language
KEY mtpos MTPOS Item Cat. Group
bezei BEZEI20 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.

-- Materials: Item Category Groups in Mat.Master: Texts
-- Category TRANSPARENT · Delivery class G
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TPTMT (
    MANDT,  -- Client [MANDT]
    SPRAS,  -- Language [SPRAS]
    MTPOS,  -- Item Cat. Group [MTPOS]
    BEZEI,  -- Description [BEZEI20]
    PRIMARY KEY (MANDT, SPRAS, MTPOS)
);