Search Results uom_class
Overview
MTL_UOM_CONVERSIONS_VIEW is an APPS-owned database view in the Oracle E-Business Suite Inventory (INV) module. It is defined with VALID status and is available in both the 12.1.1 and 12.2.2 releases. Its documented purpose is to present unit of measure (UOM) conversion rates between an item's primary unit of measure and another unit of measure. Rather than exposing the raw conversion rows stored in the underlying conversion tables, the view resolves and computes the effective conversion factor between the primary UOM and each associated UOM based on item-specific, class-level, and standard conversion data.
Because the view operates at the intersection of items, organizations, UOM classes, and conversion definitions, it plays a central role in reporting and integration scenarios that require a normalized, query-ready representation of item UOM relationships. Report developers, interface builders, and conversion programs query it to avoid re-implementing the complex resolution logic embedded in the view text.
Underlying Base Objects
The view is defined over four documented base objects, resolved through synonyms in the APPS schema:
- MTL_SYSTEM_ITEMS_B (synonym) — supplies the item identity, owning organization, primary unit of measure, and primary UOM code.
- MTL_UNITS_OF_MEASURE_VL (view) — referenced twice to resolve the UOM code of the primary unit of measure and the UOM class of the target unit of measure.
- MTL_UOM_CONVERSIONS (synonym) — the central conversion table, joined three times to obtain item-specific conversion rates and the standard (item-independent) conversion rate.
- MTL_UOM_CLASS_CONVERSIONS (synonym) — provides class-to-class conversion rates where the primary and target UOMs belong to different UOM classes.
The joins are largely outer joins on item and UOM code, which allows the view to return conversion information even when item-specific overrides are absent, falling back to standard and class-level rates.
Key Columns
The view exposes the following significant columns:
- INVENTORY_ITEM_ID — the inventory item for which the conversion is resolved.
- ORGANIZATION_ID — the organization context of the item.
- PRIMARY_UNIT_OF_MEASURE / PRIMARY_UOM_CODE — the item's primary UOM and its internal code.
- UOM_CLASS — the class of the primary unit of measure (from MTL_UNITS_OF_MEASURE_VL).
- UNIT_OF_MEASURE / UOM_CODE — the secondary (target) unit of measure and its internal code.
- CONV2.UOM_CLASS — the UOM class of the secondary unit of measure.
The computed conversion factor is produced by the view's DECODE expression, which multiplies an intra-class factor (1 when both UOMs share a class, otherwise the class conversion rate) by the secondary conversion rate, then divides by the effective primary conversion rate after considering disable dates and item-level overrides.
Common Use Cases and Queries
Typical scenarios include reporting all UOMs available for an item with their resolved conversion factors, validating that an interface supplies conversions consistent with the item definition, and searching by UOM class to group items. A representative query is:
SELECT inventory_item_id, organization_id, primary_uom_code, uom_class, uom_code
FROM apps.mtl_uom_conversions_view
WHERE inventory_item_id = :item_id
AND organization_id = :org_id;
To filter by UOM class, as suggested by the search term "uom_class":
SELECT inventory_item_id, primary_uom_code, uom_class, unit_of_measure
FROM apps.mtl_uom_conversions_view
WHERE uom_class = :uom_class;
Because the view performs significant join and decode work, queries should always be constrained by item, organization, or UOM class to maintain acceptable performance.
-
View: MTL_UOM_CONVERSIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CONVERSIONS_VIEW, object_name:MTL_UOM_CONVERSIONS_VIEW, status:VALID, product: INV - Inventory , description: View giving unit of measure conversion rates between the primary unit of measure and another unit of measure , implementation_dba_data: APPS.MTL_UOM_CONVERSIONS_VIEW ,
-
View: MTL_UOM_CONVERSIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CONVERSIONS_VIEW, object_name:MTL_UOM_CONVERSIONS_VIEW, status:VALID, product: INV - Inventory , description: View giving unit of measure conversion rates between the primary unit of measure and another unit of measure , implementation_dba_data: APPS.MTL_UOM_CONVERSIONS_VIEW ,
-
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 ,
-
View: MTL_UNITS_OF_MEASURE_AV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_AV, object_name:MTL_UNITS_OF_MEASURE_AV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_AV ,
-
View: MTL_UOM_CLASSES_VV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CLASSES_VV, object_name:MTL_UOM_CLASSES_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UOM_CLASSES_VV ,
-
View: MTL_UOM_CLASSES_VV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CLASSES_VV, object_name:MTL_UOM_CLASSES_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UOM_CLASSES_VV ,
-
View: MTL_UOM_CLASSES_AV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CLASSES_AV, object_name:MTL_UOM_CLASSES_AV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UOM_CLASSES_AV ,
-
View: MTL_UOM_CLASSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CLASSES_VL, object_name:MTL_UOM_CLASSES_VL, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_UOM_CLASSES_VL ,
-
View: MTL_UOM_CLASSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CLASSES_VL, object_name:MTL_UOM_CLASSES_VL, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_UOM_CLASSES_VL ,
-
View: MTL_UNITS_OF_MEASURE_AV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_AV, object_name:MTL_UNITS_OF_MEASURE_AV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_AV ,
-
View: MTL_UNITS_OF_MEASURE_VV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_VV, object_name:MTL_UNITS_OF_MEASURE_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_VV ,
-
View: MTL_UNITS_OF_MEASURE_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_VL, object_name:MTL_UNITS_OF_MEASURE_VL, status:VALID, product: INV - Inventory , description: MTL_UNITS_OF_MEASURE_VL is a view of selected columns from the table MTL_UNITS_OF_MEASURE_TL. , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_VL ,
-
View: MTL_UOM_CLASSES_AV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CLASSES_AV, object_name:MTL_UOM_CLASSES_AV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UOM_CLASSES_AV ,
-
View: MTL_UNITS_OF_MEASURE_VV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_VV, object_name:MTL_UNITS_OF_MEASURE_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_VV ,
-
View: MTL_UNITS_OF_MEASURE_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_VL, object_name:MTL_UNITS_OF_MEASURE_VL, status:VALID, product: INV - Inventory , description: MTL_UNITS_OF_MEASURE_VL is a view of selected columns from the table MTL_UNITS_OF_MEASURE_TL. , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_VL ,
-
Table: MTL_UOM_CLASSES_TL
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_UOM_CLASSES_TL, object_name:MTL_UOM_CLASSES_TL, status:VALID, product: INV - Inventory , description: Unit of measure classes , implementation_dba_data: INV.MTL_UOM_CLASSES_TL ,
-
Table: MTL_UOM_CLASSES_TL
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_UOM_CLASSES_TL, object_name:MTL_UOM_CLASSES_TL, status:VALID, product: INV - Inventory , description: Unit of measure classes , implementation_dba_data: INV.MTL_UOM_CLASSES_TL ,
-
View: INVBV_UNITS_OF_MEASURE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UNITS_OF_MEASURE, object_name:INVBV_UNITS_OF_MEASURE, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_UNITS_OF_MEASURE ,
-
View: INVBV_UNITS_OF_MEASURE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UNITS_OF_MEASURE, object_name:INVBV_UNITS_OF_MEASURE, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_UNITS_OF_MEASURE ,
-
View: MTL_UOM_CONVERSIONS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CONVERSIONS_VAL_V, object_name:MTL_UOM_CONVERSIONS_VAL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UOM_CONVERSIONS_VAL_V ,
-
View: INVFV_UNITS_OF_MEASURE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_UNITS_OF_MEASURE, object_name:INVFV_UNITS_OF_MEASURE, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_UNITS_OF_MEASURE ,
-
View: MTL_PRIMARY_UOMS_VV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PRIMARY_UOMS_VV, object_name:MTL_PRIMARY_UOMS_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_PRIMARY_UOMS_VV ,
-
View: MTL_ALL_PRIMARY_UOMS_VV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ALL_PRIMARY_UOMS_VV, object_name:MTL_ALL_PRIMARY_UOMS_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ALL_PRIMARY_UOMS_VV ,
-
View: INVFV_UOM_CONVERSIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_UOM_CONVERSIONS, object_name:INVFV_UOM_CONVERSIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_UOM_CONVERSIONS ,
-
View: INVBV_UOM_CONVERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UOM_CONVERSIONS, object_name:INVBV_UOM_CONVERSIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_UOM_CONVERSIONS ,
-
View: INVFV_UOM_CONVERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_UOM_CONVERSIONS, object_name:INVFV_UOM_CONVERSIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_UOM_CONVERSIONS ,
-
View: INVBV_UOM_CONVERSIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UOM_CONVERSIONS, object_name:INVBV_UOM_CONVERSIONS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_UOM_CONVERSIONS ,
-
View: INVFV_UNITS_OF_MEASURE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_UNITS_OF_MEASURE, object_name:INVFV_UNITS_OF_MEASURE, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_UNITS_OF_MEASURE ,
-
View: MTL_UOM_CONVERSIONS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CONVERSIONS_VAL_V, object_name:MTL_UOM_CONVERSIONS_VAL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UOM_CONVERSIONS_VAL_V ,
-
View: MTL_ALL_PRIMARY_UOMS_VV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ALL_PRIMARY_UOMS_VV, object_name:MTL_ALL_PRIMARY_UOMS_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ALL_PRIMARY_UOMS_VV ,
-
View: MTL_PRIMARY_UOMS_VV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PRIMARY_UOMS_VV, object_name:MTL_PRIMARY_UOMS_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_PRIMARY_UOMS_VV ,