/SCWM/ORDIM_E

Transparent Table Application Table

Exception Codes for Warehouse Task

/SCWM/ORDIM_E is an SAP database table in S/4HANA. Exception Codes for Warehouse Task. It contains 7 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_EWM_WhseTaskExceptionCode view from BASIC Warehouse task exception codes
I_EWM_WhseTaskExceptionCode_2 view_entity from BASIC Exception Code for Warehouse Task

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY lgnum /SCWM/LGNUM Warehouse No.
KEY tanum /SCWM/TANUM Warehouse Task
KEY tapos /SCWM/TAPOS WT Item
KEY exccode /SCWM/DE_EXCCODE Exception Code
KEY buscon /SCWM/DE_BUSCON Bus. Context
KEY exec_step /SCWM/DE_EXEC_STEP Exec. Step

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.

-- Exception Codes for Warehouse Task
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /SCWM/ORDIM_E (
    MANDT,      -- Client [MANDT]
    LGNUM,      -- Warehouse No. [/SCWM/LGNUM]
    TANUM,      -- Warehouse Task [/SCWM/TANUM]
    TAPOS,      -- WT Item [/SCWM/TAPOS]
    EXCCODE,    -- Exception Code [/SCWM/DE_EXCCODE]
    BUSCON,     -- Bus. Context [/SCWM/DE_BUSCON]
    EXEC_STEP,  -- Exec. Step [/SCWM/DE_EXEC_STEP]
    PRIMARY KEY (MANDT, LGNUM, TANUM, TAPOS, EXCCODE, BUSCON, EXEC_STEP)
);