MPE_OA_INSTANCE

Transparent Table Application Table

Operation Activity Instance

MPE_OA_INSTANCE is an SAP database table in S/4HANA. Operation Activity Instance. It contains 14 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_OperationActivityInstance view from BASIC Operation Activity Instance
V_SFIAtOpActyMissingStatus view from Missing Status of SFI at Opearion Activity

Fields (14)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY oan_instance_id mpe_oan_instance_id Instance ID
KEY oan_element_number mpe_oan_element_number Element Number
sas_name mpe_sasname_type Status Action Schema
expd_yield mpe_oa_expd_yield OA Expected Yield
expd_scrap mpe_oa_expd_scrap OA Expected Scrap
uom mpe_oa_uom OA Unit of Measure
expd_exec_durn mpe_expd_exec_duration Target Time (s)
expd_exec_labor_time mpe_expd_exec_labor_time Target Time (s)
plnty plnty Task List Type
plnnr plnnr Group
plnal plnal Group Counter
plnkn plnkn Node
versn plnversn Routing Version

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.

-- Operation Activity Instance
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MPE_OA_INSTANCE (
    MANDT,                 -- Client [mandt]
    OAN_INSTANCE_ID,       -- Instance ID [mpe_oan_instance_id]
    OAN_ELEMENT_NUMBER,    -- Element Number [mpe_oan_element_number]
    SAS_NAME,              -- Status Action Schema [mpe_sasname_type]
    EXPD_YIELD,            -- OA Expected Yield [mpe_oa_expd_yield]
    EXPD_SCRAP,            -- OA Expected Scrap [mpe_oa_expd_scrap]
    UOM,                   -- OA Unit of Measure [mpe_oa_uom]
    EXPD_EXEC_DURN,        -- Target Time (s) [mpe_expd_exec_duration]
    EXPD_EXEC_LABOR_TIME,  -- Target Time (s) [mpe_expd_exec_labor_time]
    PLNTY,                 -- Task List Type [plnty]
    PLNNR,                 -- Group [plnnr]
    PLNAL,                 -- Group Counter [plnal]
    PLNKN,                 -- Node [plnkn]
    VERSN,                 -- Routing Version [plnversn]
    PRIMARY KEY (MANDT, OAN_INSTANCE_ID, OAN_ELEMENT_NUMBER)
);