Search Results dropoff_stop
Overview
APPS.WSH_DELIVERY_TRIPS_V is a shipping execution view in Oracle E-Business Suite 12.1.1 and 12.2.2 that associates a delivery with the trip, and specifically the trip stops, that service it. Where WSH_TRIPS_V exposes trip-level attributes, WSH_DELIVERY_TRIPS_V adds the delivery context by joining WSH_DELIVERY_LEGS to the pickup and dropoff stops that make up a given leg. The view therefore answers the question "which trip, and which stop sequence, is handling this delivery?" and provides a derived status that reflects the combined state of the pickup and dropoff stops.
Because it returns a delivery-to-trip-stop mapping plus a full set of trip attributes, the view is used in reporting, freight and load-tender analysis, carrier integration, and any custom process that must reconcile delivery legs against trip execution. It surfaces the trip stop codes that users search for under terms such as dropoff_stop, since a join to WSH_TRIP_STOPS on DROP_OFF_STOP_ID is central to its definition.
Underlying Base Objects
The documented base objects, per ETRM 12.2.2 metadata, are:
- WSH_DELIVERY_LEGS (synonym) — supplies DELIVERY_ID, PICK_UP_STOP_ID and DROP_OFF_STOP_ID, the linkage between a delivery and the trip stops it uses.
- WSH_NEW_DELIVERIES (synonym) — joined on DELIVERY_ID and filtered to SHIPMENT_DIRECTION in ('O','IO'), restricting results to outbound (and inbound/outbound) shipments.
- WSH_TRIPS_V (view) — the source of trip-level attributes (trip_id, name, status, vehicle, carrier, routing, tender and workflow columns). Aliased T.
- WSH_TRIP_STOPS (synonym) — referenced twice, once as PICKUP_STOP and once as DROPOFF_STOP, to read the status code of each stop.
The joins are: 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.
Key Columns
- DELIVERY_ID — the delivery being served; the first column and the principal join key back to delivery data.
- TRIP_ID, NAME, ROW_ID — identity of the trip returned from WSH_TRIPS_V.
- STATUS_CODE, STATUS_NAME, PLANNED_FLAG — trip planning and execution state.
- Vehicle and carrier columns — VEHICLE_ITEM_ID, VEHICLE_ORGANIZATION_ID, VEHICLE_NUM_PREFIX, VEHICLE_NUMBER, CARRIER_ID, CARRIER_CONTACT_ID, SHIP_METHOD_CODE.
- Route columns — ROUTE_ID, ROUTE_LANE_ID, LANE_ID, SCHEDULE_ID, ROUTING_INSTRUCTIONS.
- Derived status expression — a DECODE over PICKUP_STOP.STATUS_CODE and DROPOFF_STOP.STATUS_CODE that maps stop statuses (OP, AR, CL, LO) to values such as RE, OB, UL, and CO, providing a consolidated position of the delivery's pickup and dropoff stops.
- Tender and workflow columns — LOAD_TENDER_STATUS, LOAD_TENDER_NUMBER, LOAD_TENDERED_TIME, WF_NAME, WF_PROCESS_NAME, WF_ITEM_KEY, TRIP_WF_PROCESS.
- Flexfield columns — ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15, for user-defined trip data.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, REQUEST_ID.
Common Use Cases and Queries
A typical use is to find every delivery on a trip together with its stop status:
- SELECT trip_id, name, delivery_id, status_code FROM apps.wsh_delivery_trips_v WHERE trip_id = :trip_id;
- SELECT delivery_id, trip_id, name, carrier_id FROM apps.wsh_delivery_trips_v WHERE delivery_id = :delivery_id;
- SELECT name, load_tender_number, load_tender_status FROM apps.wsh_delivery_trips_v WHERE load_tender_status = 'TENDERED';
Because WSH_TRIP_STOPS is already joined internally, the view spares developers from reconstructing the pickup/dropoff stop relationship, making it the preferred source for delivery-to-trip-stop reporting, load-tender tracking, and carrier-facing extracts in both 12.1.1 and 12.2.2.
-
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.2.2
-
VIEW: APPS.WSH_TRIP_DELIVERIES_V
12.1.1
-
VIEW: APPS.WSH_TRIP_DELIVERABLES_V
12.1.1
-
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: APPS.WSH_TRIP_DELIVERABLES_V
12.2.2
-
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.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 ,
-
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_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_RFID_DEVICE_PUB SQL Statements
12.1.1
-
APPS.WMS_RFID_DEVICE_PUB SQL Statements
12.2.2
-
APPS.INV_SHIPPING_TRANSACTION_PUB SQL Statements
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB SQL Statements
12.2.2
-
APPS.WMS_RFID_DEVICE_PUB dependencies on WSH_TRIP_STOPS
12.2.2
-
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.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS_OB_GRP_V
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS
12.1.1
-
APPS.WSH_PURGE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.WSH_TMS_RELEASE
12.1.1
-
PACKAGE BODY: APPS.WSH_TMS_RELEASE
12.2.2
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS
12.2.2
-
APPS.WSH_PURGE SQL Statements
12.2.2
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_DELIVERY_LEGS_OB_GRP_V
12.1.1
-
APPS.WSH_PURGE dependencies on WSH_TRIP_STOPS
12.1.1
-
APPS.WSH_PURGE dependencies on WSH_TRIP_STOPS
12.2.2
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_DELIVERY_LEGS_OB_GRP_V
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.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIPS_OB_GRP_V
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIPS_OB_GRP_V
12.2.2
-
APPS.WMS_RFID_DEVICE_PUB dependencies on WSH_DELIVERY_DETAILS
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_DELIVERY_LEGS
12.1.1
-
APPS.WMS_RFID_DEVICE_PUB dependencies on WSH_DELIVERY_DETAILS
12.2.2
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIPS
12.1.1
-
APPS.WMS_RFID_DEVICE_PUB dependencies on WSH_DELIVERY_ASSIGNMENTS_V
12.1.1
-
APPS.WMS_RFID_DEVICE_PUB dependencies on WSH_DELIVERY_ASSIGNMENTS_V
12.2.2
-
APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIPS
12.2.2
-
APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_TRIP_STOPS
12.2.2
-
APPS.WMS_SHIPPING_TRANSACTION_PUB SQL Statements
12.1.1
-
APPS.INV_SHIPPING_TRANSACTION_PUB dependencies on WSH_DELIVERY_LEGS
12.2.2
-
APPS.WMS_SHIPPING_TRANSACTION_PUB SQL Statements
12.2.2