SWW_WIREGISTER

Transparent Table Temporary Data

Workflow: Registration of a Work Item

SWW_WIREGISTER is an SAP database table in S/4HANA. Workflow: Registration of a Work Item. It contains 12 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
sww_sddl_register view from Workflow: Work item actions

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY application SWW_REGAPP Application
KEY subcategory SWW_SUBCTG Category
KEY wi_id SWW_WIID Work Item ID
KEY counter SWW_REGCNT Registration counter
crt_tmstmp TIMESTAMPL Time Stamp
chg_tmstmp TIMESTAMPL Time Stamp
status SWW_REGSTA Status
retry_count SWW_CNDRTR Retries
next_eval TIMESTAMPL Time Stamp
value SWW_REG_VALUE Value
retries_left SWW_RTRLFT Retries left

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: Registration of a Work Item
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SWW_WIREGISTER (
    CLIENT,        -- Client [MANDT]
    APPLICATION,   -- Application [SWW_REGAPP]
    SUBCATEGORY,   -- Category [SWW_SUBCTG]
    WI_ID,         -- Work Item ID [SWW_WIID]
    COUNTER,       -- Registration counter [SWW_REGCNT]
    CRT_TMSTMP,    -- Time Stamp [TIMESTAMPL]
    CHG_TMSTMP,    -- Time Stamp [TIMESTAMPL]
    STATUS,        -- Status [SWW_REGSTA]
    RETRY_COUNT,   -- Retries [SWW_CNDRTR]
    NEXT_EVAL,     -- Time Stamp [TIMESTAMPL]
    VALUE,         -- Value [SWW_REG_VALUE]
    RETRIES_LEFT,  -- Retries left [SWW_RTRLFT]
    PRIMARY KEY (CLIENT, APPLICATION, SUBCATEGORY, WI_ID, COUNTER)
);