Search Results departure_gross_weight
Overview
APPS.WSHBV_TRIP_STOPS is a read-only business view (identified by the "BV" naming convention) in the Oracle E-Business Suite transportation model. It presents one row for each stop on a trip, enriched with the resolved source location identifier and several lookups translated to their display meanings. The view is defined WITH READ ONLY, so it is intended strictly for query, reporting, and integration consumption rather than for direct DML.
The view plays a dual role. First, it is an operational reporting surface for transportation planners and logistics analysts who need to see the sequence of stops, planned versus actual arrival and departure timestamps, and the departure metrics captured at each stop. Second, because it decodes coded columns through _LA: lookup attributes (STATUS_CODE, PENDING_INTERFACE_FLAG) and joins the location master, it serves as a convenience layer for downstream integrations and BI extracts that would otherwise have to replicate the same joins and lookup resolution. The user's search term, "departure_gross_weight," corresponds directly to the DEPARTURE_GROSS_WEIGHT column exposed by this view, which is one of the departure quantity attributes captured when a trip stop is closed out.
Underlying Base Objects
The view is defined over two base objects, both exposed to APPS as synonyms:
- WSH_TRIP_STOPS (alias WTS) — the driving table. It holds the physical stop records for each trip, including stop sequencing, planned and actual dates, departure weights and volumes, seal and fill information, audit columns, and the SHIPMENTS_TYPE_FLAG.
- WSH_LOCATIONS (alias LOC) — the location master. The join is
WTS.STOP_LOCATION_ID = LOC.WSH_LOCATION_ID, and the view projectsLOC.SOURCE_LOCATION_IDso that consumers see the underlying location reference rather than the surrogate WSH location key.
A restrictive predicate is applied in the WHERE clause: NVL(WTS.SHIPMENTS_TYPE_FLAG, 'O') IN ('O', 'M'). This means the view returns only stop records whose shipments-type flag is either 'O' (the default when null) or 'M', filtering out other stop classifications. Analysts should be aware of this filter, as it can explain apparent discrepancies between row counts in this view and the full contents of WSH_TRIP_STOPS.
Key Columns
- STOP_ID, TRIP_ID — primary identifiers linking the stop to its parent trip.
- SOURCE_LOCATION_ID — the source location identifier sourced from WSH_LOCATIONS.
- STATUS_CODE (as _LA meaning) — decoded through the WSH_LOOKUPS lookup type TRIP_STOP_STATUS, returning the human-readable MEANING.
- STOP_SEQUENCE_NUMBER — the ordered position of the stop within the trip.
- PLANNED_ARRIVAL_DATE, ACTUAL_ARRIVAL_DATE, PLANNED_DEPARTURE_DATE, ACTUAL_DEPARTURE_DATE — the scheduling versus execution timestamps for the stop.
- DEPARTURE_GROSS_WEIGHT, DEPARTURE_NET_WEIGHT, WEIGHT_UOM_CODE — the weight recorded at departure and its unit of measure.
- DEPARTURE_VOLUME, VOLUME_UOM_CODE — the volume recorded at departure and its unit of measure.
- DEPARTURE_SEAL_CODE, DEPARTURE_FILL_PERCENT — seal identification and fill percentage at departure.
- PENDING_INTERFACE_FLAG (as _LA meaning) — decoded through FND_LOOKUPS lookup type YES_NO, indicating whether the stop is awaiting interface processing.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
- SHIPMENTS_TYPE_FLAG — the flag used in the view's own restricting predicate.
Common Use Cases and Queries
Typical uses include trip stop schedule reporting, variance analysis between planned and actual departure times, and extracting departure weight and volume for load or capacity analysis. The following query retrieves stops for a given trip in stop sequence order:
SELECT stop_id, trip_id, stop_sequence_number, source_location_id, planned_departure_date, actual_departure_date, departure_gross_weight, weight_uom_code FROM apps.wshbv_trip_stops WHERE trip_id = :trip_id ORDER BY stop_sequence_number;SELECT trip_id, stop_id, departure_net_weight, departure_volume FROM apps.wshbv_trip_stops WHERE departure_gross_weight IS NOT NULL;SELECT s.stop_id, s.status_code_meaning, s.pending_interface_flag_meaning FROM apps.wshbv_trip_stops s WHERE s.pending_interface_flag_meaning = 'Yes';
Because the view is read-only, it should be used for selection only; any corrections to departure weights or stop status must be made against the base WSH_TRIP_STOPS table through supported application flows.
-
VIEW: APPS.WSHBV_TRIP_STOPS
12.2.2
-
VIEW: WSH.WSH_TRIP_STOPS#
12.2.2
-
View: WSHBV_TRIP_STOPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_TRIP_STOPS, object_name:WSHBV_TRIP_STOPS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_TRIP_STOPS ,
-
View: WSHBV_TRIP_STOPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_TRIP_STOPS, object_name:WSHBV_TRIP_STOPS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_TRIP_STOPS ,
-
VIEW: WSH.WSH_TRIP_STOPS_INTERFACE#
12.2.2
-
VIEW: APPS.WSHBV_TRIP_STOPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_TRIP_STOPS, object_name:WSHBV_TRIP_STOPS, status:VALID,
-
VIEW: APPS.WSHBV_TRIP_STOPS
12.1.1
-
VIEW: APPS.WSH_TRIP_STOPS_OB_GRP_V
12.2.2
-
VIEW: APPS.WSHBV_TRIP_STOPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_TRIP_STOPS, object_name:WSHBV_TRIP_STOPS, status:VALID,
-
VIEW: APPS.MST_WSH_TRIP_STOPS_V
12.1.1
-
VIEW: APPS.WSH_TRIP_STOPS_OB_GRP_V
12.1.1
-
VIEW: APPS.MST_WSH_TRIP_STOPS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MST_WSH_TRIP_STOPS_V, status:VALID,
-
View: WSH_TRIP_STOPS_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_STOPS_OB_GRP_V, object_name:WSH_TRIP_STOPS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_STOPS_OB_GRP_V ,
-
View: WSH_TRIP_STOPS_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_STOPS_OB_GRP_V, object_name:WSH_TRIP_STOPS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_STOPS_OB_GRP_V ,
-
VIEW: APPS.MST_LOAD_LEGS_V
12.1.1
-
VIEW: APPS.WSHFV_TRIP_STOPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_TRIP_STOPS, object_name:WSHFV_TRIP_STOPS, status:VALID,
-
VIEW: APPS.WSHFV_TRIP_STOPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_TRIP_STOPS, object_name:WSHFV_TRIP_STOPS, status:VALID,
-
TABLE: MST.MST_RELEASE_TEMP_GT
12.1.1
owner:MST, object_type:TABLE, object_name:MST_RELEASE_TEMP_GT, status:VALID,
-
View: WSHFV_TRIP_STOPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_TRIP_STOPS, object_name:WSHFV_TRIP_STOPS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Trip Stops. , implementation_dba_data: APPS.WSHFV_TRIP_STOPS ,
-
View: WSHFV_TRIP_STOPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_TRIP_STOPS, object_name:WSHFV_TRIP_STOPS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Trip Stops. , implementation_dba_data: APPS.WSHFV_TRIP_STOPS ,
-
VIEW: APPS.WSH_DELIVERY_STOPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_STOPS_V, object_name:WSH_DELIVERY_STOPS_V, status:VALID,
-
VIEW: WSH.WSH_TRIP_STOPS_INTERFACE#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_TRIP_STOPS_INTERFACE#, status:VALID,
-
VIEW: APPS.WSH_DELIVERABLE_STOPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLE_STOPS_V, object_name:WSH_DELIVERABLE_STOPS_V, status:VALID,
-
VIEW: APPS.WSH_TRIP_STOPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_STOPS_V, object_name:WSH_TRIP_STOPS_V, status:VALID,
-
VIEW: WSH.WSH_TRIP_STOPS#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_TRIP_STOPS#, status:VALID,
-
TABLE: MST.MST_TRIP_STOPS
12.1.1
owner:MST, object_type:TABLE, object_name:MST_TRIP_STOPS, status:VALID,
-
VIEW: APPS.WSH_DELIVERY_STOPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_STOPS_V, object_name:WSH_DELIVERY_STOPS_V, status:VALID,
-
VIEW: APPS.WSH_TRIP_STOPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_STOPS_V, object_name:WSH_TRIP_STOPS_V, status:VALID,
-
VIEW: APPS.WSH_DELIVERABLE_STOPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLE_STOPS_V, object_name:WSH_DELIVERABLE_STOPS_V, status:VALID,
-
View: WSH_TRIP_STOPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_STOPS_V, object_name:WSH_TRIP_STOPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_STOPS_V ,
-
View: WSH_TRIP_STOPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_STOPS_V, object_name:WSH_TRIP_STOPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_STOPS_V ,
-
View: ECE_DSNO_DELIVERIES_V
12.2.2
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: WSH_DELIVERY_STOPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_STOPS_V, object_name:WSH_DELIVERY_STOPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_STOPS_V ,
-
View: ECE_DSNO_DELIVERIES_V
12.1.1
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_DSNO_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_DELIVERIES_V, object_name:WSH_DSNO_DELIVERIES_V, status:VALID,
-
View: WSH_DELIVERY_STOPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_STOPS_V, object_name:WSH_DELIVERY_STOPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_STOPS_V ,
-
View: WSH_DSNO_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_DELIVERIES_V, object_name:WSH_DSNO_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_DELIVERIES_V ,
-
VIEW: APPS.WSH_TRIP_STOPS_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_STOPS_OB_GRP_V, object_name:WSH_TRIP_STOPS_OB_GRP_V, status:VALID,
-
View: WSH_DSNO_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_DELIVERIES_V, object_name:WSH_DSNO_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_DELIVERIES_V ,
-
VIEW: APPS.WSH_TRIP_STOPS_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_STOPS_OB_GRP_V, object_name:WSH_TRIP_STOPS_OB_GRP_V, status:VALID,
-
VIEW: APPS.WSH_DSNO_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_DELIVERIES_V, object_name:WSH_DSNO_DELIVERIES_V, status:VALID,
-
APPS.WSH_TRIP_STOPS_PVT SQL Statements
12.1.1
-
APPS.WSH_TRIP_STOPS_PVT SQL Statements
12.2.2
-
VIEW: APPS.MST_TL_SUMMARY_V
12.1.1
-
View: WSH_DELIVERABLE_STOPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLE_STOPS_V, object_name:WSH_DELIVERABLE_STOPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLE_STOPS_V ,
-
TABLE: WSH.WSH_TRIP_STOPS_INTERFACE
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_TRIP_STOPS_INTERFACE, object_name:WSH_TRIP_STOPS_INTERFACE, status:VALID,
-
View: WSH_DELIVERABLE_STOPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLE_STOPS_V, object_name:WSH_DELIVERABLE_STOPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLE_STOPS_V ,
-
TABLE: WSH.WSH_TRIP_STOPS_INTERFACE
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_TRIP_STOPS_INTERFACE, object_name:WSH_TRIP_STOPS_INTERFACE, status:VALID,
-
VIEW: APPS.MST_TL_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MST_TL_SUMMARY_V, status:VALID,
-
TABLE: WSH.WSH_TRIP_STOPS
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_TRIP_STOPS, object_name:WSH_TRIP_STOPS, status:VALID,