JDE Reference
F41002
controlAlso in JDE WorldItem-level unit of measure conversions: the factor that translates one UOM into another for a given item and branch, used everywhere quantities change units.
Module: 41 · Inventory ManagementColumn prefix: UM
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).
No lifecycle badge means the table is current and not documented in JDE World. In field listings, K marks a primary-key field.
Fields
11 fields · 4 key
11 fields.
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | UMMCU | MCU | Branch/plant (business unit); stored right-justified with leading blanks. | String | 12 | |
| Primary key | UMITM | ITM | Short internal item number (8-digit numeric key). | Numeric | 8 | |
| Primary key | UMUM | UM | From unit of measure of the conversion. | String | 2 | |
| Primary key | UMRUM | RUM | To (related) unit of measure of the conversion. | String | 2 | |
| UMUSTR | USTR | Position of this UOM within the item's unit of measure structure. | Character | 1 | ||
| UMCONV | CONV | Multiplier converting one from-UOM into the to-UOM. | Numeric | 15 | ||
| UMCNV1 | CNV1 | Derived factor converting this UOM to the item's primary UOM. | Numeric | 15 | ||
| UMEXPO | EXPO | Flag: exclude this UOM from purchase order entry. | Character | 1 | ||
| UMEXSO | EXSO | Flag: exclude this UOM from sales order entry. | Character | 1 | ||
| UMPUPC | PUPC | Internal id linking to a purchase price rule for this UOM. | Integer | 11 | ||
| UMSEPC | SEPC | Internal id linking to a sales price rule for this UOM. | Integer | 11 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F41002 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.
Query parameters
4 parameters not filled: <catalog>, <schema_data>, <MCU>, <ITM>
-- ============================================================
-- Table : F41002 Item-level unit of measure conversions: the factor that translates one UOM into another for a given item and branch, used everywhere quantities change units.
-- Purpose: Column-selected read of F41002 — auto-generated from field metadata
-- Grain : One row per UMMCU + UMITM + UMUM + UMRUM
-- 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.UMMCU) AS "Branch/plant (business unit); stored right-justified with leading blanks.",
f.UMITM AS "Short internal item number (8-digit numeric key).",
f.UMUM AS "From unit of measure of the conversion.",
f.UMRUM AS "To (related) unit of measure of the conversion.",
f.UMUSTR AS "Position of this UOM within the item's unit of measure structure.",
f.UMCONV / POWER(10, 7) AS "Multiplier converting one from-UOM into the to-UOM.", -- implied decimals: 7 (verify in F9210)
f.UMCNV1 / POWER(10, 7) AS "Derived factor converting this UOM to the item's primary UOM.", -- implied decimals: 7 (verify in F9210)
f.UMEXPO AS "Flag: exclude this UOM from purchase order entry.",
f.UMEXSO AS "Flag: exclude this UOM from sales order entry.",
f.UMPUPC AS "Internal id linking to a purchase price rule for this UOM.",
f.UMSEPC AS "Internal id linking to a sales price rule for this UOM."
FROM <catalog>.<schema_data>.f41002 f
WHERE
f.UMMCU = '<MCU>'
-- AND f.UMITM = <ITM>
ORDER BY f.UMMCU;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 f41002.UMITM = f4101.IMITM
Programs That Use This Table
More Inventory Management tables
- F4101Item master — one row per item with descriptions, units of measure, and category codes shared across branches
- F4102Item branch — branch/plant-level item attributes, planning parameters, and sourcing responsibility
- F41021Item location — on-hand, committed, and inbound quantities by item, branch, location, and lot
- F4104Item cross-reference: links internal item numbers to external identifiers such as customer or supplier part numbers, substitutes, and replacements, keyed by cross-reference type.
- F4105Item cost table: one row per item, branch, location, lot, and cost method carrying the unit cost used to value inventory and purchasing transactions.
- F4108Lot master: one row per lot or serial number by item and branch, holding lot status, grade, potency, supplier lot linkage, and the full set of lot control dates.