Skip to content
JDE Reference

F41002

controlAlso in JDE World

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.

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.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 11 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyUMMCUMCUBranch/plant (business unit); stored right-justified with leading blanks.String12
Primary keyUMITMITMShort internal item number (8-digit numeric key).Numeric8
Primary keyUMUMUMFrom unit of measure of the conversion.String2
Primary keyUMRUMRUMTo (related) unit of measure of the conversion.String2
UMUSTRUSTRPosition of this UOM within the item's unit of measure structure.Character1
UMCONVCONVMultiplier converting one from-UOM into the to-UOM.Numeric15
UMCNV1CNV1Derived factor converting this UOM to the item's primary UOM.Numeric15
UMEXPOEXPOFlag: exclude this UOM from purchase order entry.Character1
UMEXSOEXSOFlag: exclude this UOM from sales order entry.Character1
UMPUPCPUPCInternal id linking to a purchase price rule for this UOM.Integer11
UMSEPCSEPCInternal id linking to a sales price rule for this UOM.Integer11

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

  • F41002F4101foreign key · N:1
    ON f41002.UMITM = f4101.IMITM

Programs That Use This Table

More Inventory Management tables

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

Part of the Summit Analytics reference library.

Work with the practice

Not affiliated with or endorsed by Oracle. Oracle, JD Edwards, and EnterpriseOne are registered trademarks of Oracle and/or its affiliates.