Search Results load_sequence_number
Overview
APPS.WSHBV_PICK_LINE_DETAIL is a reporting and integration-oriented view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that exposes detailed picking information for outbound logistics. The view is a column-renamed projection of the picking line detail data maintained by Oracle Shipping Execution, and it is intended to give downstream consumers — reports, interfaces, and custom extensions — a stable, business-friendly presentation of the underlying picking records.
The view does not modify or aggregate its source; it presents a single row per picking line detail record. Notably, it applies aliasing to several columns so that the exposed names differ from the physical column names (for example, SCHEDULE_DATE becomes PICK_SCHEDULE_DATE, SCHEDULE_LEVEL becomes SCHEDULE_CONTROL_LEVEL, TRANSACTABLE_FLAG becomes INVENTORY_TRANSACTABLE_FLAG, DPW_ASSIGNED_FLAG becomes DEPARTURE_PLAN_ASSIGNED_FLAG, and LOAD_SEQ_NUMBER becomes LOAD_SEQUENCE_NUMBER). This aliasing is the key reason a user searching for load_sequence_number is directed to this view: the underlying database column is LOAD_SEQ_NUMBER, but the view exposes it under the more descriptive name LOAD_SEQUENCE_NUMBER.
Underlying Base Objects
According to the documented metadata, the view is defined over the base object SO_PICKING_LINE_DETAILS, which is referenced through a synonym. The view text references this table with the alias SPLD, selecting columns directly from it without joins to other tables in the projection. Consequently, WSHBV_PICK_LINE_DETAIL inherits the granularity and transaction semantics of SO_PICKING_LINE_DETAILS: one row for each picking line detail, which typically corresponds to a specific lot, serial, revision, or location assignment within a picking line.
Key Columns
- PICKING_LINE_DETAIL_ID — Primary identifier for the picking line detail record.
- PICKING_LINE_ID — Foreign reference to the parent picking line.
- WAREHOUSE_ID / SUBINVENTORY / INVENTORY_LOCATION_ID — Physical sourcing context for the picked material.
- REQUESTED_QUANTITY and SHIPPED_QUANTITY — Quantities demanded versus actually shipped.
- SERIAL_NUMBER, REVISION, CUSTOMER_REQUESTED_LOT_FLAG — Item instance and lot attributes.
- PICK_SCHEDULE_DATE (from
SCHEDULE_DATE) and SCHEDULE_CONTROL_LEVEL (fromSCHEDULE_LEVEL) — Scheduling attributes for the pick. - DEMAND_ID, DEMAND_CLASS_CODE, SUPPLY_SOURCE_TYPE, SUPPLY_SOURCE_HEADER_ID — Demand and supply linkage.
- DELIVERY_ID and DEPARTURE_ID — Association with delivery and departure planning.
- LOAD_SEQUENCE_NUMBER (from
LOAD_SEQ_NUMBER) — Sequencing used to order material placement onto the load; this is the column most relevant to the reported search. - DEPARTURE_PLAN_ASSIGNED_FLAG (from
DPW_ASSIGNED_FLAG) — Indicates departure plan worksheet assignment. - RELEASED_FLAG, RESERVABLE_FLAG, INVENTORY_TRANSACTABLE_FLAG (from
TRANSACTABLE_FLAG) — Status and eligibility flags. - PICK_SLIP_NUMBER, CONTAINER_ID, MASTER_CONTAINER_ITEM_ID, DETAIL_CONTAINER_ITEM_ID, MOVEMENT_ID, TRANSACTION_TEMP_ID — Documentation and containerization references.
- Standard WHO columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, PROGRAM_ID, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical uses include pick confirmation reports, load sequencing/loading worksheets, shipping manifestation extracts, and custom integrations that need load order. A query retrieving load sequence information for a given delivery might read:
SELECT picking_line_detail_id, picking_line_id, delivery_id, departure_id,
load_sequence_number, requested_quantity, shipped_quantity, pick_slip_number
FROM apps.wshbv_pick_line_detail
WHERE delivery_id = :p_delivery_id
ORDER BY load_sequence_number;
To list all pick details belonging to a pick slip ordered by load sequence:
SELECT pick_slip_number, load_sequence_number, serial_number,
inventory_transactable_flag, released_flag
FROM apps.wshbv_pick_line_detail
WHERE pick_slip_number = :p_pick_slip
ORDER BY load_sequence_number;
Because the view renames LOAD_SEQ_NUMBER to LOAD_SEQUENCE_NUMBER, references to load_sequence_number should target this view or its synonym alias, not the underlying table column name. When the total row count is not required, it is also common to join the view to WSH_DELIVERY_DETAILS or WSH_DELIVERIES on delivery_id for enriched shipment reporting.
-
VIEW: APPS.WSHBV_PICK_LINE_DETAIL
12.1.1
-
View: WSHBV_PICK_LINE_DETAIL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE_DETAIL, object_name:WSHBV_PICK_LINE_DETAIL, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_LINE_DETAIL ,
-
VIEW: APPS.WSH_OPSM_ASN_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_ITEM_DETAILS_V, object_name:WSH_OPSM_ASN_ITEM_DETAILS_V, status:VALID,
-
View: WSH_DSNO_ITEM_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEM_DETAILS_V, object_name:WSH_DSNO_ITEM_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEM_DETAILS_V ,
-
View: WSHBV_PICK_LINE_DETAIL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE_DETAIL, object_name:WSHBV_PICK_LINE_DETAIL, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_LINE_DETAIL ,
-
VIEW: APPS.WSHBV_PICK_LINE_DETAIL
12.2.2
-
VIEW: APPS.WSHBV_PICK_LINE_DETAIL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE_DETAIL, object_name:WSHBV_PICK_LINE_DETAIL, status:VALID,
-
View: WSH_DSNO_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEM_DETAILS_V, object_name:WSH_DSNO_ITEM_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEM_DETAILS_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.WSHBV_PICK_LINE_DETAIL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE_DETAIL, object_name:WSHBV_PICK_LINE_DETAIL, status:VALID,
-
View: ECE_DSNO_ITEM_DETAILS_V
12.2.2
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: CLN_WSH_SS_SHIPITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_WSH_SS_SHIPITEMS_V, object_name:CLN_WSH_SS_SHIPITEMS_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View of delivery line details , implementation_dba_data: APPS.CLN_WSH_SS_SHIPITEMS_V ,
-
VIEW: APPS.WSH_OPSM_ASN_ITEM_DETAILS_V
12.2.2
-
VIEW: APPS.WSH_DSNO_ITEM_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEM_DETAILS_V, object_name:WSH_DSNO_ITEM_DETAILS_V, status:VALID,
-
View: IGFBV_STUDENT_AUTHORIZATIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Student Work Authorizations , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_DSNO_ITEM_DETAILS_V
12.1.1
-
View: IGFBV_STUDENT_PAYROLL_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Student Payroll Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_DSNO_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEM_DETAILS_V, object_name:WSH_DSNO_ITEM_DETAILS_V, status:VALID,
-
View: IGFBV_STUDENT_PAYROLL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_PAYROLL_DETAILS, object_name:IGFBV_STUDENT_PAYROLL_DETAILS, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Student Payroll Details , implementation_dba_data: APPS.IGFBV_STUDENT_PAYROLL_DETAILS ,
-
VIEW: APPS.IGFBV_STUDENT_PAYROLL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_PAYROLL_DETAILS, object_name:IGFBV_STUDENT_PAYROLL_DETAILS, status:VALID,
-
View: CLN_WSH_SS_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_WSH_SS_SHIPITEMS_V, object_name:CLN_WSH_SS_SHIPITEMS_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View of delivery line details , implementation_dba_data: APPS.CLN_WSH_SS_SHIPITEMS_V ,
-
View: IGS_PR_STU_ACAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STU_ACAD_V, object_name:IGS_PR_STU_ACAD_V, status:VALID, product: IGS - Student System , description: Application view for academic information of a student , implementation_dba_data: APPS.IGS_PR_STU_ACAD_V ,
-
VIEW: APPS.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,
-
View: WSH_SS_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPITEMS_V, object_name:WSH_SS_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPITEMS_V ,
-
View: IGS_PR_STU_ACAD_V
12.2.2
product: IGS - Student System (Obsolete) , description: Application view for academic information of a student , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_STUDENT_FWS_AWAD_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Student Work Study Award Details , implementation_dba_data: Not implemented in this database ,
-
View: WSH_STND_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_SHIPITEMS_V, object_name:WSH_STND_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_SHIPITEMS_V ,
-
VIEW: APPS.IGFBV_STUDENT_FWS_AWAD_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_FWS_AWAD_DETAILS, object_name:IGFBV_STUDENT_FWS_AWAD_DETAILS, status:VALID,
-
View: IGFBV_STUDENT_AUTHORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_AUTHORIZATIONS, object_name:IGFBV_STUDENT_AUTHORIZATIONS, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Student Work Authorizations , implementation_dba_data: APPS.IGFBV_STUDENT_AUTHORIZATIONS ,
-
VIEW: APPS.CLN_WSH_SS_SHIPITEMS_V
12.2.2
-
View: WSH_OPSM_ASN_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_ITEM_DETAILS_V, object_name:WSH_OPSM_ASN_ITEM_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OPSM_ASN_ITEM_DETAILS_V ,
-
View: OEBV_SHIPMENT_LINES
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_STUDENT_PAYROLL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_PAYROLL_DETAILS, object_name:IGFFV_STUDENT_PAYROLL_DETAILS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Student Payroll Details , implementation_dba_data: APPS.IGFFV_STUDENT_PAYROLL_DETAILS ,
-
VIEW: APPS.WSH_SS_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPITEMS_V, object_name:WSH_SS_SHIPITEMS_V, status:VALID,
-
VIEW: APPS.CLN_WSH_SS_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_WSH_SS_SHIPITEMS_V, object_name:CLN_WSH_SS_SHIPITEMS_V, status:VALID,
-
View: WSH_SS_SHIPITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPITEMS_V, object_name:WSH_SS_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPITEMS_V ,
-
VIEW: APPS.WSH_DSNO_ITEM_DETAILS_V
12.2.2
-
VIEW: APPS.IGSBV_STUDENT_SPNSR_RELATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_SPNSR_RELATIONS, object_name:IGSBV_STUDENT_SPNSR_RELATIONS, status:VALID,
-
VIEW: APPS.WSH_SS_SHIPITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPITEMS_V, object_name:WSH_SS_SHIPITEMS_V, status:VALID,
-
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: IGFFV_STUDENT_PAYROLL_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Student Payroll Details , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_STUDENT_FWS_AWAD_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_FWS_AWAD_DETAILS, object_name:IGFBV_STUDENT_FWS_AWAD_DETAILS, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Student Work Study Award Details , implementation_dba_data: APPS.IGFBV_STUDENT_FWS_AWAD_DETAILS ,
-
VIEW: APPS.CLN_WSH_SS_SHIPITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_WSH_SS_SHIPITEMS_V, object_name:CLN_WSH_SS_SHIPITEMS_V, status:VALID,
-
View: IGSFV_STUDENT_SPNSR_RELATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: Holds sponsor student relation details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PR_STU_ACAD_V
12.1.1
-
View: IGFBV_STUDENT_FWS_AWAD_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Student Work Study Award Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CLN_WSH_SS_SHIPITEMS_V
12.1.1
-
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: APPS.IGFFV_STUDENT_PAYROLL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_PAYROLL_DETAILS, object_name:IGFFV_STUDENT_PAYROLL_DETAILS, status:VALID,
-
VIEW: APPS.WSH_STND_SHIPITEMS_V
12.2.2