SWF_FLEX_TEXT_WF

Transparent Table Application Table

Workflow Translation

SWF_FLEX_TEXT_WF is an SAP database table in S/4HANA. Workflow Translation. It contains 5 fields. 18 CDS views read from this table.

CDS Views using this table (18)

ViewTypeJoinVDMDescription
I_WorkflowTmplTxtTrnsltn view left_outer BASIC Workflow Template Text
SWF_FLEX_TEXT_FILL view inner Retrieve texts
SWF_FLEX_TEXT_FILL view union Retrieve texts
SWF_FLEX_TEXT_FILL_INST view inner Retrieve texts
SWF_FLEX_TEXT_FILL_INST view left_outer Retrieve texts
SWF_FLEX_TEXT_FILL_INST view union Retrieve texts
SWF_FLEX_TEXT_LAST_CHG view from Last change of original texts
SWF_FLEX_TEXT_NOF_TEXTID view from Number of texts
SWF_FLEX_TEXT_NOF_TEXTID view union_all Number of texts
SWF_FLEX_TEXT_ORIGINAL view inner Retrieve texts
SWF_FLEX_TEXT_PROPOSAL view cross Waiting Since
SWF_FLEX_TEXT_TRANS_PROG view from Translation Progress
SWF_FLEX_TEXT_TRANS_STATE view from Translation Progress
SWF_FLEX_TEXT_TRANS_STATE view union_all Translation Progress
SWF_FLEX_TEXT_WAITING_SINCE_V view from Waiting Since
SWF_FLEX_TEXT_WAITING_SINCE_V view union_all Waiting Since
swf_flex_text_wf_view view from Workflow Translation
swf_flex_text_wf_view view union_all Workflow Translation

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY wf_id SWF_FLEX_WORKFLOW_ID Unique Workflow Identifier
original_langu SWF_FLEX_TEXT_ORIGINAL_LANGU Original Language
scenario_id SWF_FLEX_SCENARIO_ID Scenario
wf_type SWF_FLEX_PTYPE Workflow Type

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 Translation
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SWF_FLEX_TEXT_WF (
    CLIENT,          -- Client [MANDT]
    WF_ID,           -- Unique Workflow Identifier [SWF_FLEX_WORKFLOW_ID]
    ORIGINAL_LANGU,  -- Original Language [SWF_FLEX_TEXT_ORIGINAL_LANGU]
    SCENARIO_ID,     -- Scenario [SWF_FLEX_SCENARIO_ID]
    WF_TYPE,         -- Workflow Type [SWF_FLEX_PTYPE]
    PRIMARY KEY (CLIENT, WF_ID)
);