TWFS

Transparent Table Temporary Data

Workflow 3.0: Folders - Views of a User

TWFS is an SAP database table in S/4HANA. Workflow 3.0: Folders - Views of a User. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_WorkflowTaskRecipient view right_outer BASIC Work item recipients

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY uname UNAME User Name
KEY sicht SWL_VIEW View
KEY s_cnt SWL_VINDEX Counter
otype OTYPE Object type
objid ACTORID Agent ID
reppr HR_REP_PRF Substitute Profile
active HS_REP_ACT Substitution active
rep_flag HR_REP_FLG Substitute

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.

-- Workflow 3.0: Folders - Views of a User
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TWFS (
    MANDT,     -- Client [MANDT]
    UNAME,     -- User Name [UNAME]
    SICHT,     -- View [SWL_VIEW]
    S_CNT,     -- Counter [SWL_VINDEX]
    OTYPE,     -- Object type [OTYPE]
    OBJID,     -- Agent ID [ACTORID]
    REPPR,     -- Substitute Profile [HR_REP_PRF]
    ACTIVE,    -- Substitution active [HS_REP_ACT]
    REP_FLAG,  -- Substitute [HR_REP_FLG]
    PRIMARY KEY (MANDT, UNAME, SICHT, S_CNT)
);