Search Results std_factor




Overview

OPI_PMI_UOMS_MST_V is a view owned by the APPS schema within the Oracle E-Business Suite, delivered as part of the OPI (Operations Intelligence) product family. Its purpose is to translate Process Manufacturing (OPM) instance units of measure into the equivalent Oracle Applications instance units of measure. Once the underlying fact data has been expressed in Applications-level UOMs, it can be normalized further to EDW Warehouse UOMs through the standard EDW_UTIL package. The view therefore occupies a bridging position in the ETRM analytics stack: it mediates between the OPM source representation of units and the canonical unit definitions used by the broader EBS reporting schema.

Within the Oracle EBS 12.1.1 and 12.2.2 releases, OPI_PMI_UOMS_MST_V is commonly consulted when users search for the column alias um_code. That alias is one of the key exposed attributes and is frequently referenced in custom extracts, OBIEE repository layers, and ETL mappings that reconcile OPM data with inventory and order management facts. It is documented as VALID, indicating that the compiled definition is syntactically consistent against its referenced objects at the time of documentation.

Underlying Base Objects

The ETRM metadata does not enumerate referenced base objects, but the view text makes the dependency explicit. The definition joins two Inventory tables:

Constraining the join to INVENTORY_ITEM_ID = 0 restricts the result to the standard (non-item-specific) UOM conversion set, which is the appropriate baseline for analytics across the enterprise. Because both sources are Inventory master tables, the view inherits the EBS multi-org-neutral unit definitions rather than any OPM-specific conversion logic.

Key Columns

The view exposes sixteen columns. The most significant for the um_code search are:

Common Use Cases and Queries

Typical usage scenarios include reconciling OPM fact tables to Inventory UOMs before EDW loading, validating conversion factors used in operational reports, and populating UOM lookup dimensions in a BI repository. The following query illustrates retrieval of active unit definitions:

SELECT UM_CODE, UM_DESC, UM_TYPE, STD_FACTOR FROM APPS.OPI_PMI_UOMS_MST_V WHERE DELETE_MARK = 0 ORDER BY UM_CODE;

To inspect a single unit identified by its Applications UOM code:

SELECT UM_CODE, UOM_CODE, UNIT_OF_MEASURE, STD_FACTOR FROM APPS.OPI_PMI_UOMS_MST_V WHERE UOM_CODE = :p_uom_code;

Because the view is read-only and defined over Inventory master data, extracts should apply the DELETE_MARK filter to exclude disabled units and join to EDW structures via EDW_UTIL for warehouse-level normalization.

  • View: OPI_PMI_UOMS_MST_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:OPI.OPI_PMI_UOMS_MST_V,  object_name:OPI_PMI_UOMS_MST_V,  status:VALID,  product: OPI - Operations Intelligencedescription: Allows for the translation of OPM Instance-UOMs to Apps Instance-UOM's. Once facts are in Apps Instance UOMs, they can be converted to EDW Warehouse UOM's using the standard EDW_UTIL package. ,  implementation_dba_data: APPS.OPI_PMI_UOMS_MST_V