Results for “vendor_lot_no”
50+ results
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
PMIBV_LOT_LOV_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the PMI (Process Manufacturing Intelligence) product family, which Oracle has since classified as obsolete. The view functions as a List of Values (LOV) source for lot selection, exposing a minimal projection of lot master data that front-end forms and concurrent programs can query when a user or process needs to pick a lot number.
Because the view is defined with a WITH READ ONLY clause, it is intended strictly for query and display purposes. It cannot be used as the target of DML statements, and any application logic requiring lot maintenance must operate against the underlying master table instead. This read-only constraint reinforces its role as a presentation and lookup layer rather than a transactional interface.
Underlying Base Objects
The view is defined over a single base object: IC_LOTS_MST, which is referenced through a synonym in the APPS schema. IC_LOTS_MST is the Process Manufacturing lot master table that stores the canonical definition of lots across inventory organizations.
The definition is deliberately thin. The full view text is:
SELECT LOT_NO, SUBLOT_NO, LOT_DESC, VENDOR_LOT_NO FROM IC_LOTS_MST WITH READ ONLY
No joins, filters, or aggregations are applied. Consequently, the view inherits the full row population of IC_LOTS_MST, subject only to whatever organization-level security or synonyms are already enforced on the base table. There is no multi-organization filtering built into the view itself, so consumers must apply their own organization context where required.
Key Columns
The view exposes exactly four columns, each passed through directly from the base table:
- LOT_NO — The primary lot number identifier. This is the principal selection value presented in an LOV and the column most commonly used in join predicates.
- SUBLOT_NO — The sublot identifier, used where a lot is subdivided into subordinate units. It qualifies LOT_NO to form the complete lot key.
- LOT_DESC — The descriptive text associated with the lot. This is typically the display column shown alongside LOT_NO in a user-facing LOV so operators can identify lots by description rather than number alone.
- VENDOR_LOT_NO — The supplier's own lot reference. This column is directly relevant to the search term "vendor_lot_no," as it carries the externally assigned lot number received from the vendor, enabling traceability between supplier documentation and internal lot records.
Common Use Cases and Queries
The view is most often employed to populate lot LOVs in custom forms, OAF pages, and reports, and to resolve a vendor lot number back to the internal lot it corresponds to. A typical lookup by vendor reference is:
SELECT lot_no, sublot_no, lot_desc FROM apps.pmibv_lot_lov_v WHERE vendor_lot_no = :p_vendor_lot_no;
A broader keyword search for LOV population may use a pattern match against either the internal or vendor reference:
SELECT lot_no, sublot_no, lot_desc, vendor_lot_no FROM apps.pmibv_lot_lov_v WHERE lot_no LIKE :p_pattern OR vendor_lot_no LIKE :p_pattern;
Because the view is obsolete and unfiltered, integration developers should treat it as a convenience lookup rather than an authoritative reporting source, and should confirm that organization-level restrictions are applied by the calling application.
-
View: PMIBV_LOT_LOV_V 12.2.2
PMI LOV View for Lot
-
View: PMIBV_LOT_LOV_V 12.1.1
PMI LOV View for Lot
-
Table: GMI_TRAN_TMP 12.2.2
Stores data temporarily for Pick Lots Screen
-
Sales Order Detail Allocations view
APPS.GML_GPOAO_DETAIL_ALLOCATIONS_V·↳ IC_LOCT_MST·↳ IC_LOTS_MST·↳ IC_LOTS_STS·Explore GML module →
-
Sales Order Detail Allocations view
APPS.GML_GPOAO_DETAIL_ALLOCATIONS_V·↳ IC_LOCT_MST·↳ IC_LOTS_MST·↳ IC_LOTS_STS·Explore GML module →
-
Contains information about lot, location and pending transaction for an order line of an order that the shipment generated from for GASNO transaction.
-
View: GMI_PICK_LOTS_V 12.2.2
View to populate pick lots screen from shipment form
APPS.GMI_PICK_LOTS_V·↳ GMI_TRAN_TMP·↳ IC_LOCT_INV·↳ IC_LOTS_STS·Explore GMI module →
-
Sales Order Detail Allocations view
APPS.GML_GASNO_DETAIL_ALLOCATIONS_V·↳ IC_LOCT_MST·↳ IC_LOTS_MST·↳ IC_LOTS_STS·Explore GML module →
-
Sales Order Detail Allocations view
APPS.GML_GASNO_DETAIL_ALLOCATIONS_V·↳ IC_LOCT_MST·↳ IC_LOTS_MST·↳ IC_LOTS_STS·Explore GML module →
-
This is the XML Lot API Interface table. This table stores data about individual xml lot api requests.
-
Contains order line detail allocation data to support the edi outbound transaction GPOAO (OPM Outbound Purchase Order Acknowledgment (855/ORDRSP).
-
Contains information about lot, location and pending transaction for an order line of an order that the shipment generated from for GASNO transaction.
-
Table: GMI_TRAN_TMP 12.1.1
Stores data temporarily for Pick Lots Screen
-
This is the lot master table. This table stores data about individual lots for an item.
-
View: GMI_PICK_LOTS_V 12.1.1
View to populate pick lots screen from shipment form
APPS.GMI_PICK_LOTS_V·↳ GMI_TRAN_TMP·↳ IC_LOCT_INV·↳ IC_LOTS_STS·Explore GMI module →
-
This is the XML Lot API Interface table. This table stores data about individual xml lot api requests.
-
Contains order line detail allocation data to support the edi outbound transaction GPOAO (OPM Outbound Purchase Order Acknowledgment (855/ORDRSP).
-
This is the lot master table. This table stores data about individual lots for an item.
-
VIEW: GMI.GMI_TRAN_TMP# 12.2.2
-
VIEW: APPS.PMIBV_LOT_LOV_V 12.2.2
-
VIEW: APPS.PMIBV_LOT_LOV_V 12.1.1
-
VIEW: GMI.IC_LOTS_MST# 12.2.2
-
VIEW: APPS.PMIBV_LOT_LOV_V 12.2.2
-
VIEW: GMI.GMI_TRAN_TMP# 12.2.2
-
VIEW: APPS.PMIBV_LOT_LOV_V 12.1.1
-
TABLE: GMI.GMI_TRAN_TMP 12.2.2
-
TABLE: GMI.GMI_TRAN_TMP 12.1.1
-
VIEW: GMI.IC_LOTS_MST# 12.2.2
-
VIEW: APPS.GMI_PICK_LOTS_V 12.2.2
-
VIEW: APPS.GMI_PICK_LOTS_V 12.1.1