CMM_CMDTYCODEMAP

Transparent Table Customizing Table

Commodity Code Map

CMM_CMDTYCODEMAP is an SAP database table in S/4HANA. Commodity Code Map. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CommodityCodeMapping view from BASIC Commodity Pricing Commodity Codes Mapping Result

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY commoditycode mmpur_cmdty_code Commodity Code
commodity tba_stoeffchen Commodity

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.

-- Commodity Code Map
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CMM_CMDTYCODEMAP (
    CLIENT,         -- Client [mandt]
    COMMODITYCODE,  -- Commodity Code [mmpur_cmdty_code]
    COMMODITY,      -- Commodity [tba_stoeffchen]
    PRIMARY KEY (CLIENT, COMMODITYCODE)
);