Search Results secondary_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: MTL_MATERIAL_STATUS_HIST_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_STATUS_HIST_ERV, object_name:MTL_MATERIAL_STATUS_HIST_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MATERIAL_STATUS_HIST_ERV ,
-
View: MTL_MATERIAL_STATUS_HIST_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_STATUS_HIST_ERV, object_name:MTL_MATERIAL_STATUS_HIST_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MATERIAL_STATUS_HIST_ERV ,
-
View: MTL_ONHAND_QUANTITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_QUANTITIES, object_name:MTL_ONHAND_QUANTITIES, status:VALID, product: INV - Inventory , description: View of items owned, planned and physically belonging to the same inventory organization , implementation_dba_data: APPS.MTL_ONHAND_QUANTITIES ,
-
View: MTL_ONHAND_QUANTITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_QUANTITIES, object_name:MTL_ONHAND_QUANTITIES, status:VALID, product: INV - Inventory , description: View of items owned, planned and physically belonging to the same inventory organization , implementation_dba_data: APPS.MTL_ONHAND_QUANTITIES ,
-
View: MTL_GRADE_CHANGE_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_GRADE_CHANGE_ERV, object_name:MTL_GRADE_CHANGE_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_GRADE_CHANGE_ERV ,
-
View: MTL_GRADE_CHANGE_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_GRADE_CHANGE_ERV, object_name:MTL_GRADE_CHANGE_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_GRADE_CHANGE_ERV ,
-
View: MTL_ONHAND_LOT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LOT_V, object_name:MTL_ONHAND_LOT_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ONHAND_LOT_V ,
-
View: MTL_LOT_ONHAND_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_LOT_ONHAND_SUM_V, object_name:MTL_LOT_ONHAND_SUM_V, status:VALID, product: INV - Inventory , description: The view is used to get total onhand of a lot number. , implementation_dba_data: APPS.MTL_LOT_ONHAND_SUM_V ,
-
View: MTL_ONHAND_LOT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LOT_V, object_name:MTL_ONHAND_LOT_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ONHAND_LOT_V ,
-
View: MTL_LOT_ONHAND_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_LOT_ONHAND_SUM_V, object_name:MTL_LOT_ONHAND_SUM_V, status:VALID, product: INV - Inventory , description: Quantity view for Lot uom conversion use , implementation_dba_data: APPS.MTL_LOT_ONHAND_SUM_V ,
-
View: MTL_ONHAND_LPN_MWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LPN_MWB_V, object_name:MTL_ONHAND_LPN_MWB_V, status:VALID, product: INV - Inventory , description: LPN content view for Material Workbench , implementation_dba_data: APPS.MTL_ONHAND_LPN_MWB_V ,
-
View: MTL_RCV_MWB_NEW_OH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_MWB_NEW_OH_V, object_name:MTL_RCV_MWB_NEW_OH_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_RCV_MWB_NEW_OH_V ,
-
View: MTL_RCV_MWB_ONHAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_MWB_ONHAND_V, object_name:MTL_RCV_MWB_ONHAND_V, status:VALID, product: INV - Inventory , description: MTL_RCV_MWB_ONHAND_V is used in the material workbench to query the on-hand quantities of materials that are in receiving. , implementation_dba_data: APPS.MTL_RCV_MWB_ONHAND_V ,
-
View: MTL_ONHAND_LPN_MWB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LPN_MWB_V, object_name:MTL_ONHAND_LPN_MWB_V, status:VALID, product: INV - Inventory , description: LPN content view for Material Workbench , implementation_dba_data: APPS.MTL_ONHAND_LPN_MWB_V ,
-
View: MTL_ONHAND_DUMMY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_DUMMY_V, object_name:MTL_ONHAND_DUMMY_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_DUMMY_V ,
-
View: MTL_ONHAND_LPN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LPN_V, object_name:MTL_ONHAND_LPN_V, status:VALID, product: INV - Inventory , description: This view contains information about packed material that resides in LPNs. , implementation_dba_data: APPS.MTL_ONHAND_LPN_V ,
-
View: MTL_ONHAND_SERIAL_MWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_SERIAL_MWB_V, object_name:MTL_ONHAND_SERIAL_MWB_V, status:VALID, product: INV - Inventory , description: Onhand Serial View for the Material Work Bench , implementation_dba_data: APPS.MTL_ONHAND_SERIAL_MWB_V ,
-
View: MTL_ONHAND_DUMMY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_DUMMY_V, object_name:MTL_ONHAND_DUMMY_V, status:VALID, product: INV - Inventory , description: The view is used to show the data on material workbench form. , implementation_dba_data: APPS.MTL_ONHAND_DUMMY_V ,
-
View: MTL_MWB_GTMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MWB_GTMP_V, object_name:MTL_MWB_GTMP_V, status:VALID, product: INV - Inventory , description: Material Workbench Global Temporary Table View , implementation_dba_data: APPS.MTL_MWB_GTMP_V ,
-
View: MTL_ONHAND_LPN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LPN_V, object_name:MTL_ONHAND_LPN_V, status:VALID, product: INV - Inventory , description: This view contains information about packed material that resides in LPNs. , implementation_dba_data: APPS.MTL_ONHAND_LPN_V ,
-
View: MTL_RCV_MWB_ONHAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_MWB_ONHAND_V, object_name:MTL_RCV_MWB_ONHAND_V, status:VALID, product: INV - Inventory , description: MTL_RCV_MWB_ONHAND_V is used in the material workbench to query the on-hand quantities of materials that are in receiving. , implementation_dba_data: APPS.MTL_RCV_MWB_ONHAND_V ,
-
View: MTL_ONHAND_SERIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_SERIAL_V, object_name:MTL_ONHAND_SERIAL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_SERIAL_V ,
-
View: MTL_ONHAND_TOTAL_MWB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_TOTAL_MWB_V, object_name:MTL_ONHAND_TOTAL_MWB_V, status:VALID, product: INV - Inventory , description: Onhand Total View for the Material Work Bench , implementation_dba_data: APPS.MTL_ONHAND_TOTAL_MWB_V ,
-
View: MTL_RCV_SERIAL_MWB_OH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_SERIAL_MWB_OH_V, object_name:MTL_RCV_SERIAL_MWB_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_SERIAL_MWB_OH_V is a new view which needs to be used for querying data when the user chooses subinventory type of Receiving and user has entered serials and grade code in the Find window, or has entered grade in the Find window and , implementation_dba_data: APPS.MTL_RCV_SERIAL_MWB_OH_V ,
-
View: MTL_RCV_SERIAL_MWB_OH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_SERIAL_MWB_OH_V, object_name:MTL_RCV_SERIAL_MWB_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_SERIAL_MWB_OH_V is a new view which needs to be used for querying data when the user chooses subinventory type of Receiving and user has entered serials and grade code in the Find window, or has entered grade in the Find window and , implementation_dba_data: APPS.MTL_RCV_SERIAL_MWB_OH_V ,
-
View: MTL_ONHAND_SERIAL_MWB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_SERIAL_MWB_V, object_name:MTL_ONHAND_SERIAL_MWB_V, status:VALID, product: INV - Inventory , description: Onhand Serial View for the Material Work Bench , implementation_dba_data: APPS.MTL_ONHAND_SERIAL_MWB_V ,
-
View: MTL_MWB_GTMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MWB_GTMP_V, object_name:MTL_MWB_GTMP_V, status:VALID, product: INV - Inventory , description: Material Workbench Global Temporary Table View , implementation_dba_data: APPS.MTL_MWB_GTMP_V ,
-
View: MTL_ONHAND_TOTAL_MWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_TOTAL_MWB_V, object_name:MTL_ONHAND_TOTAL_MWB_V, status:VALID, product: INV - Inventory , description: Onhand Total View for the Material Work Bench , implementation_dba_data: APPS.MTL_ONHAND_TOTAL_MWB_V ,
-
View: MTL_RCV_MWB_NEW_OH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_MWB_NEW_OH_V, object_name:MTL_RCV_MWB_NEW_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_MWB_NEW_OH_V is used in the material workbench to query the on-hand quantities of materials that are in receiving. , implementation_dba_data: APPS.MTL_RCV_MWB_NEW_OH_V ,
-
View: MTL_ONHAND_TOTAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_TOTAL_V, object_name:MTL_ONHAND_TOTAL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_TOTAL_V ,
-
View: MTL_ONHAND_TOTAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_TOTAL_V, object_name:MTL_ONHAND_TOTAL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_TOTAL_V ,
-
View: MTL_ONHAND_SERIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_SERIAL_V, object_name:MTL_ONHAND_SERIAL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ONHAND_SERIAL_V ,
-
View: MTL_RCV_SERIAL_OH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_SERIAL_OH_V, object_name:MTL_RCV_SERIAL_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_SERIAL_OH_V is used in the material workbench to query the on-hand quantities of materials that are in receiving and are serial controlled. , implementation_dba_data: APPS.MTL_RCV_SERIAL_OH_V ,
-
View: MTL_RCV_SERIAL_OH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RCV_SERIAL_OH_V, object_name:MTL_RCV_SERIAL_OH_V, status:VALID, product: INV - Inventory , description: MTL_RCV_SERIAL_OH_V is used in the material workbench to query the on-hand quantities of materials that are in receiving and are serial controlled. , implementation_dba_data: APPS.MTL_RCV_SERIAL_OH_V ,
-
View: MTL_RESERVATIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RESERVATIONS_ALL_V, object_name:MTL_RESERVATIONS_ALL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_RESERVATIONS_ALL_V ,
-
View: MTL_RESERVATIONS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RESERVATIONS_ALL_V, object_name:MTL_RESERVATIONS_ALL_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_RESERVATIONS_ALL_V ,
-
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: 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_ORG_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ORG_ASSIGN_V, object_name:MTL_ORG_ASSIGN_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ORG_ASSIGN_V ,
-
View: MTL_ORG_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ORG_ASSIGN_V, object_name:MTL_ORG_ASSIGN_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ORG_ASSIGN_V ,
-
View: MTL_MFG_PRODUCTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_PRODUCTS_V, object_name:MTL_MFG_PRODUCTS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MFG_PRODUCTS_V ,
-
View: MTL_SYSTEM_ITEMS_B_KFV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B_KFV, object_name:MTL_SYSTEM_ITEMS_B_KFV, status:VALID, product: INV - Inventory , description: System Items Key Flexfield View , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_B_KFV ,
-
View: MTL_ITEM_FLEXFIELDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_SYSTEM_ITEMS_B_KFV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B_KFV, object_name:MTL_SYSTEM_ITEMS_B_KFV, status:VALID, product: INV - Inventory , description: System Items Key Flexfield View , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_B_KFV ,
-
View: MTL_MFG_PRODUCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_PRODUCTS_V, object_name:MTL_MFG_PRODUCTS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MFG_PRODUCTS_V ,
-
View: MTL_ITEM_FLEXFIELDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_ONHAND_NEW_LPN_MWB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_NEW_LPN_MWB_V, object_name:MTL_ONHAND_NEW_LPN_MWB_V, status:VALID, product: INV - Inventory , description: LPN content view for Material Workbench , implementation_dba_data: APPS.MTL_ONHAND_NEW_LPN_MWB_V ,
-
View: MTL_ONHAND_NEW_LPN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_NEW_LPN_V, object_name:MTL_ONHAND_NEW_LPN_V, status:VALID, product: INV - Inventory , description: LPN content view , implementation_dba_data: APPS.MTL_ONHAND_NEW_LPN_V ,