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.

Fields

11 fields · 4 key

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 F41002on 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
-- ============================================================
-- 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;

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

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

Programs That Use This Table

No program mappings populated for this table yet.