Search Results lot_desc
Overview
APPS.PMIBV_LOT_LOV_V is a read-only database view in Oracle E-Business Suite that exposes lot and sublot information from the inventory lot master. Its name designates it as a List of Values (LOV) view, indicating that it is intended primarily to populate selection lists and value pickers in Oracle Forms-based EBS applications and in custom concurrent or OAF components. The view presents four columns — LOT_NO, SUBLOT_NO, LOT_DESC, and VENDOR_LOT_NO — drawn directly from the IC_LOTS_MST table through a synonym of the same name. Because the view is defined with the WITH READ ONLY clause, no DML operations can be issued against it, reinforcing its role as a query-only presentation layer rather than a transactional interface.
The view is owned by the APPS schema, which is consistent with standard EBS deployment practice in which application views are created under APPS while the underlying base objects reside in the relevant product schema. In releases 12.1.1 and 12.2.2 the object remains structurally identical, so reports, forms personalizations, and custom integrations built against it remain portable across those versions. The user search term “lot_desc” corresponds directly to the LOT_DESC column exposed by this view, confirming that the view is the correct access path when a description of a lot must be retrieved alongside its number.
Underlying Base Objects
The view is defined over a single documented base object: IC_LOTS_MST, referenced through a synonym. IC_LOTS_MST is the inventory lot master table that stores lot and sublot definitions used by Oracle Inventory, Oracle Process Manufacturing, and related supply chain modules. Because the view performs no joins, unions, or aggregations, it is a simple projection of four columns from that master table. This simplicity has two practical consequences: query performance parallels that of a direct table access with a column list, and all filtering, security, and validation logic associated with lot records remains governed by the base table rather than by the view. The synonym reference means the view resolves IC_LOTS_MST through the standard EBS synonym layer, ensuring correct schema redirection in a multi-org or multi-language installation.
Key Columns
- LOT_NO — The lot number, the primary business identifier for a lot record. Frequently used as the returned value in an LOV and as the join key to transaction and on-hand tables.
- SUBLOT_NO — The sublot number, used where inventory is tracked at a finer granularity than the lot itself. Nullable for lot-controlled items that do not use sublots.
- LOT_DESC — The descriptive text associated with the lot. This is the column matched by the search term “lot_desc” and is typically the display field in an LOV, since it carries human-readable context that the numeric or coded lot number may not convey.
- VENDOR_LOT_NO — The supplier-assigned lot number. This column supports receiving, quality, and traceability processes by linking the internal lot identifier to the vendor’s own reference.
Common Use Cases and Queries
Typical usage includes populating lot selection lists in custom forms, driving lot description lookups in reports, and enriching queries that require a readable lot label. The following example retrieves all lots and their descriptions:
SELECT lot_no, sublot_no, lot_desc, vendor_lot_no FROM apps.pmibv_lot_lov_v;
To support a searchable LOV keyed on the description, a query such as the following is common:
SELECT lot_no, lot_desc FROM apps.pmibv_lot_lov_v WHERE UPPER(lot_desc) LIKE UPPER(:p_search || '%');
Where vendor traceability is required, filtering on VENDOR_LOT_NO provides a direct path from a supplier reference to the internal lot. Because the view is read-only, these queries are safe to embed in report definitions, BI Publisher data models, and read-only integration interfaces without risk of unintended data modification.
-
VIEW: APPS.PMIBV_LOT_LOV_V
12.2.2
-
View: PMIBV_LOT_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_LOT_LOV_V, object_name:PMIBV_LOT_LOV_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: PMI LOV View for Lot , implementation_dba_data: APPS.PMIBV_LOT_LOV_V ,
-
VIEW: GMI.IC_LOTS_MST#
12.2.2
-
VIEW: APPS.EDW_OPI_LOTD_LOT_LCV
12.1.1
-
VIEW: APPS.PMIBV_LOT_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_LOT_LOV_V, object_name:PMIBV_LOT_LOV_V, status:VALID,
-
VIEW: APPS.PMIBV_LOT_LOV_V
12.1.1
-
VIEW: GMD.GMD_COA_HEADERS#
12.2.2
-
View: PMIBV_LOT_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_LOT_LOV_V, object_name:PMIBV_LOT_LOV_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: PMI LOV View for Lot , implementation_dba_data: APPS.PMIBV_LOT_LOV_V ,
-
VIEW: GMI.GMI_LOTS_XML_INTERFACE#
12.2.2
-
View: EDW_OPI_LOTD_LOT_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.EDW_OPI_LOTD_LOT_LCV, object_name:EDW_OPI_LOTD_LOT_LCV, status:VALID, product: OPI - Operations Intelligence , description: This is source view to populate Lot Level data in Lot Dimension , implementation_dba_data: APPS.EDW_OPI_LOTD_LOT_LCV ,
-
VIEW: APPS.PMIBV_LOT_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_LOT_LOV_V, object_name:PMIBV_LOT_LOV_V, status:VALID,
-
View: EDW_OPI_LOTD_LOT_LCV
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: This is source view to populate Lot Level data in Lot Dimension , implementation_dba_data: Not implemented in this database ,
-
VIEW: GMD.GMD_COA_HEADERS#
12.2.2
owner:GMD, object_type:VIEW, object_name:GMD_COA_HEADERS#, status:VALID,
-
VIEW: GMI.GMI_LOTS_XML_INTERFACE#
12.2.2
owner:GMI, object_type:VIEW, object_name:GMI_LOTS_XML_INTERFACE#, status:VALID,
-
APPS.EDW_OPI_LOT_MOPM_SZ SQL Statements
12.1.1
-
VIEW: GMI.IC_LOTS_MST#
12.2.2
owner:GMI, object_type:VIEW, object_name:IC_LOTS_MST#, status:VALID,
-
View: IC_ADJS_JNL_VW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ADJS_JNL_VW, object_name:IC_ADJS_JNL_VW, status:VALID, product: GMI - Process Manufacturing Inventory , description: Inventory Adjustment Journal view , implementation_dba_data: APPS.IC_ADJS_JNL_VW ,
-
View: IC_ADJS_JNL_VW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ADJS_JNL_VW, object_name:IC_ADJS_JNL_VW, status:VALID, product: GMI - Process Manufacturing Inventory , description: Inventory Adjustment Journal view , implementation_dba_data: APPS.IC_ADJS_JNL_VW ,
-
TABLE: GMD.GMD_COA_HEADERS
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_COA_HEADERS, object_name:GMD_COA_HEADERS, status:VALID,
-
APPS.GMI_LOTS_PVT SQL Statements
12.1.1
-
APPS.GMI_LOTS_PVT SQL Statements
12.2.2
-
VIEW: APPS.IC_ADJS_JNL_VW
12.1.1
-
TABLE: GMI.GMI_LOTS_XML_INTERFACE
12.2.2
owner:GMI, object_type:TABLE, fnd_design_data:GMI.GMI_LOTS_XML_INTERFACE, object_name:GMI_LOTS_XML_INTERFACE, status:VALID,
-
APPS.GMI_ERES_UTILS SQL Statements
12.2.2
-
TABLE: GMD.GMD_COA_HEADERS
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_COA_HEADERS, object_name:GMD_COA_HEADERS, status:VALID,
-
TABLE: GMI.IC_LOTS_MST
12.1.1
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_LOTS_MST, object_name:IC_LOTS_MST, status:VALID,
-
VIEW: APPS.IC_ADJS_JNL_VW
12.2.2
-
TABLE: GMI.IC_LOTS_MST
12.2.2
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_LOTS_MST, object_name:IC_LOTS_MST, status:VALID,
-
TABLE: GMI.GMI_LOTS_XML_INTERFACE
12.1.1
owner:GMI, object_type:TABLE, fnd_design_data:GMI.GMI_LOTS_XML_INTERFACE, object_name:GMI_LOTS_XML_INTERFACE, status:VALID,
-
APPS.GMI_ERES_UTILS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_OPI_LOT_MOPM_SZ
12.1.1
-
VIEW: APPS.IC_ADJS_JNL_VW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ADJS_JNL_VW, object_name:IC_ADJS_JNL_VW, status:VALID,
-
VIEW: APPS.IC_ADJS_JNL_VW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ADJS_JNL_VW, object_name:IC_ADJS_JNL_VW, status:VALID,
-
PACKAGE: APPS.GMD_COA_DATA_NEW
12.2.2
-
PACKAGE: APPS.GMD_COA_DATA_NEW
12.1.1
-
PACKAGE: APPS.GMD_COA_DATA_OM_NEW
12.2.2
-
PACKAGE: APPS.GMD_COA_DATA_OM
12.1.1
-
PACKAGE: APPS.GMI_LOTS_PUB
12.2.2
-
PACKAGE: APPS.GMI_LOTS_PUB
12.1.1
-
PACKAGE: APPS.GMD_COA_DATA_OM
12.2.2
-
PACKAGE BODY: APPS.GMI_LOTS_PVT
12.1.1
-
PACKAGE: APPS.GMD_COA_DATA_OM_NEW
12.1.1
-
PACKAGE BODY: APPS.GMI_LOTS_PVT
12.2.2
-
APPS.GMD_COA_DATA_OM SQL Statements
12.1.1
-
APPS.GMD_COA_DATA_OM SQL Statements
12.2.2
-
APPS.GMD_COA_DATA_NEW SQL Statements
12.2.2
-
APPS.GMD_COA_DATA_NEW SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GMD_COA_DATA_OM
12.2.2
-
PACKAGE BODY: APPS.GMI_ERES_UTILS
12.2.2
-
PACKAGE BODY: APPS.GMD_COA_DATA_OM
12.1.1