MMSPALWSUPCONT

Transparent Table Application Table

Allowed supplier contacts in the Sourcing Project

MMSPALWSUPCONT is an SAP database table in S/4HANA. Allowed supplier contacts in the Sourcing Project. It contains 7 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
E_SrcgProjAllwdSuplrContact view_entity from EXTENSION Allwd Suplr Contact in Srcg Proj - Extn
R_SrcgProjAllwdSuplrContact view from BASIC Allowed Supplier Contact in Srcg Project

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY srcgprojallwdsuplrcontactuuid VDM_SRCGPROJALLOWEDCONTACTUUID Contact UUID
sourcingprojectuuid VDM_SOURCINGPROJECTUUID Sourcing Project UUID
srcgprojallwdsuplrcontacttype MM_PUR_SPQ_CONTACT_TYPE Contact Category
sourcingorigin VDM_SOURCINGORIGIN Sourcing Origin
sourcingscenario VDM_SOURCINGSCENARIO Integration Scenario
dummy_srcgprojasc_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.

-- Allowed supplier contacts in the Sourcing Project
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MMSPALWSUPCONT (
    CLIENT,                         -- Client [MANDT]
    SRCGPROJALLWDSUPLRCONTACTUUID,  -- Contact UUID [VDM_SRCGPROJALLOWEDCONTACTUUID]
    SOURCINGPROJECTUUID,            -- Sourcing Project UUID [VDM_SOURCINGPROJECTUUID]
    SRCGPROJALLWDSUPLRCONTACTTYPE,  -- Contact Category [MM_PUR_SPQ_CONTACT_TYPE]
    SOURCINGORIGIN,                 -- Sourcing Origin [VDM_SOURCINGORIGIN]
    SOURCINGSCENARIO,               -- Integration Scenario [VDM_SOURCINGSCENARIO]
    DUMMY_SRCGPROJASC_INCL_EEW_PS,  -- Dummy [CFD_DUMMY]
    PRIMARY KEY (CLIENT, SRCGPROJALLWDSUPLRCONTACTUUID)
);