Search Results sublot_number
Overview
WSH_ITM_SHIPITEMS_V is an Oracle E-Business Suite view owned by the APPS schema within the Shipping Execution (WSH) product. According to its documented description, it functions as a temporary presentation object that returns the contents of the base view WSH_SS_SHIPITEMS_V together with dummy records. This design pattern exists to prevent data retrieval problems when the underlying data set is consumed through Oracle XML SQL Utility (XSU), which can fail or produce inconsistent output when a result set returns zero rows or is otherwise unbounded. By injecting placeholder rows, the view guarantees that XSU-based integrations and reporting layers always receive a well-formed result structure.
The view is most commonly encountered in shipping documentation, delivery detail reporting, and XML-based outbound interfaces where shipment line attributes — item numbers, quantities, lots, serials, and freight classifications — must be extracted in a stable format. The presence of the SUBLOT_NUMBER column makes this view particularly relevant to environments handling lot and sublot controlled inventory, including process manufacturing and regulated supply chains.
Underlying Base Objects
The documented base objects referenced by WSH_ITM_SHIPITEMS_V span several schemas and object types:
- WSH_DELIVERY_DETAILS (synonym) — the primary source of delivery line detail, aliased as WDD.
- WSH_DELIVERY_ASSIGNMENTS_V (view) — provides delivery-to-detail assignment context, aliased as WDA.
- WSH_NEW_DELIVERIES (synonym) — delivery header information.
- WSH_SERIAL_NUMBERS (synonym) — serial number ranges, aliased as WSN.
- MTL_SYSTEM_ITEMS_KFV (synonym) — concatenated item segment values, aliased as MSIK.
- MTL_CUSTOMER_ITEMS (synonym) — customer-specific item cross-references, aliased as MCI.
- MTL_CATEGORY_SETS_VL (view) — category set names, used as MCSV1 (freight class) and MCSV2 (commodity code).
- PO_HAZARD_CLASSES_VL (view) — hazard classification values, aliased as PHCV.
The view joins these objects on delivery detail identifiers, inventory item identifiers, and customer associations to produce a denormalized shipping line record suitable for external consumption.
Key Columns
- ITEM_NUMBER, ITEM_DESCRIPTION, REVISION — item identity from MTL_SYSTEM_ITEMS_KFV and delivery detail.
- REQUESTED_QTY / REQUESTED_QTY_UOM, ORDERED_QTY, SHIPPED_QTY, BACKORDERED_QTY — quantity metrics derived from requested and shipped quantities.
- SUBLOT_NUMBER and LOT_NUMBER — lot and sublot identifiers from WSH_DELIVERY_DETAILS; the SUBLOT_NUMBER column is the attribute most frequently queried by users.
- FROM_SERIAL_NUMBER / TO_SERIAL_NUMBER — resolved via NVL across WSH_SERIAL_NUMBERS and delivery detail.
- DELIVERY_DETAIL_ID, DELIVERY_ID, SOURCE_LINE_ID, PARENT_DELIVERY_DETAIL_ID — key identifiers linking the record to delivery and order structures.
- FREIGHT_CLASS_CAT and COMMODITY_CODE_CAT — category set names.
- HAZARD_CLASS, COUNTRY_OF_ORIGIN, OWNERSHIP_CODE — compliance and trade attributes.
- VOLUME, NET_WEIGHT, and their UOM codes — shipment measurement data.
- PARTIAL_SHIPMENT, SHIPMENT_PRIORITY_CODE, SHIP_SET_ID — shipment classification and grouping.
Common Use Cases and Queries
The view is typically queried for shipment documentation, label generation, and XML extracts. A representative query filtering by sublot, the term most often searched, follows:
- Retrieving shipment lines for a specific delivery:
SELECT item_number, lot_number, sublot_number, shipped_qty FROM wsh_itm_shipitems_v WHERE delivery_id = :p_delivery_id; - Identifying sublot-controlled shipments:
SELECT delivery_detail_id, item_number, lot_number, sublot_number FROM wsh_itm_shipitems_v WHERE sublot_number IS NOT NULL; - Extracting backordered quantities for customer notification:
SELECT item_number, ordered_qty, shipped_qty, backordered_qty FROM wsh_itm_shipitems_v WHERE backordered_qty > 0;
Because the view includes dummy records for XSU stability, consumers should filter on valid delivery detail identifiers and exclude placeholder rows where aggregations are performed.
-
View: WSH_ITM_SHIPITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPITEMS_V, object_name:WSH_ITM_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_SHIPITEMS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_SHIPITEMS_V ,
-
View: WSH_ITM_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPITEMS_V, object_name:WSH_ITM_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_SHIPITEMS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_SHIPITEMS_V ,
-
View: WSH_ITM_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_CONTAINERS_V, object_name:WSH_ITM_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_CONTAINERS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_CONTAINERS_V ,
-
View: WSH_ITM_CONTAINERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_CONTAINERS_V, object_name:WSH_ITM_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_CONTAINERS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_CONTAINERS_V ,
-
View: WSHBV_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERY_DETAILS, object_name:WSHBV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERY_DETAILS ,
-
View: WSHBV_DELIVERY_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERY_DETAILS, object_name:WSHBV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERY_DETAILS ,
-
View: WSHFV_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Details. , implementation_dba_data: APPS.WSHFV_DELIVERY_DETAILS ,
-
View: WSHFV_DELIVERY_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Details. , implementation_dba_data: APPS.WSHFV_DELIVERY_DETAILS ,