Skip to content
M3 Reference

MWOMAT

Prefix: VMtransaction

Manufacturing order materials — one row per component line on an order, with required and reported quantities; copied from the product structure at order creation and then consumed against, joined to its header by MFNO

Module: ManufacturingCompany-partitioned (CONO)Header: MWOHED

Header & line

MWOMAT lines join back to their header MWOHED — and the CONO — so a line never fans out across companies.

Fields

8 fields · 4 key

KeyFieldAliasDescriptionTypeLengthFlags
KeyVMCONOCONOCompanynumeric
KeyVMFACIFACIFacilityalphanumeric
KeyVMMFNOMFNOManufacturing order numberalphanumeric
KeyVMMSEQMSEQMaterial sequence number within the ordernumeric
VMMTNOMTNOComponent item consumed — joins to the item master on ITNOalphanumeric
VMREQTREQTRequired quantity of the component for the ordernumeric
VMRPQTRPQTReported (issued) quantity of the component so farnumeric
VMWHLOWHLOWarehouse the component is issued fromalphanumeric

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading MWOMATon Databricks — numeric YYYYMMDD dates are wrapped to NULL, verified status ladders are decoded, and the CONO anchor is in place. Set your Unity Catalog location, company, and filter values below; they’re substituted into the SQL and the copy button.

Query parameters
-- ============================================================
-- Table  : MWOMAT — Manufacturing order materials — one row per component line on an order, with required and reported quantities; copied from the product structure at order creation and then consumed against, joined to its header by MFNO
-- Purpose: Column-selected read of MWOMAT — auto-generated from field metadata
-- Grain  : One row per company (CONO) + VMFACI + VMMFNO + VMMSEQ
-- Notes  : Auto-generated skeleton for Infor Data Lake-landed M3 data. Dates are numeric YYYYMMDD (0 = none, mapped to NULL); status ladders decoded inline where verified. Audit columns (RGDT/RGTM/LMDT/CHNO/CHID) omitted — see the quirks guide.
-- ============================================================
SELECT
  m.VMCONO AS "Company",
  m.VMFACI AS "Facility",
  m.VMMFNO AS "Manufacturing order number",
  m.VMMSEQ AS "Material sequence number within the order",
  m.VMMTNO AS "Component item consumed — joins to the item master on ITNO",
  m.VMREQT AS "Required quantity of the component for the order",
  m.VMRPQT AS "Reported (issued) quantity of the component so far",
  m.VMWHLO AS "Warehouse the component is issued from"
FROM <catalog>.<schema>.MWOMAT m
WHERE
  m.VMCONO = <company>
  -- AND m.VMFACI = '<FACI>'
  -- AND m.VMMFNO = '<MFNO>'
ORDER BY m.VMFACI;

5 parameters not filled: <catalog>, <schema>, <company>, <FACI>, <MFNO>

Relationships

1-hop neighbors — click a table to navigate there. CSYTAB decode edges are highlighted; they’re the joins newcomers most often get wrong.

Join details

  • MWOHEDMWOMATheader line · 1:N
    ON MWOHED.VHMFNO = MWOMAT.VMMFNO AND MWOHED.VHFACI = MWOMAT.VMFACI AND MWOHED.VHCONO = MWOMAT.VMCONO

Programs That Use This Table

Maintained by Summit Analytics, a supply chain analytics practice. The tools and references are free — the consulting is selective.

Work with the practice →

Not affiliated with or endorsed by Infor. Infor, Infor M3, and Infor CloudSuite are trademarks of Infor and/or its affiliates.