Search Results inventory_item
Overview
WMS_LPN_CONTENTS_SERIAL_V is an Oracle E-Business Suite (EBS) database view owned by the APPS schema and defined in the Warehouse Management (WMS) product module. It presents the contents of License Plate Numbers (LPNs) — the physical containers, pallets, and cartons tracked by Oracle Warehouse Management — but restricts its output to inventory items that are serial controlled. In Oracle EBS 12.1.1 and 12.2.2, this view is a reporting and integration construct rather than a transactional entity; it exposes a denormalized, read-only projection that joins LPN header data with serial number records and item master attributes. Because serial-controlled material requires unit-level traceability, the view serves as a convenient access point for queries that must reconcile a container with the specific serial numbers it holds, along with the item's control attributes such as lot control and locator control. The view text is documented in the ETRM repository as valid and implemented under APPS, and it is referenced throughout warehouse reporting, label printing, and third-party integration logic where serialized container contents must be resolved without navigating the base tables directly.
Underlying Base Objects
The view is defined over three documented base objects, all exposed to APPS as synonyms:
- MTL_SERIAL_NUMBERS — aliased as WLC. This is the driving table, supplying serial number, revision, lot number, current status, cost group, and the current organization and locator identifiers for each serialized unit.
- WMS_LICENSE_PLATE_NUMBERS — aliased twice as WLP and WLP1. The first instance joins on the LPN identifier to return the parent license plate number, organization, locator, subinventory, and the outermost LPN identifier. The second instance resolves the outermost LPN identifier to its license plate number via the condition WLP.OUTERMOST_LPN_ID = WLP1.LPN_ID.
- MTL_SYSTEM_ITEMS_KFV — aliased as MSI. The key flexfield view of the item master, joined on organization and inventory item identifiers, supplying the padded concatenated item segments, description, primary unit of measure, lot control code, and location control code.
The join is an inner join throughout. A serial number only appears when its LPN_ID resolves to a valid license plate record, and item attributes are only returned when the item exists in the organization recorded on the serial number. This means the view reports serialized contents strictly where full LPN, serial, and item context coexist.
Key Columns
- PARENT_LPN_ID / PARENT_LICENSE_PLATE_NUMBER — the immediate container identity; the LPN to which the serial number is directly assigned.
- OUTERMOST_LPN_ID / OUTERMOST_LICENSE_PLATE_NUMBER — the top-level container in a nested LPN hierarchy, enabling queries that flatten multi-level pallet structures to a single reporting key.
- INVENTORY_ITEM_ID / INVENTORY_ITEM / ITEM_DESCRIPTION — the item surrogate key, concatenated flexfield segments, and description from MTL_SYSTEM_ITEMS_KFV.
- REVISION, LOT_NUMBER, SERIAL_NUMBER — the unit-level identifiers required for serialized traceability.
- CURRENT_STATUS — the current status of the serial number record, such as defined, in inventory, or issued.
- CURRENT_ORGANIZATION_ID, CURRENT_LOCATOR_ID, CURRENT_SUBINVENTORY_CODE — the current physical placement of the container as carried by the LPN header.
- ITEM_LOT_CONTROL — from MSI.LOT_CONTROL_CODE, indicating whether the item is lot controlled.
- ITEM_LOCATOR_CONTROL — from MSI.LOCATION_CONTROL_CODE, the item's locator control setting. This column is of particular interest to users searching on the term item_locator_control, since it exposes the item-level locator control code directly from the view rather than requiring a separate join to the item master.
Common Use Cases and Queries
Typical scenarios include auditing the serialized contents of a specific container, tracing which outermost pallet holds a given serial number, and validating that items with specific locator control settings are correctly placed. A representative query returns all serialized contents of a parent LPN:
SELECT parent_license_plate_number, serial_number, inventory_item, current_status FROM wms_lpn_contents_serial_v WHERE parent_license_plate_number = :lpn;
A second pattern lists serialized contents filtered by locator control, directly using the column that matches the search term:
SELECT outermost_license_plate_number, inventory_item, item_locator_control, current_locator_id FROM wms_lpn_contents_serial_v WHERE item_locator_control = 2;
Because the view is read-only and denormalized, it is well suited to ad hoc reporting, custom concurrent programs, and integration extracts. Performance depends on the underlying joins to MTL_SERIAL_NUMBERS and the license plate tables, so queries should filter on indexed columns such as LPN identifiers or organization and item identifiers wherever possible.
-
View: WMS_LPN_CONTENTS_SERIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_SERIAL_V, object_name:WMS_LPN_CONTENTS_SERIAL_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( only serial controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_SERIAL_V ,
-
View: WMS_LPN_CONTENTS_SERIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_SERIAL_V, object_name:WMS_LPN_CONTENTS_SERIAL_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( only serial controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_SERIAL_V ,
-
View: WMS_LPN_CONTENTS_LOT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_LOT_V, object_name:WMS_LPN_CONTENTS_LOT_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( only lot controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_LOT_V ,
-
View: WMS_LPN_CONTENTS_LOT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_LOT_V, object_name:WMS_LPN_CONTENTS_LOT_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( only lot controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_LOT_V ,
-
View: WMS_LPN_CONTENTS_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_DETAIL_V, object_name:WMS_LPN_CONTENTS_DETAIL_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( includes detail lot and serial controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_DETAIL_V ,
-
View: WMS_LPN_CONTENTS_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_DETAIL_V, object_name:WMS_LPN_CONTENTS_DETAIL_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( includes detail lot and serial controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_DETAIL_V ,