MPE_BUYOFF_LOG

Transparent Table Application Table

Buy Off Log

MPE_BUYOFF_LOG is an SAP database table in S/4HANA. Buy Off Log. It contains 13 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_MfgBuyOffDetails view from BASIC Buy Off Cycle Step Details

Fields (13)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY mfgbuyoffcycle mpe_buyoff_cycle_id Buyoff
KEY mfgbuyoffcyclestep mpe_buyoff_step ID
KEY counter abap.numc
status mpe_buyoff_step_status Status
notes mpe_buyoff_templatenotes Comments
katalogart qkatart Catalog
codegruppe qcodegrp Code Group
code qcode Code
version qversnr Version
action mpe_buyoff_action Buy Off Action
respymgmtteamid hrobjid Object ID
respymgmtfunction rsm_de_function Function

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.

-- Buy Off Log
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MPE_BUYOFF_LOG (
    MANDT,               -- Client [mandt]
    MFGBUYOFFCYCLE,      -- Buyoff [mpe_buyoff_cycle_id]
    MFGBUYOFFCYCLESTEP,  -- ID [mpe_buyoff_step]
    COUNTER,             -- abap.numc
    STATUS,              -- Status [mpe_buyoff_step_status]
    NOTES,               -- Comments [mpe_buyoff_templatenotes]
    KATALOGART,          -- Catalog [qkatart]
    CODEGRUPPE,          -- Code Group [qcodegrp]
    CODE,                -- Code [qcode]
    VERSION,             -- Version [qversnr]
    ACTION,              -- Buy Off Action [mpe_buyoff_action]
    RESPYMGMTTEAMID,     -- Object ID [hrobjid]
    RESPYMGMTFUNCTION,   -- Function [rsm_de_function]
    PRIMARY KEY (MANDT, MFGBUYOFFCYCLE, MFGBUYOFFCYCLESTEP, COUNTER)
);