Search Results pickup_stop
Overview
The APPS.WSH_DELIVERY_TRIPS_V view is a shipping execution reporting object that joins delivery legs to their associated trip definitions. Its primary purpose is to expose, for each delivery, the trip record that carries the pickup and dropoff stops belonging to that delivery. The view therefore provides a consolidated picture of trip-level and stop-level shipping data across the outbound delivery lifecycle.
The view is defined with a filter restricting results to outbound shipment directions. Specifically, the underlying WSH_NEW_DELIVERIES record must satisfy NVL(shipment_direction, 'O') IN ('O', 'IO'), so records with a null direction (treated as outbound) and explicitly outbound or inbound-outbound combinations are returned. Inbound-only deliveries are excluded.
A notable feature of the view is a derived status column. Rather than surfacing the raw stop status, the view computes a combined delivery-level status by decoding the pickup stop status code and, where the pickup status is not one of the recognized values, falling back to the dropoff stop status code. This makes the view useful for status-driven reporting where a single consolidated code is required per delivery leg.
The TO_NUMBER(NULL) expression in the second position of the select list is a placeholder column that carries no data; consumers should not rely on it for any functional purpose.
Underlying Base Objects
The view is owned by APPS and is defined over four documented objects:
WSH_DELIVERY_LEGS(synonym) — supplies the delivery-to-stop linkage throughpick_up_stop_idanddrop_off_stop_id, and thedelivery_id.WSH_NEW_DELIVERIES(synonym) — supplies the delivery master record and theshipment_directionused in the outbound filter.WSH_TRIPS_V(view) — supplies all trip-level attributes, aliased ast.WSH_TRIP_STOPS(synonym) — instantiated twice, aspickup_stopanddropoff_stop, to resolve the status of each end of the delivery leg.
The join path is: pickup_stop.stop_id = dl.pick_up_stop_id, dropoff_stop.stop_id = dl.drop_off_stop_id, pickup_stop.trip_id = t.trip_id, and wnd.delivery_id = dl.delivery_id. Because a delivery leg is matched to its pickup and dropoff stops and those stops are tied back to the same trip, the view returns one row per qualifying delivery leg and trip combination.
Key Columns
DELIVERY_ID— identifier of the delivery associated with the leg.TRIP_ID,ROW_ID,NAME— trip identity attributes fromWSH_TRIPS_V.PLANNED_FLAG,STATUS_CODE,STATUS_NAME— trip planning and status indicators.ARRIVE_AFTER_TRIP_ID— sequencing reference for chained trips.VEHICLE_ITEM_ID,VEHICLE_ORGANIZATION_ID,VEHICLE_NUM_PREFIX,VEHICLE_NUMBER— vehicle identification.CARRIER_ID,SHIP_METHOD_CODE,SERVICE_LEVEL,MODE_OF_TRANSPORT,FREIGHT_TERMS_CODE— carrier and transportation attributes.ROUTE_ID,ROUTE_LANE_ID,LANE_ID,SCHEDULE_ID,ROUTING_INSTRUCTIONS— routing and scheduling data.- The decoded status expression (position 17) — consolidated pickup/dropoff status code.
LOAD_TENDER_STATUS,LOAD_TENDER_NUMBER,LOAD_TENDERED_TIME,CARRIER_RESPONSE— tender lifecycle data.VESSEL,VOYAGE_NUMBER,PORT_OF_LOADING,PORT_OF_DISCHARGE— ocean/port attributes.ATTRIBUTE_CATEGORYandATTRIBUTE1throughATTRIBUTE15— descriptive flexfield segments.CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY, plusPROGRAM_*andREQUEST_ID— standard WHO audit columns.
Common Use Cases and Queries
This view is typically used to report on deliveries in the context of their assigned trips, to trace carrier and routing attributes, and to obtain a consolidated leg status. A representative query follows:
- Retrieve delivery and trip combinations for a delivery:
SELECT DELIVERY_ID, TRIP_ID, NAME, STATUS_CODE FROM APPS.WSH_DELIVERY_TRIPS_V WHERE DELIVERY_ID = :p_delivery_id; - List deliveries by carrier and service level:
SELECT DELIVERY_ID, TRIP_ID, CARRIER_ID, SERVICE_LEVEL FROM APPS.WSH_DELIVERY_TRIPS_V WHERE CARRIER_ID = :p_carrier_id; - Filter on the derived status expression by wrapping the view with an outer query that returns the status column positionally, or by reproducing the decode logic against
WSH_TRIP_STOPS.
Because the view joins across stop, trip, and delivery structures, queries should generally constrain on DELIVERY_ID, TRIP_ID, or carrier attributes to limit the returned row set.
-
VIEW: APPS.WSH_DELIVERY_TRIPS_V
12.1.1
-
VIEW: APPS.WSH_DELIVERABLE_TRIPS_V
12.2.2
-
VIEW: APPS.WSH_DELIVERY_TRIPS_V
12.2.2
-
VIEW: APPS.WSH_DELIVERABLE_TRIPS_V
12.1.1
-
VIEW: APPS.WSH_TRIP_DELIVERIES_V
12.1.1
-
VIEW: APPS.WSH_TRIP_DELIVERIES_V
12.2.2
-
VIEW: APPS.WSH_TRIP_DELIVERABLES_V
12.1.1
-
VIEW: APPS.WSH_TRIP_DELIVERABLES_V
12.2.2
-
View: WSH_DELIVERABLE_TRIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLE_TRIPS_V, object_name:WSH_DELIVERABLE_TRIPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLE_TRIPS_V ,
-
View: WSH_DELIVERY_TRIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_TRIPS_V, object_name:WSH_DELIVERY_TRIPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_TRIPS_V ,
-
View: WSH_DELIVERY_TRIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_TRIPS_V, object_name:WSH_DELIVERY_TRIPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_TRIPS_V ,
-
View: WSH_DELIVERABLE_TRIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLE_TRIPS_V, object_name:WSH_DELIVERABLE_TRIPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLE_TRIPS_V ,
-
View: WSH_TRIP_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_DELIVERIES_V, object_name:WSH_TRIP_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_DELIVERIES_V ,
-
View: WSH_TRIP_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_DELIVERIES_V, object_name:WSH_TRIP_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_DELIVERIES_V ,
-
APPS.JL_ZZ_RECEIV_INTERFACE SQL Statements
12.1.1
-
APPS.JL_ZZ_RECEIV_INTERFACE SQL Statements
12.2.2
-
View: WSH_TRIP_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_DELIVERABLES_V, object_name:WSH_TRIP_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_DELIVERABLES_V ,
-
View: WSH_TRIP_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_DELIVERABLES_V, object_name:WSH_TRIP_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_DELIVERABLES_V ,
-
APPS.WMS_SHIPPING_TRANSACTION_PUB SQL Statements
12.1.1
-
APPS.WMS_SHIPPING_TRANSACTION_PUB SQL Statements
12.2.2
-
APPS.WMS_RFID_DEVICE_PUB SQL Statements
12.2.2
-
APPS.WMS_RFID_DEVICE_PUB SQL Statements
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB SQL Statements
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB SQL Statements
12.2.2
-
APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS_OB_GRP_V
12.1.1
-
APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS_OB_GRP_V
12.2.2
-
APPS.JL_ZZ_RECEIV_INTERFACE dependencies on WSH_TRIP_STOPS
12.2.2
-
APPS.JL_ZZ_RECEIV_INTERFACE dependencies on WSH_TRIP_STOPS
12.1.1
-
PACKAGE BODY: APPS.JL_ZZ_RECEIV_INTERFACE
12.1.1
-
PACKAGE BODY: APPS.JL_ZZ_RECEIV_INTERFACE
12.2.2
-
APPS.WMS_RFID_DEVICE_PUB dependencies on WSH_TRIP_STOPS
12.2.2
-
APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS
12.1.1
-
APPS.WMS_RFID_DEVICE_PUB dependencies on WSH_TRIP_STOPS
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS_OB_GRP_V
12.2.2
-
APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS
12.2.2
-
APPS.INV_UI_ITEM_SUB_LOC_LOVS dependencies on WMS_DOCK_APPOINTMENTS_B
12.1.1
-
APPS.INV_UI_ITEM_SUB_LOC_LOVS dependencies on WSH_TRIP_STOPS
12.2.2
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS_OB_GRP_V
12.1.1
-
APPS.INV_UI_ITEM_SUB_LOC_LOVS dependencies on WMS_DOCK_APPOINTMENTS_B
12.2.2
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS
12.1.1
-
APPS.INV_UI_ITEM_SUB_LOC_LOVS dependencies on WSH_TRIP_STOPS
12.1.1
-
PACKAGE BODY: APPS.WMS_SHIPPING_TRANSACTION_PUB
12.2.2
-
PACKAGE BODY: APPS.WMS_SHIPPING_TRANSACTION_PUB
12.1.1
-
APPS.JL_ZZ_RECEIV_INTERFACE dependencies on WSH_TRIPS
12.2.2
-
APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_DELIVERY_LEGS_OB_GRP_V
12.1.1
-
APPS.WSH_PURGE SQL Statements
12.1.1
-
APPS.JL_ZZ_RECEIV_INTERFACE dependencies on WSH_DELIVERY_LEGS
12.2.2
-
APPS.JL_ZZ_RECEIV_INTERFACE dependencies on WSH_TRIPS
12.1.1
-
APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_DELIVERY_LEGS_OB_GRP_V
12.2.2
-
APPS.JL_ZZ_RECEIV_INTERFACE dependencies on WSH_DELIVERY_LEGS
12.1.1