Search Results mtl_units_of_measure_vl
Overview
The AHL_ITEM_CLASS_UOM_V view is an Oracle E-Business Suite database object owned by the APPS schema. It belongs to the AHL product family, Complex Maintenance Repair and Overhaul (CMRO), and carries a VALID status in both EBS 12.1.1 and 12.2.2. The view serves a specific reporting and integration purpose: for any inventory item, it returns the item's base (primary) unit of measure together with every other unit of measure that belongs to the same UOM class as that base UOM. This effectively exposes the full set of alternative units in which an item's quantity can be expressed or converted, which is essential for maintenance, repair, and overhaul transactions where the same physical material may be issued, received, or planned in differing units.
Because the view is keyed on both inventory item and organization, it is well suited for multi-organization reporting and for feeding downstream applications that must present a consistent, class-validated list of allowable units per item.
Underlying Base Objects
The view is defined over four documented references: MTL_SYSTEM_ITEMS_KFV, MTL_UNITS_OF_MEASURE_VL (referenced twice as UOM1 and UOM2), and FND_LOOKUP_VALUES_VL. The join logic is:
MTL_SYSTEM_ITEMS_KFVsupplies the item, its organization, and thePRIMARY_UOM_CODE(the base UOM).MTL_UNITS_OF_MEASURE_VL UOM1resolves the base UOM'sUOM_CLASS.MTL_UNITS_OF_MEASURE_VL UOM2returns all units sharing that sameUOM_CLASS, filtered so that only non-expired units (or those with no disable date) remain.FND_LOOKUP_VALUES_VLjoins on lookup typeAHL_YES_NO_TYPEviaBASE_UOM_FLAG, tagging each returned unit with a yes/noBASE_UOMmeaning so consumers can identify the item's actual base UOM within the expanded list.
Key Columns
UNIT_OF_MEASURE— the descriptive name of the unit of measure.UOM_CODE— the unique code for the unit, used in conversions.UOM_CLASS— the class shared by the base UOM and all returned alternative UOMs.UOM_DESCRIPTION— description text for the unit.BASE_UOM— a yes/no meaning flag indicating whether this row corresponds to the item's base UOM.INVENTORY_ITEM_ID— the item identifier.INVENTORY_ORG_ID— the owning inventory organization.CONCATENATED_SEGMENTS— the item's concatenated (flexfield) segment description.
Common Use Cases and Queries
A frequent pattern is retrieving all valid alternative units for a single item and organization, filtering out the base UOM itself.
- List alternative UOMs for an item:
SELECT uom_code, unit_of_measure, uom_class FROM apps.ahl_item_class_uom_v WHERE inventory_item_id = :item_id AND inventory_org_id = :org_id AND base_uom = 'N';
- Identify the base UOM row:
SELECT uom_code, unit_of_measure FROM apps.ahl_item_class_uom_v WHERE inventory_item_id = :item_id AND base_uom = 'Y';
- Show item context with its units:
SELECT concatenated_segments, inventory_org_id, uom_code, base_uom FROM apps.ahl_item_class_uom_v WHERE inventory_org_id = :org_id;
These queries support LOV construction, CMRO maintenance work-order entry, and validation logic ensuring that only class-compatible units are selected for an item.
-
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: AHL_MR_INTERVALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_INTERVALS_V, object_name:AHL_MR_INTERVALS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_INTERVALS,CS_COUNTERS, and MTL_UNITS_OF_MEASURE_VL , implementation_dba_data: APPS.AHL_MR_INTERVALS_V ,
-
View: AHL_MR_INTERVALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_INTERVALS_V, object_name:AHL_MR_INTERVALS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_INTERVALS,CS_COUNTERS, and MTL_UNITS_OF_MEASURE_VL , implementation_dba_data: APPS.AHL_MR_INTERVALS_V ,
-
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: AHL_NR_PROFILE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_NR_PROFILE_DETAILS_V, object_name:AHL_NR_PROFILE_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_NR_PROFILE_DETAILS_V ,
-
View: AHL_PLANNING_FACTORS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PLANNING_FACTORS_V, object_name:AHL_PLANNING_FACTORS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_PLANNING_FACTORS_V ,
-
View: AHL_RT_OPER_MATERIALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_RT_OPER_MATERIALS_V, object_name:AHL_RT_OPER_MATERIALS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_RT_OPER_MATERIALS and two other columns CONCATENATED_SEGMENTS and DESCRIPTION from the view AHL_MTL_ITEMS_OU_V. , implementation_dba_data: APPS.AHL_RT_OPER_MATERIALS_V ,
-
View: AHL_RT_OPER_MATERIALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_RT_OPER_MATERIALS_V, object_name:AHL_RT_OPER_MATERIALS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_RT_OPER_MATERIALS and two other columns CONCATENATED_SEGMENTS and DESCRIPTION from the view AHL_MTL_ITEMS_OU_V. , implementation_dba_data: APPS.AHL_RT_OPER_MATERIALS_V ,
-
View: AHL_OSP_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OSP_ORDER_LINES_V, object_name:AHL_OSP_ORDER_LINES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This View queries all the inforamtion related to ORDER LINES. The information is retrieved from the table AHL_OSP_ORDER_LINES and the view AHL_WORKORDERS_V. , implementation_dba_data: APPS.AHL_OSP_ORDER_LINES_V ,
-
View: AHL_OSP_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OSP_ORDER_LINES_V, object_name:AHL_OSP_ORDER_LINES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This View queries all the inforamtion related to ORDER LINES. The information is retrieved from the table AHL_OSP_ORDER_LINES and the view AHL_WORKORDERS_V. , implementation_dba_data: APPS.AHL_OSP_ORDER_LINES_V ,