Search Results vendor_serial_number
Overview
WSH_PICK_SERIAL_TEMP_V is a lightweight view owned by the APPS schema within the Oracle E-Business Suite Shipping Execution (WSH) module. Its status is documented as VALID in both the 12.1.1 and 12.2.2 releases. The view exists to expose serial number data that is staged during the picking process, presenting a simple, denormalized projection over the temporary serial number staging area.
The view is deliberately narrow in scope. Rather than joining across multiple serial control and inventory tables, it surfaces a minimal set of three columns drawn from a single underlying staging object. This design reflects its purpose: to provide the shipping/picking workflow a stable, pre-shaped row source for serial numbers that have been recorded against a pick transaction but that have not yet been committed into the permanent serial number records. Because it contains only temporary staging data, the view is typically read transiently during pick confirmation, pick release, or serial capture processing rather than used as a long-term reporting source.
Underlying Base Objects
The view is defined entirely over a single base object: MTL_SERIAL_NUMBERS_TEMP, accessed through its SYNONYM in the APPS schema. No additional joins, unions, filters, or aggregations are present in the view text. The documented definition is:
SELECT TRANSACTION_TEMP_ID SERIAL_TXN_TEMP_ID , VENDOR_SERIAL_NUMBER , 'UNPICKED' PICK_STATUS FROM MTL_SERIAL_NUMBERS_TEMP
Three important observations follow from this definition. First, the view is a pure column-renaming projection — the only transformation applied is the aliasing of TRANSACTION_TEMP_ID to SERIAL_TXN_TEMP_ID and the introduction of the literal 'UNPICKED' for PICK_STATUS. Second, because PICK_STATUS is a hard-coded literal, every row returned by the view carries the same status value; the view therefore represents only the un-picked state of staged serials. Third, MTL_SERIAL_NUMBERS_TEMP is a temporary/staging table, so the row population is transitory and tied to the lifecycle of a pick transaction. Serial records move out of this staging area into the permanent inventory serial tables once the transaction is processed, at which point they no longer appear through this view.
Key Columns
- SERIAL_TXN_TEMP_ID — Aliased from TRANSACTION_TEMP_ID on the base table. This is the internal identifier for the staged serial transaction row and serves as the effective primary key for correlating a row back to its originating pick transaction.
- VENDOR_SERIAL_NUMBER — The externally supplied vendor serial number captured for the serialized item. This is the column most directly relevant to the user search term "vendor_serial_number," since it carries the manufacturer/vendor-assigned serial value into the picking workflow.
- PICK_STATUS — A literal column that always returns the value 'UNPICKED'. It provides a constant status indicator so that consumers of the view can treat the result set uniformly as representing staged, not-yet-picked serials.
Common Use Cases and Queries
The view is most useful when you need to inspect or reconcile vendor serial numbers that are currently staged for picking against serialized inventory. A basic retrieval of all staged serials is:
SELECT serial_txn_temp_id,
vendor_serial_number,
pick_status
FROM apps.wsh_pick_serial_temp_v;
To locate a specific vendor serial — the typical lookup implied by the search term "vendor_serial_number" — a filtered query is used:
SELECT serial_txn_temp_id,
vendor_serial_number
FROM apps.wsh_pick_serial_temp_v
WHERE vendor_serial_number = :p_vendor_serial_number;
Because the view exposes the staging row identifier, it can be joined back to MTL_SERIAL_NUMBERS_TEMP to obtain additional attributes not projected by the view, or correlated to pick transaction data to trace which delivery or move order triggered the serial capture. Practical scenarios include troubleshooting pick confirmations that fail serial validation, verifying that vendor serials were correctly captured before staging records are purged, and building diagnostic reports during shipping integration testing. As the underlying object is a temporary table, queries should always be run while the pick transaction is active or immediately after capture; historical reporting should instead query the committed inventory serial number tables.
-
View: WSH_PICK_SERIAL_TEMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICK_SERIAL_TEMP_V, object_name:WSH_PICK_SERIAL_TEMP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PICK_SERIAL_TEMP_V ,
-
VIEW: APPS.WSH_PICK_SERIAL_TEMP_V
12.1.1
-
View: WSH_PICK_SERIAL_TEMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICK_SERIAL_TEMP_V, object_name:WSH_PICK_SERIAL_TEMP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PICK_SERIAL_TEMP_V ,
-
VIEW: APPS.WSH_PICK_SERIAL_TEMP_V
12.2.2
-
VIEW: WMS.WMS_SERIAL_NUMBERS_TRACE#
12.2.2
-
View: CUN_ITEMS_V
12.1.1
product: CUN - Network Logistics - NATS (obsolete) , description: This view contains item unit information from the Network Logistics system , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_PICK_SERIAL_TEMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICK_SERIAL_TEMP_V, object_name:WSH_PICK_SERIAL_TEMP_V, status:VALID,
-
APPS.WIP_SERIAL_TEMP_CLEANUP SQL Statements
12.1.1
-
View: CUN_ITEMS_V
12.2.2
product: CUN - Network Logistics - NATS (Obsolete) , description: This view contains item unit information from the Network Logistics system , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_PICK_SERIAL_TEMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICK_SERIAL_TEMP_V, object_name:WSH_PICK_SERIAL_TEMP_V, status:VALID,
-
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,
-
APPS.WIP_SERIAL_TEMP_CLEANUP SQL Statements
12.2.2
-
VIEW: INV.MTL_EAM_ASSET_NUM_INTERFACE#
12.2.2
-
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,
-
APPS.CSP_PP_UTIL SQL Statements
12.2.2
-
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: 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: INV.MTL_SERIAL_NUMBERS_INTERFACE#
12.2.2
-
View: CUN_NON_SERIALIZED_ITEMS_V
12.1.1
product: CUN - Network Logistics - NATS (obsolete) , description: This view selects details of Non Serialized NL tracked Items. , implementation_dba_data: Not implemented in this database ,
-
View: CUN_NON_SERIALIZED_ITEMS_V
12.2.2
product: CUN - Network Logistics - NATS (Obsolete) , description: This view selects details of Non Serialized NL tracked Items. , implementation_dba_data: Not implemented in this database ,
-
VIEW: INV.MTL_SERIAL_NUMBERS_TEMP#
12.2.2
-
VIEW: APPS.MTL_SERIAL_NUMBERS_VAL_V
12.1.1
-
VIEW: APPS.MTL_SERIAL_NUMBERS_VAL_V
12.2.2
-
APPS.CSP_PP_UTIL SQL Statements
12.1.1
-
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: INV.MTL_SERIAL_NUMBERS#
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: WMS.WMS_SERIAL_NUMBERS_TRACE#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_SERIAL_NUMBERS_TRACE#, status:VALID,
-
APPS.WIP_SERIAL_NUMBER_CLEANUP SQL Statements
12.2.2
-
APPS.WSH_TRXSN_HANDLER SQL Statements
12.1.1
-
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.1.1
-
PACKAGE BODY: APPS.WIP_SERIAL_TEMP_CLEANUP
12.2.2
-
PACKAGE BODY: APPS.WIP_SERIAL_TEMP_CLEANUP
12.1.1
-
APPS.WSH_TRXSN_HANDLER 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 ,
-
TABLE: APPS.MTL_MSNT_BACKUP
12.1.1
owner:APPS, object_type:TABLE, object_name:MTL_MSNT_BACKUP, 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: INV.MTL_EAM_ASSET_NUM_INTERFACE#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_EAM_ASSET_NUM_INTERFACE#, status:VALID,
-
APPS.INV_EXPRESS_PICK_PUB SQL Statements
12.1.1
-
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,
-
APPS.INV_EXPRESS_PICK_PUB SQL Statements
12.2.2
-
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,
-
APPS.WSM_SERIAL_SUPPORT_GRP SQL Statements
12.2.2
-
VIEW: INV.MTL_SERIAL_NUMBERS_INTERFACE#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_SERIAL_NUMBERS_INTERFACE#, status:VALID,
-
APPS.WSM_SERIAL_SUPPORT_GRP SQL Statements
12.1.1
-
View: CUN_SERIALIZED_UNITS_V
12.2.2
product: CUN - Network Logistics - NATS (Obsolete) , description: This view is for NL Serialized Items , implementation_dba_data: Not implemented in this database ,
-
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,