F46011
masterAlso in JDE WorldItem unit-of-measure definition for WMS: one row per branch, item or dimension group, and UOM carrying physical dimensions, weight, cube, container, and stacking rules the capacity engine uses.
Rows are defined either for an item dimension group (PRP6) or a specific item (ITM); the primary key includes both.
What the badges mean
- Superseded
- Superseded — a newer table has replaced it, but older scripts still read this one.
- Also in JDE World
- Also present in JDE World A9.x on the same table name.
- master
- Data class: what the table holds — master data, transaction documents, control/setup values, history, or a workfile.
- Read/write access
- Access mode: how the paired program reads or writes this table — R (read), W (write), or R/W (both).
Fields
30 fields · 4 key
30 fields.
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | IQMCU | MCU | Branch/plant the definition applies to. | String | 12 | |
| Primary key | IQPRP6 | PRP6 | Item dimension group the row defines; blank when the row is for a specific item instead. | String | 6 | |
| Primary key | IQITM | ITM | Short item number the row defines; zero when the row is for a dimension group. | Numeric | 8 | |
| Primary key | IQUOM | UOM | Unit of measure this definition row describes (e.g., EA, CA, PL). | String | 2 | |
| IQGWID | GWID | Gross width of one unit in this UOM. | Numeric | 15 | ||
| IQGDEP | GDEP | Gross depth of one unit in this UOM. | Numeric | 15 | ||
| IQGHET | GHET | Gross height of one unit in this UOM. | Numeric | 15 | ||
| IQWIUM | WIUM | UOM the width/depth/height are expressed in. | String | 2 | ||
| IQGCUB | GCUB | Gross cube of one unit; what capacity checking charges against a location. | Numeric | 15 | ||
| IQVUMD | VUMD | UOM used to display volume. | String | 2 | ||
| IQGWEI | GWEI | Gross weight of one unit. | Numeric | 15 | ||
| IQUWUM | UWUM | UOM used for weight. | String | 2 | ||
| IQDMTH | DMTH | Capacity method for this UOM: check by volume, by dimensions, or by quantity. | Character | 1 | ||
| IQCRMT | CRMT | Carton recommendation method. | Character | 1 | ||
| IQEQUS | EQUS | How this UOM uses containers (in a container, on a container, none). | Character | 1 | ||
| IQAROT | AROT | Allow rotating the unit to fit a location. | Character | 1 | ||
| IQABKD | ABKD | Allow breaking this UOM down into smaller units. | Character | 1 | ||
| IQAROL | AROL | Allow rolling smaller units up into this UOM. | Character | 1 | ||
| IQSLIM | SLIM | How many of this unit can stack on each other. | Numeric | 3 | ||
| IQEQTY | EQTY | Default container code for this UOM. | String | 5 | ||
| IQRPCK | RPCK | Repack allowed for this UOM. | Character | 1 | ||
| IQPACK | PACK | Packing code. | String | 4 | ||
| IQLIPL | LIPL | Track this UOM with license plates. | Character | 1 | ||
| IQPPTG | PPTG | Tag print method for putaway. | Character | 1 | ||
| IQPKTG | PKTG | Tag print method for picking. | Character | 1 | ||
| IQPRTG | PRTG | Tag print method for replenishment. | Character | 1 | ||
| IQPTRA | PTRA | Trip assignment method for putaway. | String | 3 | ||
| IQKTRA | KTRA | Trip assignment method for picking. | String | 3 | ||
| IQRTRA | RTRA | Trip assignment method for replenishment. | String | 3 | ||
| IQUCCU | UCCU | Flag to update UCC-128 shipment information. | Character | 1 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F46011 on Databricks — Julian dates, implied decimals, and padded strings are already converted. Set your Unity Catalog location and filter values below; they’re substituted into the SQL and the copy button.
4 parameters not filled: <catalog>, <schema_data>, <MCU>, <ITM>
-- ============================================================
-- Table : F46011 Item unit-of-measure definition for WMS: one row per branch, item or dimension group, and UOM carrying physical dimensions, weight, cube, container, and stacking rules the capacity engine uses.
-- Purpose: Column-selected read of F46011 — auto-generated from field metadata
-- Grain : One row per IQMCU + IQPRP6 + IQITM + IQUOM
-- Notes : Auto-generated skeleton. Julian dates (CYYDDD) are converted to DATE and implied-decimal amounts are scaled (verify decimals in F9210); padded business-unit/UDC keys are TRIMmed. Audit columns (…USER/…PID/…UPMJ) are omitted — see the quirks guide. Set catalog/schema to your Unity Catalog location; fill remaining placeholders (<...>) for your tenant.
-- ============================================================
SELECT
TRIM(f.IQMCU) AS "Branch/plant the definition applies to.",
f.IQPRP6 AS "Item dimension group the row defines; blank when the row is for a specific item instead.",
f.IQITM AS "Short item number the row defines; zero when the row is for a dimension group.",
f.IQUOM AS "Unit of measure this definition row describes (e.g., EA, CA, PL).",
f.IQGWID / POWER(10, 2) AS "Gross width of one unit in this UOM.", -- implied decimals: 2 (verify in F9210)
f.IQGDEP / POWER(10, 2) AS "Gross depth of one unit in this UOM.", -- implied decimals: 2 (verify in F9210)
f.IQGHET / POWER(10, 2) AS "Gross height of one unit in this UOM.", -- implied decimals: 2 (verify in F9210)
f.IQWIUM AS "UOM the width/depth/height are expressed in.",
f.IQGCUB / POWER(10, 2) AS "Gross cube of one unit; what capacity checking charges against a location.", -- implied decimals: 2 (verify in F9210)
f.IQVUMD AS "UOM used to display volume.",
f.IQGWEI / POWER(10, 2) AS "Gross weight of one unit.", -- implied decimals: 2 (verify in F9210)
f.IQUWUM AS "UOM used for weight.",
f.IQDMTH AS "Capacity method for this UOM: check by volume, by dimensions, or by quantity.",
f.IQCRMT AS "Carton recommendation method.",
f.IQEQUS AS "How this UOM uses containers (in a container, on a container, none).",
f.IQAROT AS "Allow rotating the unit to fit a location.",
f.IQABKD AS "Allow breaking this UOM down into smaller units.",
f.IQAROL AS "Allow rolling smaller units up into this UOM.",
f.IQSLIM AS "How many of this unit can stack on each other.",
f.IQEQTY AS "Default container code for this UOM.",
f.IQRPCK AS "Repack allowed for this UOM.",
f.IQPACK AS "Packing code.",
f.IQLIPL AS "Track this UOM with license plates.",
f.IQPPTG AS "Tag print method for putaway.",
f.IQPKTG AS "Tag print method for picking.",
f.IQPRTG AS "Tag print method for replenishment.",
f.IQPTRA AS "Trip assignment method for putaway.",
f.IQKTRA AS "Trip assignment method for picking.",
f.IQRTRA AS "Trip assignment method for replenishment.",
f.IQUCCU AS "Flag to update UCC-128 shipment information."
FROM <catalog>.<schema_data>.f46011 f
WHERE
f.IQMCU = '<MCU>'
-- AND f.IQITM = <ITM>
ORDER BY f.IQMCU;Verified September 2026
Relationships
Diagram of 1-hop neighbors — join details below. UDC decode edges point coded fields at their F0005 lookup.
Join details
ON f46011.IQITM = f4101.IMITM
Programs That Use This Table
R read · W write · R/W read + write
More Warehouse Management tables
- F4602Warehouse-managed contents of each location: one row per item/lot/UOM-structure detail with on-hand, committed, inbound/outbound quantities, and the cube and weight consumed.
- F46022Location dimension definitions: gross and usable width, depth, height, and cube per branch and location dimension group — the location side of putaway capacity math.
- F46024Location capacity by quantity: the maximum count of an item or item dimension group, per UOM and container, that a location dimension group can hold — used when capacity is checked by quantity instead of volume.
- F4611One row per system-generated movement suggestion answering an F4600 request: the proposed from/to location, quantity, cube and weight charged, and wave/task assignment.
- F4600One row per requested warehouse movement — the demand side of WMS: a putaway, pick, or replenishment waiting for the system to decide where stock should move.
- F46010Item warehouse profile: one row per branch/item holding WMS handling rules — mixing, one- vs two-phase movement, and the item's fixed special-purpose locations.