T437V

Transparent Table Customizing Table

Distribution key in MRP

T437V is an SAP database table in S/4HANA. Distribution key in MRP. It contains 5 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_DistributionKeyVH view from BASIC Distribution Key Value Help
I_MRPQuantityDistributionKey view from BASIC Quantity Distribution Key in MRP
I_ProdnVersMRPDistrKey view from BASIC MRP Distribution Key

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY werks WERKS_D Plant
KEY vertl SA_VERTL Distribution
funct SA_FUNCT Function
fnart SA_ART Distrib. Type

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.

-- Distribution key in MRP
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE T437V (
    MANDT,  -- Client [MANDT]
    WERKS,  -- Plant [WERKS_D]
    VERTL,  -- Distribution [SA_VERTL]
    FUNCT,  -- Function [SA_FUNCT]
    FNART,  -- Distrib. Type [SA_ART]
    PRIMARY KEY (MANDT, WERKS, VERTL)
);