Search Results invfv_serial_numbers
Overview
INVFV_SERIAL_NUMBERS is an APPS-owned read-only view that presents a consolidated, report-friendly projection of serial number data held in Oracle Inventory. In Oracle EBS 12.1.1 and 12.2.2 it is classified as a retrofitted object within the INV (Inventory) product family, meaning it was reconstructed during the transition to the later technology stack while preserving its original column interface and semantics. The view joins the primary serial master table MTL_SERIAL_NUMBERS to a set of descriptive dimension tables, so a single row returns the serial number together with its item, organization, subinventory, locator, revision, lot, status, and source documents.
Its role is principally that of a reporting and integration surface. Because the view supplies translated key flexfield and lookup columns through embedded flexfield and lookup syntax (for example the inventory item name, inventory location name, and serial number status), it is commonly used by Oracle Discoverer worksheets, custom reporting, and downstream interfaces that need human-readable serial attributes without re-deriving flexfield combinations or lookup meanings. The view is defined WITH READ ONLY and applies a security predicate on CURRENT_ORGANIZATION_ID, restricting exposure to serial records consistent with organization-level access.
Underlying Base Objects
The view is defined over the following documented objects, most referenced through APPS synonyms:
- MTL_SERIAL_NUMBERS (synonym) — the driving table; provides the serial number itself and all current-state attributes.
- MTL_SYSTEM_ITEMS (synonym) — joined on inventory item and organization to validate and describe the item.
- MTL_PARAMETERS (synonym) — supplies the organization context; the join on ORGANIZATION_ID determines the current organization.
- HR_ALL_ORGANIZATION_UNITS (synonym) — provides the organization name displayed as ORGANIZATION_NAME.
- MTL_ITEM_LOCATIONS (synonym) — outer-joined on organization and locator to supply the inventory location description.
- WIP_ENTITIES (synonym) — outer-joined on ORIGINAL_WIP_ENTITY_ID to resolve the originating work order name.
- PO_VENDORS (view) — outer-joined on ORIGINAL_UNIT_VENDOR_ID to supply the vendor name for received serials.
All dimension joins are anchored on MSN.CURRENT_ORGANIZATION_ID, so serials are reported in the organization in which they currently reside rather than their originating organization.
Key Columns
- SERIAL_NUMBER — the unique serial identifier within the organization.
- INVENTORY_ITEM_ID, "_KF:INVENTORY_ITEM_NAME" — item identifier and the flexfield-derived item name.
- ORGANIZATION_ID, ORGANIZATION_CODE, ORGANIZATION_NAME — the current owning organization.
- UNIT_INITIALIZATION_DATE, SUBINVENTORY_NAME, INVENTORY_LOCATOR_ID, "_KF:INVENTORY_LOCATION_NAME" — initialisation date and current storage location.
- REVISION, LOT_NUMBER — revision and lot context for the unit.
- "_LA:SERIAL_NUMBER_STATUS" — the decoded serial status meaning from the SERIAL_NUM_STATUS lookup.
- RECEIPT_DATE, SHIP_DATE — receipt and shipment completion dates.
- ORIGINAL_WIP_ENTITY_ID, ORIGINAL_WIP_ENTITY_NAME — originating work order for manufactured units.
- ORIGINAL_UNIT_VENDOR_ID, VENDOR_NAME, VENDOR_SERIAL_NUMBER, VENDOR_LOT_NUMBER — supplier traceability for purchased units.
- LAST_TRANSACTION_ID, LAST_RECEIPT_ISSUE_TYPE — the most recent material transaction and its type.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns.
- END_ITEM_UNIT_NUMBER — the end-item unit association where applicable.
Common Use Cases and Queries
Typical uses include serial genealogy and traceability reports, inventory on-hand serial listings per organization, warranty and vendor-receipt reconciliation, and extracts feeding external serial registries. Because the view already resolves flexfield and lookup values, it is often preferred over querying MTL_SERIAL_NUMBERS directly.
Listing current serials for an item in an organization:
SELECT serial_number, "_KF:INVENTORY_ITEM_NAME",
organization_code, subinventory_name,
"_KF:INVENTORY_LOCATION_NAME",
"_LA:SERIAL_NUMBER_STATUS", lot_number
FROM apps.invfv_serial_numbers
WHERE inventory_item_id = :item_id
AND organization_id = :org_id
ORDER BY serial_number;
Tracing vendor-received serials:
SELECT serial_number, vendor_name, vendor_serial_number,
vendor_lot_number, receipt_date
FROM apps.invfv_serial_numbers
WHERE original_unit_vendor_id IS NOT NULL
AND organization_id = :org_id;
Identifying serials produced by a work order:
SELECT serial_number, original_wip_entity_name,
end_item_unit_number, completion_date
FROM apps.invfv_serial_numbers
WHERE original_wip_entity_id = :wip_entity_id;
Queries should always filter on ORGANIZATION_ID to benefit from the view's organization security predicate and to avoid unnecessary data volume.
-
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 ,
-
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.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,
-
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,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.MTL_ITEM_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_LOCATIONS, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_LOCATIONS, status:VALID,
-
SYNONYM: APPS.MTL_SERIAL_NUMBERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SERIAL_NUMBERS, status:VALID,
-
SYNONYM: APPS.MTL_SERIAL_NUMBERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SERIAL_NUMBERS, status:VALID,
-
SYNONYM: APPS.WIP_ENTITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_ENTITIES, status:VALID,
-
SYNONYM: APPS.WIP_ENTITIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_ENTITIES, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2