Search Results tp_attribute15
Overview
WSH_TRIP_STOPS_OB_GRP_V is an APPS-owned database view in the Oracle E-Business Suite Shipping Execution (WSH) module. It is a restricted projection of the WSH_TRIP_STOPS table, designed to expose trip stop records that belong to outbound or "OB" shipment groupings. The view filters the parent table with the predicate NVL(SHIPMENTS_TYPE_FLAG, 'O') IN ('O', 'M'), meaning it returns only stops whose shipment type flag is "O" (outbound) or "M", or is null (defaulted to "O"). Stops associated with inbound or other shipment type flags are excluded.
The view is informational and read-only; it carries no DML logic of its own and inherits all column definitions from WSH_TRIP_STOPS. It is typically consumed by reports, concurrent programs, and integration extracts that need a clean, outbound-scoped list of trip stops without additional filtering. In ETRM 12.2.2 the object is documented as VALID in the APPS schema.
Underlying Base Objects
The view is defined over a single base object, WSH_TRIP_STOPS, referenced through a synonym in the APPS schema. WSH_TRIP_STOPS stores the physical stop records that make up a trip in Transportation Execution, including arrival and departure timings, weight and volume, and both descriptive and developer flexfield segments. Because the view selects from this table without joins, it does not expand or denormalize data; every row in the view corresponds one-to-one with an eligible row in WSH_TRIP_STOPS. The only transformation applied is the SHIPMENTS_TYPE_FLAG filter described above.
Key Columns
- STOP_ID / TRIP_ID / STOP_LOCATION_ID — Primary identifiers linking the stop to its trip and to the physical location where the stop occurs.
- STATUS_CODE, STOP_SEQUENCE_NUMBER — Operational status and the ordering of the stop within the trip.
- PLANNED_ARRIVAL_DATE, PLANNED_DEPARTURE_DATE, ACTUAL_ARRIVAL_DATE, ACTUAL_DEPARTURE_DATE — Planned versus executed timing at the stop.
- DEPARTURE_GROSS_WEIGHT, DEPARTURE_NET_WEIGHT, WEIGHT_UOM_CODE, DEPARTURE_VOLUME, VOLUME_UOM_CODE, DEPARTURE_FILL_PERCENT — Load measurements captured at departure.
- TP_ATTRIBUTE_CATEGORY / TP_ATTRIBUTE1–15 — Descriptive flexfield segments specific to the trip stop context.
- ATTRIBUTE_CATEGORY / ATTRIBUTE1–15 — The standard developer (DDF) flexfield segments. This is the column family that resolves a search for "tp_attribute15": TP_ATTRIBUTE15 is the fifteenth trip-stop-specific descriptive flexfield segment, distinct from the generic ATTRIBUTE15.
- SHIPMENTS_TYPE_FLAG — The filter column; values "O"/"M" or null qualify for the view.
- WSH_LOCATION_ID, PHYSICAL_STOP_ID, PHYSICAL_LOCATION_ID, BATCH_ID — Supporting references for location resolution and batch grouping.
- LAST_UPDATE_DATE, CREATED_BY, REQUEST_ID and audit columns — Standard EBS who-columns and concurrent request attribution.
Common Use Cases and Queries
Typical uses include outbound trip stop reporting, carrier departure/arrival tracking, and flexfield-based extracts. Because TP_ATTRIBUTE15 is exposed directly, it is commonly queried when a customer has repurposed that segment for a business-specific value such as a dock code or carrier reference.
SELECT stop_id, trip_id, stop_sequence_number,
planned_arrival_date, actual_arrival_date,
tp_attribute_category, tp_attribute15
FROM apps.wsh_trip_stops_ob_grp_v
WHERE trip_id = :p_trip_id
ORDER BY stop_sequence_number;
To locate stops by a specific TP_ATTRIBUTE15 value:
SELECT stop_id, trip_id, stop_location_id, status_code FROM apps.wsh_trip_stops_ob_grp_v WHERE tp_attribute15 = :p_value;
Because the view already restricts rows to outbound-style groupings, additional filtering on SHIPMENTS_TYPE_FLAG is unnecessary, though it can be added for clarity. Users requiring inbound or all shipment types should query WSH_TRIP_STOPS directly.
-
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_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_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_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: 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: 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_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_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_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 ,
-
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_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 ,
-
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_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_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_DEL_DTL_ASSGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DEL_DTL_ASSGN_V, object_name:WSH_DEL_DTL_ASSGN_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DEL_DTL_ASSGN_V ,
-
View: WSH_DEL_DTL_ASSGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DEL_DTL_ASSGN_V, object_name:WSH_DEL_DTL_ASSGN_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DEL_DTL_ASSGN_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_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.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_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_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_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 ,