Search Results product_item_id
Overview
APPS.GMI_LOTS_DEST_BOM_V is a read-only database view in the Oracle E-Business Suite Process Manufacturing (OPM) module, exposed under the APPS schema. Its primary function is to flatten and de-duplicate the parent/child lot-to-lot BOM relationships that are critical to lot genealogy and traceability in regulated manufacturing environments. Specifically, the view takes the raw lot destination-to-BOM relationships from GMI_LOTS_BOM_V and reduces them to a unique combination of document, product item, product lot, ingredient item, and ingredient lot. This supports reporting and integration use cases where consumers need the "who consumed what in which lot" records stripped of the multiplicative duplication that occurs when a formula has multiple component occurrences.
The view is typically consumed by lot traceability tools, disposition/recall reporting, quality investigations, and downstream integrations that push genealogy data to MES or LIMS systems.
Underlying Base Objects
The ETRM documentation for 12.2.2 identifies exactly two referenced base objects:
- GMI_LOTS_BOM_V (View) — The source of all columns. GMI_LOTS_DEST_BOM_V selects from this view and applies a GROUP BY to produce one row per distinct genealogy tuple.
- GMI_LOT_TRACE_PKG (Package) — Invoked at runtime in the SELECT list. The function
GMI_LOT_TRACE_PKG.HAS_PRODUCT(product_item_id, product_lot_id)is evaluated for each row to return anHAS_CHILDflag indicating whether the given product/lot combination itself has downstream children in the trace hierarchy.
The GROUP BY clause lists DOC_ID, PRODUCT_ITEM_ID, PRODUCT_LOT_ID, INGRED_ITEM_ID, and INGRED_LOT_ID. Note that the function call is not included in the GROUP BY, but because it is determined solely by the two grouping columns PRODUCT_ITEM_ID and PRODUCT_LOT_ID, it is functionally dependent on the grouping key and therefore valid.
Key Columns
- DOC_ID — Document identifier linking the row to the originating batch, formula, or inventory transaction document.
- PRODUCT_ITEM_ID — The finished or intermediate product item produced by the document. This is the column users search for when querying "product_item_id".
- PRODUCT_LOT_ID — The specific lot of the product item generated or associated with the document.
- INGRED_ITEM_ID — The component (ingredient) item consumed during production.
- INGRED_LOT_ID — The specific lot of the ingredient item that was consumed.
- HAS_CHILD — A computed flag (via
GMI_LOT_TRACE_PKG.HAS_PRODUCT) indicating whether the product/lot pair has associated child records. This is used for recursive or hierarchical traceability traversal.
Common Use Cases and Queries
Typical scenarios include retrieving all ingredient lots for a given product lot during a recall, confirming that a downstream product lot has children before drilling deeper, and populating genealogy extracts. The PRODUCT_ITEM_ID column is the common entry point for filtering by finished or intermediate item.
SELECT doc_id,
product_item_id,
product_lot_id,
ingred_item_id,
ingred_lot_id,
has_child
FROM apps.gmi_lots_dest_bom_v
WHERE product_item_id = :p_item_id
AND product_lot_id = :p_lot_id;
To find only terminal nodes (lots with no further children):
SELECT doc_id, product_item_id, product_lot_id
FROM apps.gmi_lots_dest_bom_v
WHERE has_child = 0;
Because the view performs a GROUP BY over GMI_LOTS_BOM_V, always expect one deduplicated row per (DOC_ID, PRODUCT_ITEM_ID, PRODUCT_LOT_ID, INGRED_ITEM_ID, INGRED_LOT_ID) tuple. Avoid adding columns from the base view that are not present here, as they are not exposed by this view.
-
VIEW: APPS.GMI_LOTS_DEST_BOM_V
12.1.1
-
VIEW: APPS.GMI_LOTS_DEST_BOM_V
12.2.2
-
VIEW: APPS.GMI_LOTS_SOURCE_BOM_V
12.2.2
-
VIEW: GR.GR_INGREDIENT_CONCENTRATIONS#
12.2.2
-
VIEW: PMI.PMI_LOT_GENEALOGY#
12.2.2
-
VIEW: APPS.GMI_LOTS_SOURCE_BOM_V
12.1.1
-
View: GMI_LOTS_DEST_BOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_DEST_BOM_V, object_name:GMI_LOTS_DEST_BOM_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Genealogy Tree Navigator , implementation_dba_data: APPS.GMI_LOTS_DEST_BOM_V ,
-
VIEW: GMF.GMF_BATCH_REQUIREMENTS#
12.2.2
-
View: GMI_LOTS_DEST_BOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_DEST_BOM_V, object_name:GMI_LOTS_DEST_BOM_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Genealogy Tree Navigator , implementation_dba_data: APPS.GMI_LOTS_DEST_BOM_V ,
-
View: GMI_LOTS_SOURCE_BOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_SOURCE_BOM_V, object_name:GMI_LOTS_SOURCE_BOM_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Genealogy Tree Navigator (on the Lot Genealogy Inquiry) when the navigation mode is Lot Source. , implementation_dba_data: APPS.GMI_LOTS_SOURCE_BOM_V ,
-
VIEW: BOM.BOM_MIXED_MODEL_MAP_CELLS#
12.2.2
-
View: GMI_LOTS_SOURCE_BOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_SOURCE_BOM_V, object_name:GMI_LOTS_SOURCE_BOM_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Genealogy Tree Navigator (on the Lot Genealogy Inquiry) when the navigation mode is Lot Source. , implementation_dba_data: APPS.GMI_LOTS_SOURCE_BOM_V ,
-
VIEW: APPS.GMI_LOTS_BOM_V
12.2.2
-
VIEW: APPS.PMIFV_LOT_EVENT_V
12.2.2
-
View: GMI_LOTS_BOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_BOM_V, object_name:GMI_LOTS_BOM_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: View of Product document id plus product and ingredient lot id and item id. , implementation_dba_data: APPS.GMI_LOTS_BOM_V ,
-
VIEW: APPS.GMI_LOTS_BOM_V
12.1.1
-
VIEW: PMI.PMI_LOT_GENEALOGY#
12.2.2
owner:PMI, object_type:VIEW, object_name:PMI_LOT_GENEALOGY#, status:VALID,
-
View: GMI_LOTS_BOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_BOM_V, object_name:GMI_LOTS_BOM_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: View of Product document id plus product and ingredient lot id and item id. , implementation_dba_data: APPS.GMI_LOTS_BOM_V ,
-
VIEW: APPS.PMI_LOT_SOURCE_LEAF_V
12.2.2
-
VIEW: APPS.PMI_LOT_SOURCE_LEAF_V
12.1.1
-
APPS.PMI_LOT_GENEALOGY_PKG SQL Statements
12.2.2
-
APPS.PMI_LOT_GENEALOGY_PKG SQL Statements
12.1.1
-
VIEW: APPS.PMIFV_LOT_EVENT_V
12.1.1
-
View: PMI_LOT_SOURCE_LEAF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_LOT_SOURCE_LEAF_V, object_name:PMI_LOT_SOURCE_LEAF_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: This view lists raw material lots that are used in the manufacture of a product lot. In this context, a raw material lot is any lot that cannot be further decomposed into a lower level of constituent ingredients. , implementation_dba_data: APPS.PMI_LOT_SOURCE_LEAF_V ,
-
VIEW: GR.GR_INGREDIENT_CONCENTRATIONS#
12.2.2
owner:GR, object_type:VIEW, object_name:GR_INGREDIENT_CONCENTRATIONS#, status:VALID,
-
TABLE: GR.GR_INGREDIENT_CONCENTRATIONS
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_INGREDIENT_CONCENTRATIONS, object_name:GR_INGREDIENT_CONCENTRATIONS, status:VALID,
-
TABLE: GR.GR_INGREDIENT_CONCENTRATIONS
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_INGREDIENT_CONCENTRATIONS, object_name:GR_INGREDIENT_CONCENTRATIONS, status:VALID,
-
View: PMI_LOT_SOURCE_LEAF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_LOT_SOURCE_LEAF_V, object_name:PMI_LOT_SOURCE_LEAF_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: This view lists raw material lots that are used in the manufacture of a product lot. In this context, a raw material lot is any lot that cannot be further decomposed into a lower level of constituent ingredients. , implementation_dba_data: APPS.PMI_LOT_SOURCE_LEAF_V ,
-
VIEW: BOM.BOM_MIXED_MODEL_MAP_CELLS#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_MIXED_MODEL_MAP_CELLS#, status:VALID,
-
TABLE: BOM.BOM_MIXED_MODEL_MAP_CELLS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_CELLS, object_name:BOM_MIXED_MODEL_MAP_CELLS, status:VALID,
-
VIEW: GMF.GMF_BATCH_REQUIREMENTS#
12.2.2
owner:GMF, object_type:VIEW, object_name:GMF_BATCH_REQUIREMENTS#, status:VALID,
-
VIEW: APPS.GMI_LOTS_BOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_BOM_V, object_name:GMI_LOTS_BOM_V, status:VALID,
-
View: GMI_LOTS_COMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_COMP_V, object_name:GMI_LOTS_COMP_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Source tab of the Lot Genealogy Inquiry when the navigation mode is Lot Source. , implementation_dba_data: APPS.GMI_LOTS_COMP_V ,
-
View: GMI_LOTS_DEST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_DEST_V, object_name:GMI_LOTS_DEST_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Where Used tab of the Lot Genealogy Inquiry when the navigation mode is Where Used , implementation_dba_data: APPS.GMI_LOTS_DEST_V ,
-
View: MTL_MFG_PRODUCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_PRODUCTS_V, object_name:MTL_MFG_PRODUCTS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MFG_PRODUCTS_V ,
-
View: GMI_LOTS_EVENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_EVENT_V, object_name:GMI_LOTS_EVENT_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Events tab of the Lot Genealogy Inquiry. , implementation_dba_data: APPS.GMI_LOTS_EVENT_V ,
-
TABLE: BOM.BOM_MIXED_MODEL_MAP_CELLS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_CELLS, object_name:BOM_MIXED_MODEL_MAP_CELLS, status:VALID,
-
VIEW: APPS.GMI_LOTS_BOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_BOM_V, object_name:GMI_LOTS_BOM_V, status:VALID,
-
View: GMI_LOTS_COMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_COMP_V, object_name:GMI_LOTS_COMP_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Source tab of the Lot Genealogy Inquiry when the navigation mode is Lot Source. , implementation_dba_data: APPS.GMI_LOTS_COMP_V ,
-
View: GMI_LOTS_EVENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_EVENT_V, object_name:GMI_LOTS_EVENT_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Lot Events tab of the Lot Genealogy Inquiry. , implementation_dba_data: APPS.GMI_LOTS_EVENT_V ,
-
VIEW: APPS.GMI_LOTS_COMP_V
12.2.2
-
VIEW: APPS.PMI_LOT_SOURCE_LEAF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_LOT_SOURCE_LEAF_V, object_name:PMI_LOT_SOURCE_LEAF_V, status:VALID,
-
View: MTL_MFG_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_COMPONENTS_V, object_name:MTL_MFG_COMPONENTS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MFG_COMPONENTS_V ,
-
VIEW: APPS.GMI_LOTS_COMP_V
12.1.1
-
VIEW: APPS.MTL_MFG_COMPONENTS_V
12.2.2
-
VIEW: APPS.PMI_LOT_SOURCE_LEAF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_LOT_SOURCE_LEAF_V, object_name:PMI_LOT_SOURCE_LEAF_V, status:VALID,
-
View: PMIFV_LOT_EVENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_LOT_EVENT_V, object_name:PMIFV_LOT_EVENT_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: This view is used to access inventory events involving each lot. , implementation_dba_data: APPS.PMIFV_LOT_EVENT_V ,
-
VIEW: APPS.GMI_LOTS_EVENT_V
12.1.1
-
View: GMI_LOTS_DEST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_LOTS_DEST_V, object_name:GMI_LOTS_DEST_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used to populate the Where Used tab of the Lot Genealogy Inquiry when the navigation mode is Where Used , implementation_dba_data: APPS.GMI_LOTS_DEST_V ,
-
View: MTL_MFG_PRODUCTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_PRODUCTS_V, object_name:MTL_MFG_PRODUCTS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MFG_PRODUCTS_V ,