SWF_FLEX_DECRSN

Transparent Table Customizing Table

Flexible Workflow: Decision Reason

SWF_FLEX_DECRSN is an SAP database table in S/4HANA. Flexible Workflow: Decision Reason. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_WorkflowTaskResultReason view from BASIC Workflow Task Result Reason

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY scenario_id SWF_FLEX_SCENARIO_ID Scenario
KEY reason_id SWF_FLEX_DECISION_REASON_ID Decision Reason ID

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.

-- Flexible Workflow: Decision Reason
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SWF_FLEX_DECRSN (
    CLIENT,       -- Client [MANDT]
    SCENARIO_ID,  -- Scenario [SWF_FLEX_SCENARIO_ID]
    REASON_ID,    -- Decision Reason ID [SWF_FLEX_DECISION_REASON_ID]
    PRIMARY KEY (CLIENT, SCENARIO_ID, REASON_ID)
);