TCXPS

Transparent Table Customizing Table

Control parameters for WBS scheduling

TCXPS is an SAP database table in S/4HANA. Control parameters for WBS scheduling. It contains 12 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_Wbsschedulingprofile view from BASIC WBS Scheduling Profile Details

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY profil PS_SCHDPRF WBS sched. prof
termkz TERMKZ Scheduling type
term_auto PSTERM_AUTO Autom.schedul.
prot_auto PROT_AUTO Automatic log
stverg STVERG Start in past
ecktm_upd ECKTM_UPD Adjust bsc date
redst_max REDST_MAX Max.redn. level
matfrueh LAGE_FR Latest staging
flgwbs PS_FLGWBS Schedul. method
auf_shift AUF_SHIFT Shift order
red_art RED_ART Reduction 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.

-- Control parameters for WBS scheduling
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TCXPS (
    MANDT,      -- Client [MANDT]
    PROFIL,     -- WBS sched. prof [PS_SCHDPRF]
    TERMKZ,     -- Scheduling type [TERMKZ]
    TERM_AUTO,  -- Autom.schedul. [PSTERM_AUTO]
    PROT_AUTO,  -- Automatic log [PROT_AUTO]
    STVERG,     -- Start in past [STVERG]
    ECKTM_UPD,  -- Adjust bsc date [ECKTM_UPD]
    REDST_MAX,  -- Max.redn. level [REDST_MAX]
    MATFRUEH,   -- Latest staging [LAGE_FR]
    FLGWBS,     -- Schedul. method [PS_FLGWBS]
    AUF_SHIFT,  -- Shift order [AUF_SHIFT]
    RED_ART,    -- Reduction Type [RED_ART]
    PRIMARY KEY (MANDT, PROFIL)
);