Search Results uom_class
Overview
APPS.MSC_UOM_CONVERSIONS_VIEW is a reporting view in the Oracle E-Business Suite Advanced Supply Chain Planning (ASCP) schema, owned by the APPS account. It exposes unit-of-measure (UOM) conversion relationships for planning items, resolving each inventory item's source UOM against target UOMs and cross-class conversions into a single, query-ready result set. Its principal purpose is to present a computed conversion rate between a base unit of measure and an alternate unit of measure for a given item and organization, calculated dynamically from the underlying conversion definitions rather than being stored as a static value.
Because the view joins item definitions, UOM definitions, item-level conversions, and class-level conversions, it abstracts the considerable complexity of UOM resolution logic. This makes it suitable for planning reports, integration extracts, and diagnostic queries where the effective conversion factor between two UOMs must be determined for a specific item. The presence of the UOM_CODE column — the term the user searched for — places this view squarely in the category of objects used to translate quantities between planning and inventory units.
Underlying Base Objects
The ETRM metadata documents the following base objects, all referenced through synonyms in the APPS schema:
- MSC_SYSTEM_ITEMS — The driving table, supplying INVENTORY_ITEM_ID, ORGANIZATION_ID and the item's source UOM_CODE. The view text restricts this to records where PLAN_ID = -1, which corresponds to the master (non-plan-specific) item data.
- MSC_UNITS_OF_MEASURE — Joined twice (aliased UOM and UOM2) to retrieve the UOM class of the item's base unit and the target unit of measure respectively.
- MSC_UOM_CONVERSIONS — Joined three times (CONV1, CONV2, CONV1_2) to obtain item-specific conversion rates, including the handling of disabled conversions through DISABLE_DATE logic.
- MSC_UOM_CLASS_CONVERSIONS — Supplies conversion rates between different UOM classes, using FROM_UOM_CLASS and TO_UOM_CLASS.
The view therefore sits one layer above the core planning conversion tables, combining item-scoped and class-scoped conversion data. The multiple outer joins and inline subqueries reflect the fallback hierarchy: item-level conversion first, then intra-class and inter-class conversion definitions.
Key Columns
- INVENTORY_ITEM_ID — Identifier of the planning item for which the conversion applies.
- ORGANIZATION_ID — The organization context of the item.
- UOM_CODE — The item's source (base) unit of measure code, taken from MSC_SYSTEM_ITEMS.
- SR_INSTANCE_ID — Source instance identifier from the system items record, used to distinguish data originating from different source systems.
- UOM_CLASS — The UOM class associated with the source unit of measure.
- UNIT_OF_MEASURE — The target unit of measure description/name from the second UOM join.
- UOM_CODE (UOM2) — The target unit of measure code.
- UOM_CLASS (CONV2) — The conversion class associated with the target conversion record.
- Computed conversion rate — A derived expression combining class conversion rate, item conversion rate, and the effective (non-disabled) conversion rate, yielding the factor to convert between the source UOM and target UOM.
Common Use Cases and Queries
Typical uses include validating the effective conversion factor for an item, auditing which target UOMs are available for planning calculations, and joining to planning demand or supply tables to normalize quantities. Because UOM_CODE was the searched term, queries frequently filter or join on it.
A representative query to list conversions for a given item and UOM:
SELECT inventory_item_id, organization_id, uom_code,
unit_of_measure, uom_class
FROM apps.msc_uom_conversions_view
WHERE inventory_item_id = :item_id
AND uom_code = :uom_code;
A second pattern retrieves all target units available for an item, useful for populating conversion lookups in a planning extract:
SELECT DISTINCT uom_code, unit_of_measure FROM apps.msc_uom_conversions_view WHERE inventory_item_id = :item_id AND organization_id = :org_id;
Because the view applies DISABLE_DATE logic and nested fallback subqueries, results reflect only currently effective conversions. Queries should therefore avoid reimplementing conversion logic and instead rely on the view for consistent, planning-standard conversion rates.
-
VIEW: APPS.MSC_UOM_CONVERSIONS_VIEW
12.1.1
-
VIEW: APPS.MTL_UOM_CONVERSIONS_VIEW
12.2.2
-
VIEW: APPS.MSC_WT_UOM_CONVERSIONS_VIEW
12.2.2
-
View: MSC_UOM_CONVERSIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_UOM_CONVERSIONS_VIEW, object_name:MSC_UOM_CONVERSIONS_VIEW, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_UOM_CONVERSIONS_VIEW ,
-
VIEW: APPS.MSC_WT_UOM_CONVERSIONS_VIEW
12.1.1
-
VIEW: APPS.MSC_VL_UOM_CONVERSIONS_VIEW
12.1.1
-
VIEW: APPS.MTL_UOM_CONVERSIONS_VIEW
12.1.1
-
VIEW: APPS.MSC_UOM_CONVERSIONS_VIEW
12.2.2
-
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: MSC_UOM_CONVERSIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_UOM_CONVERSIONS_VIEW, object_name:MSC_UOM_CONVERSIONS_VIEW, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_UOM_CONVERSIONS_VIEW ,
-
VIEW: APPS.MSC_VL_UOM_CONVERSIONS_VIEW
12.2.2
-
VIEW: APPS.EGO_GTIN_ATTRS_V
12.1.1
-
VIEW: APPS.EGO_GTIN_UCCNET_HIER_ATTRS_V
12.2.2
-
VIEW: APPS.EGO_GTIN_ATTRS_V
12.2.2
-
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: APPS.EGO_GTIN_UCCNET_HIER_ATTRS_V
12.1.1
-
VIEW: EGO.EGO_UOM_MAPPING_ROWS#
12.2.2
-
View: EGO_GTIN_ATTRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GTIN_ATTRS_V, object_name:EGO_GTIN_ATTRS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains GTINs and all GDSN attributes (Single-row only). This view is used to send RCIR messages. , implementation_dba_data: APPS.EGO_GTIN_ATTRS_V ,
-
VIEW: APPS.OKX_ITEM_UOMS_V
12.2.2
-
VIEW: APPS.GHG_SOURCES_UOM_V
12.2.2
-
APPS.INV_CONVERT SQL Statements
12.1.1
-
View: EGO_GTIN_ATTRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GTIN_ATTRS_V, object_name:EGO_GTIN_ATTRS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains GTINs and all GDSN attributes (Single-row only). This view is used to send RCIR messages. , implementation_dba_data: APPS.EGO_GTIN_ATTRS_V ,
-
VIEW: APPS.AHL_ITEM_CLASS_UOM_V
12.1.1
-
VIEW: APPS.AHL_ITEM_CLASS_UOM_V
12.2.2
-
View: EGO_GTIN_UCCNET_HIER_ATTRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GTIN_UCCNET_HIER_ATTRS_V, object_name:EGO_GTIN_UCCNET_HIER_ATTRS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains GTINs and all GDSN attributes (Single-row only). This view is used to send CIN messages. , implementation_dba_data: APPS.EGO_GTIN_UCCNET_HIER_ATTRS_V ,
-
View: AHL_ITEM_CLASS_UOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_ITEM_CLASS_UOM_V, object_name:AHL_ITEM_CLASS_UOM_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view retrieves items and all the UOMs which are in the same UOM class as the base UOM of the item. , implementation_dba_data: APPS.AHL_ITEM_CLASS_UOM_V ,
-
VIEW: APPS.OKX_ITEM_UOMS_V
12.1.1
-
View: EGO_GTIN_UCCNET_HIER_ATTRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GTIN_UCCNET_HIER_ATTRS_V, object_name:EGO_GTIN_UCCNET_HIER_ATTRS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains GTINs and all GDSN attributes (Single-row only). This view is used to send CIN messages. , implementation_dba_data: APPS.EGO_GTIN_UCCNET_HIER_ATTRS_V ,
-
VIEW: FTE.FTE_PRC_PARAMETERS#
12.2.2
-
VIEW: EGO.EGO_FND_DF_COL_USGS_EXT#
12.2.2
-
APPS.ITG_SYNCUOMINBOUND_PVT SQL Statements
12.2.2
-
APPS.INV_CONVERT SQL Statements
12.2.2
-
VIEW: MSC.MSC_ST_UNITS_OF_MEASURE#
12.2.2
-
View: OKX_ITEM_UOMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ITEM_UOMS_V, object_name:OKX_ITEM_UOMS_V, status:VALID, product: OKX - Contracts Integration , description: Item unit of measure codes , implementation_dba_data: APPS.OKX_ITEM_UOMS_V ,
-
View: OKX_ITEM_UOMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ITEM_UOMS_V, object_name:OKX_ITEM_UOMS_V, status:VALID, product: OKX - Contracts Integration , description: Item unit of measure codes , implementation_dba_data: APPS.OKX_ITEM_UOMS_V ,
-
APPS.POA_DBI_UOM_PKG SQL Statements
12.1.1
-
APPS.ITG_SYNCUOMINBOUND_PVT SQL Statements
12.1.1
-
VIEW: MSC.MSC_UNITS_OF_MEASURE#
12.2.2
-
VIEW: APPS.MTL_ITEM_UOMS_VIEW
12.1.1
-
APPS.GHG_UTILITIES_PKG SQL Statements
12.2.2
-
VIEW: MSC.MSC_ST_UOM_CONVERSIONS#
12.2.2
-
View: AHL_ITEM_CLASS_UOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_ITEM_CLASS_UOM_V, object_name:AHL_ITEM_CLASS_UOM_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view retrieves items and all the UOMs which are in the same UOM class as the base UOM of the item. , implementation_dba_data: APPS.AHL_ITEM_CLASS_UOM_V ,
-
VIEW: INV.MTL_UOM_CONVERSIONS#
12.2.2
-
VIEW: INV.MTL_UOM_CLASSES_TL#
12.2.2
-
VIEW: MSC.MSC_UOM_CONVERSIONS#
12.2.2
-
VIEW: INV.MTL_UNITS_OF_MEASURE_TL#
12.2.2
-
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: EGO.EGO_ATTR_GROUP_COLS_INTF#
12.2.2
-
APPS.OKS_TIME_MEASURES_PUB SQL Statements
12.2.2
-
APPS.OKS_TIME_MEASURES_PUB SQL Statements
12.1.1