Search Results volume_uom_code
Overview
WSHBV_TRIP_STOPS is an Oracle Shipping Execution (WSH) view owned by the APPS schema and shipped as a valid, read-only object in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes trip stop information — the individual legs of a trip — one row per trip stop, combining transportation planning attributes stored on WSH_TRIP_STOPS with the stop's physical location from WSH_LOCATIONS. The "BV" prefix and the fact that the view is defined WITH READ ONLY indicate it is a business view intended for query and reporting rather than for DML; it is a lightweight presentation layer over the underlying Shipping Execution tables.
The view restricts rows to freight or shipment trips that are of order or manifest type. Specifically, the predicate NVL(WTS.SHIPMENTS_TYPE_FLAG,'O') IN ('O','M') limits trip stops to outbound order trips ('O') and manifest trips ('M'). In reporting and integration contexts, WSHBV_TRIP_STOPS is queried by custom reports, OBIEE/BIP extracts, and interface programs that require a denormalized, joined view of trip stop scheduling and load data without accessing the base tables directly.
Underlying Base Objects
The view is defined as a join of two referenced objects, both exposed to APPS as synonyms:
- WSH_TRIP_STOPS (WTS) — the base trip stop table holding sequence, dates, departure weights/volumes, seal, fill percent, and interface status.
- WSH_LOCATIONS (LOC) — the shipping location table, joined via
WTS.STOP_LOCATION_ID = LOC.WSH_LOCATION_ID.
The SELECT list projects the location surrogate key as LOC.SOURCE_LOCATION_ID, aliased to the STOP_LOCATION_ID column in the view. Because both underlying objects are joined in a single SELECT with no UNION or aggregate, the view is a simple equijoin with one row per qualifying trip stop. Token-translated columns (STATUS_CODE and PENDING_INTERFACE_FLAG) are resolved at runtime using the _LA: lookup syntax into WSH_LOOKUPS and FND_LOOKUPS respectively.
Key Columns
- STOP_ID, TRIP_ID — primary identifiers for the trip stop and its parent trip.
- STOP_LOCATION_ID — the source location ID of the stop, sourced from WSH_LOCATIONS.SOURCE_LOCATION_ID.
- STOP_SEQUENCE_NUMBER — ordering of the stop within the trip.
- PLANNED_ARRIVAL_DATE, ACTUAL_ARRIVAL_DATE, PLANNED_DEPARTURE_DATE, ACTUAL_DEPARTURE_DATE — the stop schedule and actuals used for on-time performance analysis.
- DEPARTURE_GROSS_WEIGHT, DEPARTURE_NET_WEIGHT — weights of the load departing the stop.
- WEIGHT_UOM_CODE — the unit of measure for the departure weights; this is the column referenced by the user search term weight_uom_code. It is derived from WSH_TRIP_STOPS and identifies the UOM applied to DEPARTURE_GROSS_WEIGHT and DEPARTURE_NET_WEIGHT.
- DEPARTURE_VOLUME, VOLUME_UOM_CODE — the corresponding volume and its unit of measure.
- DEPARTURE_SEAL_CODE, DEPARTURE_FILL_PERCENT — seal reference and percentage utilization at departure.
- STATUS_CODE (token) — translated trip stop status meaning.
- PENDING_INTERFACE_FLAG (token) — Yes/No translation indicating whether the stop is pending interface.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
- SHIPMENTS_TYPE_FLAG — trip shipment type ('O' order or 'M' manifest) driving the view's row filter.
Common Use Cases and Queries
Typical usage includes trip load reporting by weight UOM, stop-level on-time analysis, and integration extracts requiring location and status lookups. The following query retrieves stops and departure weight detail for a given trip:
SELECT trip_id,
stop_id,
stop_sequence_number,
stop_location_id,
planned_arrival_date,
actual_arrival_date,
departure_gross_weight,
departure_net_weight,
weight_uom_code,
volume_uom_code
FROM apps.wshbv_trip_stops
WHERE trip_id = :p_trip_id
ORDER BY stop_sequence_number;
A second common pattern aggregates departing net weight by unit of measure across all manifest and order trips:
SELECT weight_uom_code,
SUM(departure_net_weight) total_net_weight
FROM apps.wshbv_trip_stops
GROUP BY weight_uom_code;
A third pattern isolates stops with pending interface status for reconciliation:
SELECT trip_id, stop_id, stop_sequence_number FROM apps.wshbv_trip_stops WHERE wshbv_trip_stops."_LA:PENDING_INTERFACE_FLAG" = 'Yes';
Because the view is read-only and denormalized, it is well suited to read-only reporting responsibilities. Queries that require columns outside the projected set, or that target non-order/manifest trips, must fall back to the base WSH_TRIP_STOPS and WSH_LOCATIONS tables directly.
-
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_LOAD_TENDER_CARGO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_LOAD_TENDER_CARGO_V, object_name:WSH_LOAD_TENDER_CARGO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_LOAD_TENDER_CARGO_V ,
-
View: WSHBV_DELIVERIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERIES, object_name:WSHBV_DELIVERIES, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERIES ,
-
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: WSH_LOAD_TENDER_CARGO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_LOAD_TENDER_CARGO_V, object_name:WSH_LOAD_TENDER_CARGO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_LOAD_TENDER_CARGO_V ,
-
View: WSHBV_DELIVERIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERIES, object_name:WSHBV_DELIVERIES, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERIES ,
-
View: WSH_POD_CARGO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_POD_CARGO_V, object_name:WSH_POD_CARGO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_POD_CARGO_V ,
-
View: WSH_POD_CARGO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_POD_CARGO_V, object_name:WSH_POD_CARGO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_POD_CARGO_V ,
-
View: WSH_STND_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_SHIPMENT_V, object_name:WSH_STND_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_SHIPMENT_V ,
-
View: WSH_SS_CONTAINERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_CONTAINERS_V, object_name:WSH_SS_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_CONTAINERS_V ,
-
View: WSH_SS_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPMENT_V, object_name:WSH_SS_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPMENT_V ,
-
View: WSH_DELIVERY_LEGS_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_LEGS_OB_GRP_V, object_name:WSH_DELIVERY_LEGS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_LEGS_OB_GRP_V ,
-
View: WSH_SS_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_CONTAINERS_V, object_name:WSH_SS_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_CONTAINERS_V ,
-
View: WSH_DELIVERY_LEGS_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_LEGS_OB_GRP_V, object_name:WSH_DELIVERY_LEGS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_LEGS_OB_GRP_V ,
-
View: WSH_STND_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_CONTAINERS_V, object_name:WSH_STND_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_CONTAINERS_V ,
-
View: WSH_SS_SHIPMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPMENT_V, object_name:WSH_SS_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPMENT_V ,
-
View: WSH_ITM_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPMENT_V, object_name:WSH_ITM_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ITM_SHIPMENT_V ,
-
View: WSH_ITM_SHIPMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPMENT_V, object_name:WSH_ITM_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ITM_SHIPMENT_V ,
-
View: WSH_NEW_DELIVERIES_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_NEW_DELIVERIES_OB_GRP_V, object_name:WSH_NEW_DELIVERIES_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_NEW_DELIVERIES_OB_GRP_V ,
-
View: WSHBV_DELIVERY_LEGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERY_LEGS, object_name:WSHBV_DELIVERY_LEGS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERY_LEGS ,
-
View: WSHBV_DELIVERY_LEGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERY_LEGS, object_name:WSHBV_DELIVERY_LEGS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERY_LEGS ,
-
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: 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: WSH_NEW_DELIVERIES_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_NEW_DELIVERIES_OB_GRP_V, object_name:WSH_NEW_DELIVERIES_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_NEW_DELIVERIES_OB_GRP_V ,
-
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_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: 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: 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: 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_CONTAINERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_CONTAINERS, object_name:WSHBV_CONTAINERS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_CONTAINERS ,
-
View: WSHBV_CONTAINERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_CONTAINERS, object_name:WSHBV_CONTAINERS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_CONTAINERS ,
-
View: WSHFV_DELIVERY_LEGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_LEGS, object_name:WSHFV_DELIVERY_LEGS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Legs , implementation_dba_data: APPS.WSHFV_DELIVERY_LEGS ,
-
View: WSHFV_DELIVERY_LEGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_LEGS, object_name:WSHFV_DELIVERY_LEGS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Legs , implementation_dba_data: APPS.WSHFV_DELIVERY_LEGS ,
-
View: WSH_DELIVERY_DETAILS_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_DETAILS_OB_GRP_V, object_name:WSH_DELIVERY_DETAILS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_DETAILS_OB_GRP_V ,
-
View: WSH_DELIVERY_DETAILS_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_DETAILS_OB_GRP_V, object_name:WSH_DELIVERY_DETAILS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_DETAILS_OB_GRP_V ,
-
View: WSHFV_CONTAINERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_CONTAINERS, object_name:WSHFV_CONTAINERS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Containers , implementation_dba_data: APPS.WSHFV_CONTAINERS ,
-
View: WSHFV_CONTAINERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_CONTAINERS, object_name:WSHFV_CONTAINERS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Containers , implementation_dba_data: APPS.WSHFV_CONTAINERS ,
-
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: WSHFV_DELIVERIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERIES, object_name:WSHFV_DELIVERIES, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Deliveries. , implementation_dba_data: APPS.WSHFV_DELIVERIES ,
-
View: WSHFV_DELIVERIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERIES, object_name:WSHFV_DELIVERIES, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Deliveries. , implementation_dba_data: APPS.WSHFV_DELIVERIES ,
-
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: WSH_BOLS_DB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_BOLS_DB_V, object_name:WSH_BOLS_DB_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_BOLS_DB_V ,
-
View: WSH_OPSM_ASN_ITEMS_COMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_ITEMS_COMM_V, object_name:WSH_OPSM_ASN_ITEMS_COMM_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OPSM_ASN_ITEMS_COMM_V ,
-
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_BOLS_DB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_BOLS_DB_V, object_name:WSH_BOLS_DB_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_BOLS_DB_V ,