MCHBO1

Transparent Table Application Table

Appendix for Additional Quantities at Batch Level

MCHBO1 is an SAP database table in S/4HANA. Appendix for Additional Quantities at Batch Level. It contains 18 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
oib_e_mchbo1 view from MCHBO1 Compatibility View

Fields (18)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY matnr MATNR Material
KEY werks WERKS_D Plant
KEY lgort LGORT_D Location
KEY charg CHARG_D Batch
KEY msehi MSEHI Internal UoM
clabs LABST Unrestricted
cumlm UMLMD Stock in tfr
cinsm INSME Quality Insp.
ceinm EINME Restricted-Use
cspem SPEME Blocked Stock
cretm RETME Returns
cvmla VMLAB Unrestr.-use
cvmum VMUML In transfer
cvmin VMINS In qual. insp.
cvmei VMEIN Restr.-use PP
cvmsp VMSPE Blocked
cvmre VMRET Returns

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.

-- Appendix for Additional Quantities at Batch Level
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MCHBO1 (
    MANDT,  -- Client [MANDT]
    MATNR,  -- Material [MATNR]
    WERKS,  -- Plant [WERKS_D]
    LGORT,  -- Location [LGORT_D]
    CHARG,  -- Batch [CHARG_D]
    MSEHI,  -- Internal UoM [MSEHI]
    CLABS,  -- Unrestricted [LABST]
    CUMLM,  -- Stock in tfr [UMLMD]
    CINSM,  -- Quality Insp. [INSME]
    CEINM,  -- Restricted-Use [EINME]
    CSPEM,  -- Blocked Stock [SPEME]
    CRETM,  -- Returns [RETME]
    CVMLA,  -- Unrestr.-use [VMLAB]
    CVMUM,  -- In transfer [VMUML]
    CVMIN,  -- In qual. insp. [VMINS]
    CVMEI,  -- Restr.-use PP [VMEIN]
    CVMSP,  -- Blocked [VMSPE]
    CVMRE,  -- Returns [VMRET]
    PRIMARY KEY (MANDT, MATNR, WERKS, LGORT, CHARG, MSEHI)
);