Search Results yes_lkup




Overview

APPS.PMITS_ITEM_MASTER_V is a reporting and integration view in Oracle EBS Process Manufacturing (OPM) that exposes item master definition data held in the IC_ITEM_MST_VL base view, enriched with decoded (meaning-level) values from the GEM_LOOKUPS lookup view. The view presents a single denormalized row per item, combining the raw coded indicator columns (for example, LOT_CTL, INACTIVE_IND, GRAD_CTL) with their human-readable lookup meanings, along with description, classification, planning, costing, and category-assignment attributes.

The view is typically consumed in OPM environments for item-level reporting, interfaces, and integration extracts where the item definition must be presented with both codes and decoded descriptions. Because it links to the lookup view, it allows report authors and interfaces to avoid joining to the lookup table themselves for the indicators that are decoded inside the view. The name prefix PMITS suggests a Process Manufacturing Information/Item-related object, and the view is commonly used in discrete-OPM coexistence scenarios where items defined in OPM must be surfaced to other modules.

Underlying Base Objects

The following base objects are documented for this view:

The relationship is therefore one item row in IC_ITEM_MST_VL to multiple decode lookups against GEM_LOOKUPS. The view does not in itself define a master-detail relationship; rather, it is a single-row-per-item projection.

Key Columns

Common Use Cases and Queries

Typical uses include item master extracts, quality/status reporting, and integration into downstream systems that require decoded indicator meanings rather than internal codes.

  • Listing all experimental items with a readable flag.
  • Reporting lot-controlled or non-inventory items.
  • Feeding item classification and category data into planning or costing interfaces.

Sample query to surface experimental items:

  • SELECT ITEM_NO, ITEM_DESC1, EXPERIMENTAL_IND, EXP_IND_LKUP_MEANING FROM APPS.PMITS_ITEM_MASTER_V WHERE EXPERIMENTAL_IND = '1'; (the decoded column is the alias produced by the EXP_IND_LKUP decode in the view text).

Sample query for lot-controlled active items:

  • SELECT ITEM_NO, ITEM_UM, LOT_CTL, INACTIVE_IND FROM APPS.PMITS_ITEM_MASTER_V WHERE LOT_CTL = '1' AND INACTIVE_IND = '0' ORDER BY ITEM_NO;

Because the view decodes indicators internally, consumers receive both the underlying code and its meaning in a single row, reducing the need for repeated joins to GEM_LOOKUPS in custom reports and interfaces.