Search Results to_uom_code
Overview
MTL_ITEM_LOT_UOM_CONV_ERV is an APPS-owned reporting view in the Oracle E-Business Suite Inventory (INV) module that consolidates unit-of-measure conversion information for lot-controlled items. The view serves as a unified audit and reference source that combines two distinct conversion contexts: lot-specific UOM class conversions and item-level intra-class conversions. Its name reflects this dual purpose, as the "ERV" suffix and UNION-based construction indicate an event or enterprise reporting view designed to flatten conversion data from multiple transactional and master-level tables into a single consistent result set.
The view is particularly relevant to implementations that use Oracle Process Manufacturing (OPM) lot conversion functionality alongside standard discrete inventory lot control. It exposes conversion rates, audit trails, reason codes, and batch associations, making it suitable for compliance reporting, conversion audit reviews, and integration with external quality or manufacturing systems. A notable column exposed by this view is SECONDARY_UOM_CODE, which appears alongside PRIMARY_UOM_CODE from the item master, supporting dual-unit-of-measure inventory environments.
Underlying Base Objects
The view is defined over a UNION of two queries. The first query joins MTL_LOT_UOM_CLASS_CONVERSIONS, MTL_LOT_CONV_AUDIT, MTL_SYSTEM_ITEMS_KFV, MTL_PARAMETERS, HR_ALL_ORGANIZATION_UNITS, MFG_LOOKUPS, MTL_TRANSACTION_REASONS, and GME_BATCH_HEADER. This branch returns lot-level conversion records with their full audit history, producing a CONVERSION_TYPE of 'LOT'.
The second query draws from MTL_UOM_CLASS_CONVERSIONS and MTL_UOM_CONVERSIONS together with MTL_SYSTEM_ITEMS_KFV and MTL_PARAMETERS, returning item-level intra-class conversions with a CONVERSION_TYPE of 'ITEM-INTRA'. Documented base objects include GME_BATCH_HEADER, HR_ALL_ORGANIZATION_UNITS, MFG_LOOKUPS, MTL_LOT_CONV_AUDIT, MTL_LOT_UOM_CLASS_CONVERSIONS, MTL_PARAMETERS, MTL_SYSTEM_ITEMS_KFV, MTL_TRANSACTION_REASONS, MTL_UNITS_OF_MEASURE, MTL_UOM_CLASS_CONVERSIONS, and MTL_UOM_CONVERSIONS.
Key Columns
- EVENT_ID — Composite identifier derived from CONVERSION_ID, CONV_AUDIT_ID, item, and UOM codes, uniquely identifying each conversion event.
- CONVERSION_TYPE — Distinguishes 'LOT' records from 'ITEM-INTRA' records.
- ITEM_NUMBER / ITEM_DESCRIPTION — Concatenated segments and description from MTL_SYSTEM_ITEMS_KFV.
- LOT_NUMBER — The lot affected by the conversion (LOT branch only).
- PRIMARY_UOM_CODE / SECONDARY_UOM_CODE — The item's primary and secondary units of measure.
- FROM_UOM_CODE / TO_UOM_CODE / CONVERSION_RATE — The conversion direction and rate.
- UPDATE_TYPE — Meaning decoded from MFG_LOOKUPS for INV_UPDATE_TYPE.
- BATCH_NO / REASON_NAME — Batch and audit reason context.
Common Use Cases and Queries
Typical uses include auditing lot conversion changes, reconciling secondary UOM data, and feeding quality or MES integrations. The following query lists lot-level conversions for a secondary-UOM item:
SELECT event_id, conversion_type, item_number, lot_number, from_uom_code, to_uom_code, conversion_rate, primary_uom_code, secondary_uom_code FROM apps.mtl_item_lot_uom_conv_erv WHERE conversion_type = 'LOT' AND secondary_uom_code IS NOT NULL AND inventory_item_id = :item_id;
A second scenario retrieves the audit trail with reason and batch context:
SELECT event_id, update_type, reason_name, batch_no, creation_date, last_update_date FROM apps.mtl_item_lot_uom_conv_erv WHERE organization_id = :org_id AND creation_date >= :from_date ORDER BY creation_date DESC;
-
View: MTL_ITEM_LOT_UOM_CONV_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_LOT_UOM_CONV_ERV, object_name:MTL_ITEM_LOT_UOM_CONV_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ITEM_LOT_UOM_CONV_ERV ,
-
View: MTL_ITEM_LOT_UOM_CONV_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_LOT_UOM_CONV_ERV, object_name:MTL_ITEM_LOT_UOM_CONV_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ITEM_LOT_UOM_CONV_ERV ,
-
View: INVFV_UOM_CLASS_CONVERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_UOM_CLASS_CONVERSIONS, object_name:INVFV_UOM_CLASS_CONVERSIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_UOM_CLASS_CONVERSIONS ,
-
View: INVBV_UOM_CLASS_CONVERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UOM_CLASS_CONVERSIONS, object_name:INVBV_UOM_CLASS_CONVERSIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_UOM_CLASS_CONVERSIONS ,
-
View: INVBV_UOM_CLASS_CONVERSIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UOM_CLASS_CONVERSIONS, object_name:INVBV_UOM_CLASS_CONVERSIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_UOM_CLASS_CONVERSIONS ,
-
View: MTL_LOT_UOM_CLASS_CONV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_LOT_UOM_CLASS_CONV_V, object_name:MTL_LOT_UOM_CLASS_CONV_V, status:VALID, product: INV - Inventory , description: Lot Specific UOM Conversions , implementation_dba_data: APPS.MTL_LOT_UOM_CLASS_CONV_V ,
-
View: INVFV_UOM_CLASS_CONVERSIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_UOM_CLASS_CONVERSIONS, object_name:INVFV_UOM_CLASS_CONVERSIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_UOM_CLASS_CONVERSIONS ,
-
View: MTL_LOT_UOM_CLASS_CONV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_LOT_UOM_CLASS_CONV_V, object_name:MTL_LOT_UOM_CLASS_CONV_V, status:VALID, product: INV - Inventory , description: Lot Specific UOM Conversions , implementation_dba_data: APPS.MTL_LOT_UOM_CLASS_CONV_V ,
-
View: MTL_ITEM_UOMS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_UOMS_VIEW, object_name:MTL_ITEM_UOMS_VIEW, status:VALID, product: INV - Inventory , description: Holds valid UOMs for items, considering the conversions that are defined , implementation_dba_data: APPS.MTL_ITEM_UOMS_VIEW ,
-
View: MTL_ITEM_UOMS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_UOMS_VIEW, object_name:MTL_ITEM_UOMS_VIEW, status:VALID, product: INV - Inventory , description: Holds valid UOMs for items, considering the conversions that are defined , implementation_dba_data: APPS.MTL_ITEM_UOMS_VIEW ,