PPFTTTCU

Transparent Table Control Table (SAP+Cust)

PPF: Action Definition in Customizing

PPFTTTCU is an SAP database table in S/4HANA. PPF: Action Definition in Customizing. It contains 22 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_InhRepairPostProcgActionDef view from BASIC Action Definition for In-House Service

Fields (22)

KeyField Data ElementDescription DomainTypeLength
KEY mandt SYMANDT Client ID
KEY name PPFDTT Action Definition
contxtname PPFDCNTXT Action Profile
changeable PPFDCHNG Modifiable
multiple PPFDMULTP Multi. Sending Poss.
partindep PPFDNOPART Partner-Dependent
dsptchtime PPFDDSPTCH Processing Time
inactive PPFDTTIACT Inactive
determcls PPFDCLASS Class Name
determguid PPF_GUID GUID
mergecls PPFDCLASS Class Name
mergeguid PPF_GUID GUID
partnrole PPFDPARTRL Partner func.
execdialog PPFDEXDIAL Exec. in Dialog
sortfield1 PPFDSORTFD Sort Field
sortfield2 PPFDSORTFD Sort Field
sortfield3 PPFDSORTFD Sort Field
setingrid PPFDIACT Inactive
execanddel PPFDEXEDEL DeleteAfterExecution
ttsort PPFDTTSORT Sort Order
dsptchnota PPFDDSPTCX Processing Time
ruletype PPFDDETTYP Rule 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.

-- PPF: Action Definition in Customizing
-- Category TRANSPARENT · Delivery class E
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE PPFTTTCU (
    MANDT,       -- Client ID [SYMANDT]
    NAME,        -- Action Definition [PPFDTT]
    CONTXTNAME,  -- Action Profile [PPFDCNTXT]
    CHANGEABLE,  -- Modifiable [PPFDCHNG]
    MULTIPLE,    -- Multi. Sending Poss. [PPFDMULTP]
    PARTINDEP,   -- Partner-Dependent [PPFDNOPART]
    DSPTCHTIME,  -- Processing Time [PPFDDSPTCH]
    INACTIVE,    -- Inactive [PPFDTTIACT]
    DETERMCLS,   -- Class Name [PPFDCLASS]
    DETERMGUID,  -- GUID [PPF_GUID]
    MERGECLS,    -- Class Name [PPFDCLASS]
    MERGEGUID,   -- GUID [PPF_GUID]
    PARTNROLE,   -- Partner func. [PPFDPARTRL]
    EXECDIALOG,  -- Exec. in Dialog [PPFDEXDIAL]
    SORTFIELD1,  -- Sort Field [PPFDSORTFD]
    SORTFIELD2,  -- Sort Field [PPFDSORTFD]
    SORTFIELD3,  -- Sort Field [PPFDSORTFD]
    SETINGRID,   -- Inactive [PPFDIACT]
    EXECANDDEL,  -- DeleteAfterExecution [PPFDEXEDEL]
    TTSORT,      -- Sort Order [PPFDTTSORT]
    DSPTCHNOTA,  -- Processing Time [PPFDDSPTCX]
    RULETYPE,    -- Rule Type [PPFDDETTYP]
    PRIMARY KEY (MANDT, NAME)
);