SWF_FLEX_PDRAFT

Transparent Table Application Table

Process definition drafts

SWF_FLEX_PDRAFT is an SAP database table in S/4HANA. Process definition drafts. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
SWF_FLEX_I_PROCESS view union Workflow

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY appl_obj_id sibfboriid Instance ID
KEY scenario_id swd_wfd_id Workflow definition
scenario_version swd_versio Version
orig_appl_obj_id sibfboriid Instance ID
stream abap.rawstring
format_version char16 Field of length 16
langu langu Language
workflow_id swf_flex_workflow_id Unique Workflow Identifier
orig_stream abap.rawstring

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.

-- Process definition drafts
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SWF_FLEX_PDRAFT (
    CLIENT,            -- Client [mandt]
    APPL_OBJ_ID,       -- Instance ID [sibfboriid]
    SCENARIO_ID,       -- Workflow definition [swd_wfd_id]
    SCENARIO_VERSION,  -- Version [swd_versio]
    ORIG_APPL_OBJ_ID,  -- Instance ID [sibfboriid]
    STREAM,            -- abap.rawstring
    FORMAT_VERSION,    -- Field of length 16 [char16]
    LANGU,             -- Language [langu]
    WORKFLOW_ID,       -- Unique Workflow Identifier [swf_flex_workflow_id]
    ORIG_STREAM,       -- abap.rawstring
    PRIMARY KEY (CLIENT, APPL_OBJ_ID, SCENARIO_ID)
);