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)
);