TCF10

Transparent Table Customizing Table

PRT control key

TCF10 is an SAP database table in S/4HANA. PRT control key. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ProdnRsceToolControlProfile view from BASIC Production Resource Tool Control Profile

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY steuf steuf PRT Control Profile
xterm xterm Schedule
xkalk xkalk Calculate
xrueck xrueck Confirm
xdruck xdruck Print
xexpand xexpand Expand

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.

-- PRT control key
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TCF10 (
    MANDT,    -- Client [mandt]
    STEUF,    -- PRT Control Profile [steuf]
    XTERM,    -- Schedule [xterm]
    XKALK,    -- Calculate [xkalk]
    XRUECK,   -- Confirm [xrueck]
    XDRUCK,   -- Print [xdruck]
    XEXPAND,  -- Expand [xexpand]
    PRIMARY KEY (MANDT, STEUF)
);