MPE_ACTION

Transparent Table System Table (SAP only)

MPE non-SAS Actions

MPE_ACTION is an SAP database table in S/4HANA. MPE non-SAS Actions. It contains 9 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_ManufacturingAction view from BASIC Manufacturing Action
P_RTGVersUIActVH view_entity from BASIC

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY action_name MPE_ACTION_NAME_TYPE Action
object_type MPE_OBJECT_TYPE Object Type
supports_ahf MPE_ACTN_SUPPORTS_AHF Supports AHF
supports_qualifn_chk MPE_ACTN_SUPPORTS_QUALIFN_CHK Supports Qualification Check
supports_reason_code MPE_ACTN_SUPPORTS_REASON_CODE Supports Reason Code
katalogart QKATART Catalog
supports_note MPE_ACTN_SUPPORTS_NOTE Supports Note
icon_name MPE_ICON_NAME Icon Name
icon_id ICON_D Icon in text fields (substitute display, alias)

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.

-- MPE non-SAS Actions
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MPE_ACTION (
    ACTION_NAME,           -- Action [MPE_ACTION_NAME_TYPE]
    OBJECT_TYPE,           -- Object Type [MPE_OBJECT_TYPE]
    SUPPORTS_AHF,          -- Supports AHF [MPE_ACTN_SUPPORTS_AHF]
    SUPPORTS_QUALIFN_CHK,  -- Supports Qualification Check [MPE_ACTN_SUPPORTS_QUALIFN_CHK]
    SUPPORTS_REASON_CODE,  -- Supports Reason Code [MPE_ACTN_SUPPORTS_REASON_CODE]
    KATALOGART,            -- Catalog [QKATART]
    SUPPORTS_NOTE,         -- Supports Note [MPE_ACTN_SUPPORTS_NOTE]
    ICON_NAME,             -- Icon Name [MPE_ICON_NAME]
    ICON_ID,               -- Icon in text fields (substitute display, alias) [ICON_D]
    PRIMARY KEY (ACTION_NAME)
);