Search Results lot_ctl




Overview

PMITS_ITEM_MASTER_V is an APPS-owned view in Oracle E-Business Suite, catalogued under the Process Manufacturing Intelligence (PMI) product. In ETRM 12.2.2 metadata the PMI module is flagged as obsolete, and the view should be treated as a legacy reporting artifact rather than a supported integration interface. It presents a denormalised, read-only projection of the OPM Item Master, exposing every attribute required to describe a process manufacturing item: unit-of-measure definitions, lot, sublot and location control flags, quality and grade indicators, planning and pricing categories, and the full set of item class and type designations.

The view's principal reporting value lies in its decoding of internal single-character flag columns into lookup meanings. Rather than returning raw '0'/'1' values for lot control or inactivity, the view joins to the GEM_LOOKUPS lookup view and substitutes the translated YES/NO meaning, which makes it directly consumable by BI Publisher reports, Discoverer workbooks and ad hoc SQL without additional lookup joins in the calling query.

Underlying Base Objects

ETRM documents two referenced base objects for this view: GEM_LOOKUPS (a view) and IC_ITEM_MST_VL (a view). IC_ITEM_MST_VL is the OPM Item Master base, the source of the item rows, identifiers, UOM data, control flags and class columns. GEM_LOOKUPS supplies the decode meanings applied through several aliased joins in the view text — NO_LKUP, YES_LKUP, DUAL_IND_LKUP, LOCT_CTL_LKUP, MATCHING_LKUP, STATUS_CTL_LKUP and EXP_IND_LKUP. The view text also carries the SEQ_DPND_CLASS column (the underlying OPM field SEQ_DPND_CLASS), which is the object most commonly sought when this view is researched.

Key Columns

Common Use Cases and Queries

Typical uses include item master extracts for quality reporting, lot-control audits and cross-reference of OPM class assignments to downstream planning or costing tables. The decoded meaning columns remove the need to re-implement lookup joins.

List lot-controlled, sequence-dependent items:

  • SELECT item_no, item_um, lot_ctl, seq_dpnd_class, qc_grade FROM apps.pmits_item_master_v WHERE lot_ctl = '1' AND inactive_ind = '0';

Extract class designations for a given item:

  • SELECT item_no, inv_class, sales_class, planning_class, itemcost_class FROM apps.pmits_item_master_v WHERE item_no = :item_no;

Review items nearing retest, joining to OPM batch or inventory tables on ITEM_ID:

  • SELECT item_no, shelf_life, retest_interval FROM apps.pmits_item_master_v WHERE retest_interval IS NOT NULL ORDER BY retest_interval;

Because the PMI module is obsolete in ETRM 12.2.2, new development should target the underlying IC_ITEM_MST_VL view or the current Process Manufacturing item master interfaces, reserving PMITS_ITEM_MASTER_V for existing reports that already depend on its decoded output.

  • View: PMITS_ITEM_MASTER_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PMI.PMITS_ITEM_MASTER_V,  object_name:PMITS_ITEM_MASTER_V,  status:VALID,  product: PMI - Process Manufacturing Intelligencedescription: This is a view on top of OPM Item Master table. It contains all information relating to an item, such as lot/sublot control, unit of measure information, and all class and type designations. ,  implementation_dba_data: APPS.PMITS_ITEM_MASTER_V