CMM_STRUC_QTY

Transparent Table Application Table

Commodity Structural Weights

CMM_STRUC_QTY is an SAP database table in S/4HANA. Commodity Structural Weights. It contains 4 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
E_CommodityStructuralQuantity view from EXTENSION Commodity Structural Quantity - Extension
I_CommodityStructuralQuantity view_entity from BASIC Commodity Quantity Structural Info

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY product matnr Material
KEY plant werks_d Plant
KEY 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 Structural Weights
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CMM_STRUC_QTY (
    CLIENT,     -- Client [mandt]
    PRODUCT,    -- Material [matnr]
    PLANT,      -- Plant [werks_d]
    COMMODITY,  -- Commodity [tba_stoeffchen]
    PRIMARY KEY (CLIENT, PRODUCT, PLANT, COMMODITY)
);