Search Results reciept_no
Overview
PMIFV_LOT_LIST_V is a Business Intelligence System (BIS) view owned by the APPS schema in Oracle E-Business Suite. It belongs to the Process Manufacturing (PMI/GME) product family and is registered under the FND Design Data namespace PMI.PMIFV_LOT_LIST_V. The view consolidates lot and batch information together with routing, formula, and procurement context into a single, denormalized projection intended for reporting and integration consumers. Rather than requiring callers to join the discrete Process Manufacturing lot, batch, and receiving tables directly, the view flattens those relationships and surfaces descriptive attributes such as item number, lot number, sublot, vendor name, and—critically for callers searching on routing attributes—ROUTING_NO and ROUTING_VERSION. The view is a BI System view, meaning it is optimized for query access rather than transactional maintenance, and it is not referenced by any other database object, so it serves purely as a read-only presentation layer.
Underlying Base Objects
Per the documented dependency list, PMIFV_LOT_LIST_V resolves over the following objects:
- FND_GLOBAL (package) — typically supplies session and organization context values used in the view's WHERE clause.
- GME_BATCH_HEADER — the Process Manufacturing batch header, source of batch and formula/routing associations.
- IC_ITEM_MST — Oracle Inventory item master, source of item number and description.
- IC_LOTS_MST — Oracle Inventory lot master, source of lot number, sublot, and QC grade.
- IC_TRAN_PND — pending inventory transactions.
- SY_ORGN_MST — organization master, supplying organization code and name.
- PO_RECV_DTL, PO_RECV_HDR, RCV_SHIPMENT_HEADERS, RCV_SHIPMENT_LINES, RCV_TRANSACTIONS — receiving and shipment tables that supply receipt number and receipt-related context.
- PO_VENDORS_VIEW, PO_VENDOR_SITES_ALL, PO_VEND_MST — vendor and vendor-site sources for VENDOR_NO, VENDOR_NAME, and VENDOR_ID.
The view therefore joins inventory master data, Process Manufacturing batch execution data, and procurement/receiving data. Its routing columns originate from the batch header's associated routing, which is why a search on "routing_version" surfaces this object.
Key Columns
- ITEM_NO, ITEM_DESCRIPTION, ITEM_ID — item identification and description.
- INVENTORY_CLASS, INVENTORY_TYPE — inventory classification attributes.
- LOT_ID, LOT_NO, SUBLOT_NO — the lot and sublot identifiers, the primary entity of interest.
- LOT_CREATION_DATE — when the lot was created.
- QC_GRADE — quality inspection grade assigned to the lot.
- ORGANIZATION_CODE, ORGANIZATION_NAME — the inventory organization owning the lot.
- VENDOR_NO, VENDOR_NAME, VENDOR_ID — supplier associated with the lot or its receipt.
- BATCH_NO — the Process Manufacturing batch the lot relates to.
- FORMULA_NO, FORMULA_VERSION — formula identification and its version.
- ROUTING_NO, ROUTING_VERSION — the routing identifier and its version, the attributes most relevant to a routing_version lookup.
- RECIEPT_NO — the purchase order receipt number (as spelled in the view).
Common Use Cases and Queries
The view is typically used for lot traceability reporting, where lots must be linked to their batch, formula, routing version, and vendor. A common pattern filters by a specific routing or version:
SELECT LOT_NO, SUBLOT_NO, ITEM_NO, BATCH_NO, ROUTING_NO, ROUTING_VERSION, FORMULA_NO, FORMULA_VERSION
FROM APPS.PMIFV_LOT_LIST_V
WHERE ROUTING_VERSION = :routing_version;
Another frequent scenario is lot genealogy by organization and date range, or tracing lots back to the vendor and receipt number:
SELECT ITEM_NO, LOT_NO, ORGANIZATION_CODE, VENDOR_NAME, RECIEPT_NO, LOT_CREATION_DATE
FROM APPS.PMIFV_LOT_LIST_V
WHERE LOT_CREATION_DATE >= :from_date;
Because the view is populated with descriptive columns only, it should be used for read-only reporting and BI extracts. Queries should always include selective filters on LOT_NO, ITEM_NO, BATCH_NO, or ORGANIZATION_CODE to limit the cost of the underlying multi-table join.
-
VIEW: APPS.PMIFV_LOT_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_LOT_LIST_V, object_name:PMIFV_LOT_LIST_V, status:VALID,
-
VIEW: APPS.PMIBV_LOT_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_LOT_LIST_V, object_name:PMIBV_LOT_LIST_V, status:VALID,
-
VIEW: APPS.PMIFV_LOT_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_LOT_LIST_V, object_name:PMIFV_LOT_LIST_V, status:VALID,
-
VIEW: APPS.PMIBV_LOT_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_LOT_LIST_V, object_name:PMIBV_LOT_LIST_V, status:VALID,
-
View: PMIBV_LOT_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_LOT_LIST_V, object_name:PMIBV_LOT_LIST_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Lot List View used by Lot Genealogy workbook , implementation_dba_data: APPS.PMIBV_LOT_LIST_V ,
-
View: PMIFV_LOT_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_LOT_LIST_V, object_name:PMIFV_LOT_LIST_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Lot List View used by Lot Genealogy workbook , implementation_dba_data: APPS.PMIFV_LOT_LIST_V ,
-
View: PMIBV_LOT_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_LOT_LIST_V, object_name:PMIBV_LOT_LIST_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Lot List View used by Lot Genealogy workbook , implementation_dba_data: APPS.PMIBV_LOT_LIST_V ,
-
View: PMIFV_LOT_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_LOT_LIST_V, object_name:PMIFV_LOT_LIST_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Lot List View used by Lot Genealogy workbook , implementation_dba_data: APPS.PMIFV_LOT_LIST_V ,
-
eTRM - PMI Tables and Views
12.1.1
-
eTRM - PMI Tables and Views
12.2.2