PPMRP_SUP_DEM_IT

Transparent Table Application Table

Supply and Demand Items

PPMRP_SUP_DEM_IT is an SAP database table in S/4HANA. Supply and Demand Items. It contains 8 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
C_SupplyDemandItem view_entity from CONSUMPTION Supply And Demand Items
E_SupplyDemandItem view_entity from EXTENSION Supply and Demand Items - Extension

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY line syst_index Loop Index
KEY mrpplant werks_d Plant
KEY mrparea berid MRP Area
KEY matnr matnr Material
materialshortagedefinitionid ppmrp_short_def_id Shortage Def. ID
mrpplanningsegmenttype plaab MRP segment
mrpplanningsegmentnumber planr Plng Segmnt No.

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.

-- Supply and Demand Items
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE PPMRP_SUP_DEM_IT (
    MANDT,                         -- Client [mandt]
    LINE,                          -- Loop Index [syst_index]
    MRPPLANT,                      -- Plant [werks_d]
    MRPAREA,                       -- MRP Area [berid]
    MATNR,                         -- Material [matnr]
    MATERIALSHORTAGEDEFINITIONID,  -- Shortage Def. ID [ppmrp_short_def_id]
    MRPPLANNINGSEGMENTTYPE,        -- MRP segment [plaab]
    MRPPLANNINGSEGMENTNUMBER,      -- Plng Segmnt No. [planr]
    PRIMARY KEY (MANDT, LINE, MRPPLANT, MRPAREA, MATNR)
);