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
Fields
11 fields · 4 key
| 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 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
ON f41002.UMITM = f4101.IMITM
Programs That Use This Table
No program mappings populated for this table yet.