MPE_BUYOFFSTEPS

Transparent Table Application Table

Buyoff Cycle Step Table

MPE_BUYOFFSTEPS is an SAP database table in S/4HANA. Buyoff Cycle Step Table. It contains 13 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_MfgBuyOffCycleStep view from BASIC Buyoff Cycle Step
I_MfgBuyOffCycleStepTP view from TRANSACTIONAL Buy Off Cycle Steps

Fields (13)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY mfgbuyoffcycle mpe_buyoff_cycle_id Buyoff
KEY mfgbuyoffinternalid mpe_buyoff_step ID
sequence mpe_buyoff_sequence Sequence
respymgmtteamid hrobjid Object ID
respymgmtfunction rsm_de_function Function
mfgbuyoffstatus mpe_buyoff_step_status Status
mfgbuyoffisskipped mpe_buyoff_skippable Skip
mfgbuyoffcertchkisrqd mpe_buyoff_certcheck Qual. Check
processor mpe_buyoff_processor Processor
mfgbuyoffreferencedstep mpe_buyoff_step ID
mfgbuyoffadhocstepdescription mpe_buyoffsqnc_desc Buyoff Description
ismarkedfordeletion mpe_buyoff_step_is_deleted Deletion Indicator

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.

-- Buyoff Cycle Step Table
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MPE_BUYOFFSTEPS (
    CLIENT,                         -- Client [mandt]
    MFGBUYOFFCYCLE,                 -- Buyoff [mpe_buyoff_cycle_id]
    MFGBUYOFFINTERNALID,            -- ID [mpe_buyoff_step]
    SEQUENCE,                       -- Sequence [mpe_buyoff_sequence]
    RESPYMGMTTEAMID,                -- Object ID [hrobjid]
    RESPYMGMTFUNCTION,              -- Function [rsm_de_function]
    MFGBUYOFFSTATUS,                -- Status [mpe_buyoff_step_status]
    MFGBUYOFFISSKIPPED,             -- Skip [mpe_buyoff_skippable]
    MFGBUYOFFCERTCHKISRQD,          -- Qual. Check [mpe_buyoff_certcheck]
    PROCESSOR,                      -- Processor [mpe_buyoff_processor]
    MFGBUYOFFREFERENCEDSTEP,        -- ID [mpe_buyoff_step]
    MFGBUYOFFADHOCSTEPDESCRIPTION,  -- Buyoff Description [mpe_buyoffsqnc_desc]
    ISMARKEDFORDELETION,            -- Deletion Indicator [mpe_buyoff_step_is_deleted]
    PRIMARY KEY (CLIENT, MFGBUYOFFCYCLE, MFGBUYOFFINTERNALID)
);