SWF_FLEX_DECRSNT

Transparent Table Customizing Table

Flexible Workflow: Decision Reason Texts

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

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_WorkflowTaskResultReasonText view from BASIC Workflow Task Result Reason Text

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY language sylangu Language Key
KEY scenario_id swf_flex_scenario_id Scenario
KEY reason_id swf_flex_decision_reason_id Decision Reason ID
reason_text swf_flex_decision_reason_text Reason Text

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 Texts
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SWF_FLEX_DECRSNT (
    CLIENT,       -- Client [mandt]
    LANGUAGE,     -- Language Key [sylangu]
    SCENARIO_ID,  -- Scenario [swf_flex_scenario_id]
    REASON_ID,    -- Decision Reason ID [swf_flex_decision_reason_id]
    REASON_TEXT,  -- Reason Text [swf_flex_decision_reason_text]
    PRIMARY KEY (CLIENT, LANGUAGE, SCENARIO_ID, REASON_ID)
);