Search Results last_receipt_issue_type
Overview
APPS.INVBV_SERIAL_NUMBERS is a Business Intelligence System (BIS) view in Oracle E-Business Suite, owned by the APPS schema and registered under the FND Design Data reference INV.INVBV_SERIAL_NUMBERS. Its declared status is VALID in both Oracle EBS 12.1.1 and 12.2.2. As its name implies, the view presents a reporting-oriented projection of serial number records maintained in Oracle Inventory, exposing one row per serialized unit together with the descriptive, locational, transactional, and vendor attribution attributes associated with that unit.
Because it is a BIS view rather than a transactional entity, its primary role is to support ad hoc querying, extract/transform/load processes, and integration endpoints that require a stable, denormalized read interface over serial number data. Organizations use it as a presentation layer for serial genealogy, warranty and returns analysis, and vendor accountability reporting without needing to resolve the internal joins of the underlying Inventory tables directly.
Underlying Base Objects
The documented dependency metadata for APPS.INVBV_SERIAL_NUMBERS identifies a single referenced base object: the APPS synonym MTL_SERIAL_NUMBERS, which resolves to the core Inventory serial number table. The view is therefore a direct, read-only reframing of the serial number master data, exposing the columns most relevant to business reporting while preserving the identity of each serialized unit.
The metadata further states that APPS.INVBV_SERIAL_NUMBERS is not referenced by any other database object. This confirms the view is a terminal, consumer-facing object: nothing in the standard EBS schema builds upon it, so changes to or removal of the view cannot cascade into dependent database constructs. Custom code should nevertheless treat it as a supported read surface rather than a target for DML, since BIS views are not intended to be written through.
Key Columns
The view exposes twenty-three columns. The identifiers form the backbone of every query:
- SERIAL_NUMBER (VARCHAR2 30), INVENTORY_ITEM_ID, and ORGANIZATION_ID — the serial itself and the item/organization context in which it is tracked.
- SUBINVENTORY_NAME (VARCHAR2 10) and INVENTORY_LOCATOR_ID — current storage location.
- _LA:SERIAL_NUMBER_STATUS — a descriptive flexfield attribute column carrying the user-defined serial status, with a wide (60-character) SQL*Plus column heading.
- ORIGINAL_UNIT_VENDOR_ID — the vendor identifier recorded against the original receiving unit, the field most often sought for vendor-of-origin reporting. It is exposed as a NUMBER and is complemented by VENDOR_SERIAL_NUMBER (VARCHAR2 30) and VENDOR_LOT_NUMBER (VARCHAR2 30), which retain the supplier's own identifiers.
- ORIGINAL_WIP_ENTITY_ID — the work-in-process job that produced the unit, enabling linkage to manufacturing origin.
- UNIT_INITIALIZATION_DATE, RECEIPT_DATE, and SHIP_DATE — lifecycle timestamps marking creation, receipt, and shipment.
- LAST_TRANSACTION_ID and LAST_RECEIPT_ISSUE_TYPE — the most recent material transaction and its receipt/issue classification.
- Audit columns CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, plus END_ITEM_UNIT_NUMBER (VARCHAR2 30) for end-item unit tracking.
Note that the view returns identifier values rather than decoded names; joins to vendor and item master views are normally required for readable output.
Common Use Cases and Queries
Typical usage includes locating all serials supplied by a given vendor, auditing serials by organization and subinventory, and tracing the lifecycle dates for returns or warranty claims. A basic vendor-origin query, which directly addresses the ORIGINAL_UNIT_VENDOR_ID search term, is:
- SELECT SERIAL_NUMBER, INVENTORY_ITEM_ID, ORGANIZATION_ID, ORIGINAL_UNIT_VENDOR_ID, VENDOR_SERIAL_NUMBER, RECEIPT_DATE FROM APPS.INVBV_SERIAL_NUMBERS WHERE ORIGINAL_UNIT_VENDOR_ID = :vendor_id ORDER BY RECEIPT_DATE DESC;
- SELECT SERIAL_NUMBER, SUBINVENTORY_NAME, _LA:SERIAL_NUMBER_STATUS, SHIP_DATE FROM APPS.INVBV_SERIAL_NUMBERS WHERE ORGANIZATION_ID = :org_id AND SUBINVENTORY_NAME = :subinventory;
- SELECT SERIAL_NUMBER, ORIGINAL_WIP_ENTITY_ID, END_ITEM_UNIT_NUMBER FROM APPS.INVBV_SERIAL_NUMBERS WHERE ORIGINAL_WIP_ENTITY_ID IS NOT NULL;
Because the base object carries a high row count, queries should always be constrained by ORGANIZATION_ID, INVENTORY_ITEM_ID, SERIAL_NUMBER, or date ranges. Filters on unflagged columns such as ORIGINAL_UNIT_VENDOR_ID may benefit from an index or from a supporting materialized view when used in high-volume reporting.
-
VIEW: APPS.INVBV_SERIAL_NUMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_SERIAL_NUMBERS, object_name:INVBV_SERIAL_NUMBERS, status:VALID,
-
VIEW: APPS.INVFV_SERIAL_NUMBERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_SERIAL_NUMBERS, object_name:INVFV_SERIAL_NUMBERS, status:VALID,
-
VIEW: APPS.INVBV_SERIAL_NUMBERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_SERIAL_NUMBERS, object_name:INVBV_SERIAL_NUMBERS, status:VALID,
-
VIEW: APPS.INVFV_SERIAL_NUMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_SERIAL_NUMBERS, object_name:INVFV_SERIAL_NUMBERS, status:VALID,
-
TABLE: INV.INV_DIAG_MSN_TEMP
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.INV_DIAG_MSN_TEMP, object_name:INV_DIAG_MSN_TEMP, status:VALID,
-
TABLE: INV.INV_DIAG_MSN_TEMP
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.INV_DIAG_MSN_TEMP, object_name:INV_DIAG_MSN_TEMP, status:VALID,
-
View: MTL_SERIAL_NUMBERS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_VAL_V, object_name:MTL_SERIAL_NUMBERS_VAL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SERIAL_NUMBERS_VAL_V ,
-
View: MTL_SERIAL_NUMBERS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_VAL_V, object_name:MTL_SERIAL_NUMBERS_VAL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SERIAL_NUMBERS_VAL_V ,
-
VIEW: APPS.MTL_SERIAL_NUMBERS_VAL_V
12.1.1
-
VIEW: APPS.MTL_SERIAL_NUMBERS_VAL_V
12.2.2
-
View: INVBV_SERIAL_NUMBERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_SERIAL_NUMBERS, object_name:INVBV_SERIAL_NUMBERS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_SERIAL_NUMBERS ,
-
VIEW: INV.MTL_SERIAL_NUMBERS#
12.2.2
-
View: INVBV_SERIAL_NUMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_SERIAL_NUMBERS, object_name:INVBV_SERIAL_NUMBERS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_SERIAL_NUMBERS ,
-
APPS.WIP_SERIAL_NUMBER_CLEANUP SQL Statements
12.2.2
-
View: INVFV_SERIAL_NUMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_SERIAL_NUMBERS, object_name:INVFV_SERIAL_NUMBERS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_SERIAL_NUMBERS ,
-
APPS.WIP_SERIAL_NUMBER_CLEANUP SQL Statements
12.1.1
-
VIEW: APPS.MTL_SERIAL_NUMBERS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_VAL_V, object_name:MTL_SERIAL_NUMBERS_VAL_V, status:VALID,
-
VIEW: APPS.MTL_SERIAL_NUMBERS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_VAL_V, object_name:MTL_SERIAL_NUMBERS_VAL_V, status:VALID,
-
View: INVFV_SERIAL_NUMBERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_SERIAL_NUMBERS, object_name:INVFV_SERIAL_NUMBERS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_SERIAL_NUMBERS ,
-
VIEW: APPS.MTL_SERIAL_NUMBERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_ALL_V, object_name:MTL_SERIAL_NUMBERS_ALL_V, status:VALID,
-
VIEW: APPS.MTL_SERIAL_NUMBERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_ALL_V, object_name:MTL_SERIAL_NUMBERS_ALL_V, status:VALID,
-
VIEW: INV.MTL_SERIAL_NUMBERS#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_SERIAL_NUMBERS#, status:VALID,
-
View: MTL_SERIAL_NUMBERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_ALL_V, object_name:MTL_SERIAL_NUMBERS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SERIAL_NUMBERS_ALL_V ,
-
View: MTL_SERIAL_NUMBERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SERIAL_NUMBERS_ALL_V, object_name:MTL_SERIAL_NUMBERS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SERIAL_NUMBERS_ALL_V ,
-
PACKAGE BODY: APPS.WIP_SERIAL_NUMBER_CLEANUP
12.1.1
-
PACKAGE BODY: APPS.WIP_SERIAL_NUMBER_CLEANUP
12.2.2
-
APPS.WIP_UTILITIES SQL Statements
12.1.1
-
APPS.WIP_UTILITIES SQL Statements
12.2.2
-
TABLE: INV.MTL_SERIAL_NUMBERS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SERIAL_NUMBERS, object_name:MTL_SERIAL_NUMBERS, status:VALID,
-
APPS.INV_SERIAL_NUMBER_PUB SQL Statements
12.1.1
-
TABLE: INV.MTL_SERIAL_NUMBERS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SERIAL_NUMBERS, object_name:MTL_SERIAL_NUMBERS, status:VALID,
-
APPS.INV_EAM_ASSET_NUMBER_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.WIP_SERIAL_NUMBER_CLEANUP
12.1.1
-
APPS.INV_EAM_ASSET_NUMBER_PVT SQL Statements
12.1.1
-
APPS.INV_CYC_SERIALS SQL Statements
12.1.1
-
PACKAGE: APPS.WIP_SERIAL_NUMBER_CLEANUP
12.2.2
-
APPS.INV_SERIAL_NUMBER_PUB SQL Statements
12.2.2
-
APPS.WIP_MTL_TXNS_TEMP_CLEANUP SQL Statements
12.2.2
-
APPS.WIP_MTL_TXNS_TEMP_CLEANUP SQL Statements
12.1.1
-
APPS.WMS_ASN_LOT_ATT SQL Statements
12.1.1
-
APPS.WMS_ASN_LOT_ATT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.INV_EAM_ASSET_NUMBER_PVT
12.1.1
-
PACKAGE BODY: APPS.INV_EAM_ASSET_NUMBER_PVT
12.2.2
-
APPS.INV_CYC_SERIALS SQL Statements
12.2.2
-
APPS.WMS_UT_PKG SQL Statements
12.1.1
-
APPS.WMS_UT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.INV_SERIAL_NUMBER_PUB
12.1.1
-
PACKAGE BODY: APPS.INV_CYC_SERIALS
12.1.1
-
PACKAGE BODY: APPS.INV_SERIAL_NUMBER_PUB
12.2.2
-
PACKAGE BODY: APPS.WIP_MTL_TXNS_TEMP_CLEANUP
12.1.1