/SCMB/D_BPTMSLC

Transparent Table Application Table

Business Partner: Service Level Codes

/SCMB/D_BPTMSLC is an SAP database table in S/4HANA. Business Partner: Service Level Codes. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BusinessPartnerTranspSrvcLvl view from BASIC Core View for BP Transp Service Level

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY partner BU_PARTNER Busn. Partner
KEY slc /SCMB/TRANSP_SLC_CARRIER Service Level
slc_edi /SCMB/TRANSP_SLC_CARRIER_EDI EDI Service Level

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.

-- Business Partner: Service Level Codes
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /SCMB/D_BPTMSLC (
    MANDT,    -- Client [MANDT]
    PARTNER,  -- Busn. Partner [BU_PARTNER]
    SLC,      -- Service Level [/SCMB/TRANSP_SLC_CARRIER]
    SLC_EDI,  -- EDI Service Level [/SCMB/TRANSP_SLC_CARRIER_EDI]
    PRIMARY KEY (MANDT, PARTNER, SLC)
);