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.
Fields
30 fields · 4 key
| 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 F46011on 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.
-- ============================================================
-- 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;4 parameters not filled: <catalog>, <schema_data>, <MCU>, <ITM>
Relationships
1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.
Join details
ON f46011.IQITM = f4101.IMITM