MMPUR_HUB_PRCSR

Transparent Table Application Table

Processor assignment table for Central Purchase Requisitions

MMPUR_HUB_PRCSR is an SAP database table in S/4HANA. Processor assignment table for Central Purchase Requisitions. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_PrmHbRplPurRqItmAssgdProcsr view_entity from BASIC Assigned processor for a Pur Reqn item

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY purchaserequisition BANFN Purchase Req.
KEY purchaserequisitionitem BNFPO Requisn. item
KEY extsourcesystem MMPUR_D_SOURCE_SYS Connected System ID
processor_id XUBNAME User

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.

-- Processor assignment table for Central Purchase Requisitions
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MMPUR_HUB_PRCSR (
    MANDT,                    -- Client [MANDT]
    PURCHASEREQUISITION,      -- Purchase Req. [BANFN]
    PURCHASEREQUISITIONITEM,  -- Requisn. item [BNFPO]
    EXTSOURCESYSTEM,          -- Connected System ID [MMPUR_D_SOURCE_SYS]
    PROCESSOR_ID,             -- User [XUBNAME]
    PRIMARY KEY (MANDT, PURCHASEREQUISITION, PURCHASEREQUISITIONITEM, EXTSOURCESYSTEM)
);