MMSPDDDETAILS

Transparent Table Application Table

Sourcing Project Demand Distribution Details

MMSPDDDETAILS is an SAP database table in S/4HANA. Sourcing Project Demand Distribution Details. It contains 9 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
E_SrcgProjItmDmndDistrDetail view_entity from EXTENSION Dmnd Distr Dets SrcgProj Itm - Extension
R_SrcgProjItmDmndDistrDetail view_entity from BASIC Demand Distr Details for Srcg Proj Item

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY srcgprojdmnddistrdetailsuuid VDM_SPDMNDDISTRDETAILSUUID Demand Distribution Details UUID
srcgprojdmnddistributionuuid VDM_SRCGPROJDMNDDISTRUUID Demand Distribution UUID
fiscalyear FIS_GJAHR_NO_CONV Fiscal Year
requestedquantity VDM_REQUESTED_QUANTITY Requested Quantity
sourcingorigin VDM_SOURCINGORIGIN Sourcing Origin
sourcingscenario VDM_SOURCINGSCENARIO Integration Scenario
sourcingprojectuuid VDM_SOURCINGPROJECTUUID Sourcing Project UUID
dummy_srcgprojddd_incl_eew_ps CFD_DUMMY Dummy

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.

-- Sourcing Project Demand Distribution Details
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MMSPDDDETAILS (
    MANDT,                          -- Client [MANDT]
    SRCGPROJDMNDDISTRDETAILSUUID,   -- Demand Distribution Details UUID [VDM_SPDMNDDISTRDETAILSUUID]
    SRCGPROJDMNDDISTRIBUTIONUUID,   -- Demand Distribution UUID [VDM_SRCGPROJDMNDDISTRUUID]
    FISCALYEAR,                     -- Fiscal Year [FIS_GJAHR_NO_CONV]
    REQUESTEDQUANTITY,              -- Requested Quantity [VDM_REQUESTED_QUANTITY]
    SOURCINGORIGIN,                 -- Sourcing Origin [VDM_SOURCINGORIGIN]
    SOURCINGSCENARIO,               -- Integration Scenario [VDM_SOURCINGSCENARIO]
    SOURCINGPROJECTUUID,            -- Sourcing Project UUID [VDM_SOURCINGPROJECTUUID]
    DUMMY_SRCGPROJDDD_INCL_EEW_PS,  -- Dummy [CFD_DUMMY]
    PRIMARY KEY (MANDT, SRCGPROJDMNDDISTRDETAILSUUID)
);