Search Results mode_of_transport
Overview
WSH_TRIPS_OB_GRP_V is an Oracle E-Business Suite view owned by the APPS schema within the WSH – Shipping Execution product. In Release 12.1.1 and 12.2.2 this view exposes trip-level records that support outbound (OB) and group-oriented shipping operations, including both regular outbound trips and consolidated or multi-stop shipments. The view is a filtered projection of the base trip entity, restricted to rows whose SHIPMENTS_TYPE_FLAG resolves to 'O' (outbound) or 'M', using the predicate NVL(SHIPMENTS_TYPE_FLAG,'O') IN ('O','M'). It therefore provides a stable, denormalized read surface for trips that participate in outbound and grouped movement, excluding trip types not relevant to those flows. Its principal role is reporting and integration: it is commonly referenced by shipping reports, freight cost analyses, carrier and tender extracts, and interface programs that require trip header attributes without joining directly to the WSH_TRIPS table. Because it carries the full standard WHO columns and concurrent program columns, it supports audit-aware and request-aware reporting. For the search term "mode_of_transport", the view is directly relevant: MODE_OF_TRANSPORT is one of the columns projected by the view and provides the transportation mode associated with the trip (for example, air, ocean, ground, or rail), which drives rating, routing, and carrier selection logic.
Underlying Base Objects
The documented base object is WSH_TRIPS, accessed via the APPS.WSH_TRIPS synonym. WSH_TRIPS is the Shipping Execution table that stores trip headers, including assignments of vehicles, carriers, routes, and freight terms. WSH_TRIPS_OB_GRP_V selects from this table with a WHERE clause that retains only outbound and 'M' type trips, based on SHIPMENTS_TYPE_FLAG with NVL defaulting nulls to 'O'. It performs no aggregation, joins, or expressions beyond the filter; each qualified row in WSH_TRIPS surfaces as one row in the view. Because the view is a direct, unfiltered projection apart from the flag predicate, all common audit and workflow columns remain available and behave identically to their base table equivalents. This one-to-one relationship simplifies tuning, since predicates on TRIP_ID, STATUS_CODE, or CARRIER_ID can be pushed to the underlying table.
Key Columns
- TRIP_ID – Primary identifier for the trip; use for joins to trip lines and stops.
- NAME and TP_TRIP_NUMBER – Display and transportation planning trip references.
- STATUS_CODE and PLANNED_FLAG – Trip lifecycle state and planning indicator.
- CARRIER_ID, SHIP_METHOD_CODE, SERVICE_LEVEL – Carrier and service determination, relevant to rating.
- MODE_OF_TRANSPORT – Transportation mode for the trip; the searched column and a key driver of routing and freight rating.
- VEHICLE_ITEM_ID, VEHICLE_NUMBER, VEHICLE_NUM_PREFIX, VEHICLE_ORGANIZATION_ID – Vehicle identity and owning organization.
- ROUTE_ID, ROUTE_LANE_ID, LANE_ID, SCHEDULE_ID – Routing and lane configuration references.
- FREIGHT_TERMS_CODE, CONSOLIDATION_ALLOWED, LOAD_TENDER_STATUS – Freight terms, consolidation eligibility, and tender state.
- BOOKING_NUMBER, LOAD_TENDER_NUMBER, VESSEL, VOYAGE_NUMBER, PORT_OF_LOADING, PORT_OF_DISCHARGE – Ocean and international movement details.
- SEAL_CODE, SHIPPER_WAIT_TIME, WAIT_TIME_UOM, LOAD_TENDERED_TIME, CARRIER_RESPONSE – Execution and accessorial attributes.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN – Standard WHO audit columns.
- PROGRAM_ID, PROGRAM_APPLICATION_ID, REQUEST_ID, PROGRAM_UPDATE_DATE – Concurrent program and request context.
- WF_NAME, WF_PROCESS_NAME, WF_ITEM_KEY – Workflow context for the trip.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 – Descriptive flexfield segments.
Common Use Cases and Queries
Typical uses include outbound trip dashboards, mode-of-transport analysis, carrier and tender reporting, and interface extracts requiring trip headers. A common query lists shipped and unshipped outbound trips by mode:
SELECT trip_id, name, status_code, carrier_id, mode_of_transport, ship_method_code FROM wsh_trips_ob_grp_v WHERE status_code = 'CLOSED' ORDER BY name;SELECT mode_of_transport, COUNT(*) FROM wsh_trips_ob_grp_v WHERE creation_date >= :from_date GROUP BY mode_of_transport;SELECT t.trip_id, t.name, t.load_tender_status, t.carrier_response FROM wsh_trips_ob_grp_v t WHERE t.load_tender_status = 'TENDERED';
Because the view is a thin projection over WSH_TRIPS, performance depends on effective indexing of the base table; filter and join on TRIP_ID, CARRIER_ID, STATUS_CODE, and MODE_OF_TRANSPORT to access the underlying indexes efficiently. Reports requiring trip stops, delivery details, or freight costs should join TRIP_ID to the corresponding shipping tables rather than expecting those details within the view.
-
View: WSH_TRIPS_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIPS_OB_GRP_V, object_name:WSH_TRIPS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIPS_OB_GRP_V ,
-
View: WSH_TRIPS_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIPS_OB_GRP_V, object_name:WSH_TRIPS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIPS_OB_GRP_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_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: 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: 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_TRIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIPS_V, object_name:WSH_TRIPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIPS_V ,
-
View: WSH_CARRIER_SERVICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CARRIER_SERVICES_V, object_name:WSH_CARRIER_SERVICES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CARRIER_SERVICES_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_CARRIER_SERVICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CARRIER_SERVICES_V, object_name:WSH_CARRIER_SERVICES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CARRIER_SERVICES_V ,
-
View: WSH_TRIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIPS_V, object_name:WSH_TRIPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIPS_V ,
-
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.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_CONSOL_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CONSOL_BATCHES_V, object_name:WSH_CONSOL_BATCHES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CONSOL_BATCHES_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 ,
-
View: WSH_NEW_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_NEW_DELIVERIES_V, object_name:WSH_NEW_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_NEW_DELIVERIES_V ,
-
View: WSH_DLVB_DLVY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_DLVY_V, object_name:WSH_DLVB_DLVY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVB_DLVY_V ,
-
View: WSH_DLVB_DLVY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_DLVY_V, object_name:WSH_DLVB_DLVY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVB_DLVY_V ,
-
View: WSH_NEW_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_NEW_DELIVERIES_V, object_name:WSH_NEW_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_NEW_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_STOP_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STOP_DELIVERIES_V, object_name:WSH_STOP_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STOP_DELIVERIES_V ,
-
View: WSH_DLVY_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVY_DELIVERABLES_V, object_name:WSH_DLVY_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVY_DELIVERABLES_V ,
-
View: WSH_DLVY_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVY_DELIVERABLES_V, object_name:WSH_DLVY_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVY_DELIVERABLES_V ,
-
View: WSH_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLES_V, object_name:WSH_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_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 ,
-
View: WSH_STOP_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STOP_DELIVERIES_V, object_name:WSH_STOP_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STOP_DELIVERIES_V ,
-
View: WSH_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLES_V, object_name:WSH_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLES_V ,
-
View: WSH_STOP_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STOP_DELIVERABLES_V, object_name:WSH_STOP_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STOP_DELIVERABLES_V ,
-
View: WSH_STOP_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STOP_DELIVERABLES_V, object_name:WSH_STOP_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STOP_DELIVERABLES_V ,