Search Results trip_status
Overview
APPS.WSH_PURGE_SET_V is a view owned by the APPS schema and registered in Oracle E-Business Suite under the FND design data reference WSH.WSH_PURGE_SET_V. It is classified as an internal view (View Type: Internal), and the Oracle documentation carries the explicit warning that it is Oracle Internal Use Only; Oracle Corporation does not support access to application data through this object except from standard Oracle Applications programs. Its status in both 12.1.1 and 12.2.2 is VALID.
Functionally, the view presents a denormalized shipping picture: trip headers, the stops and legs that make up a trip, the deliveries assigned to those trips, and the delivery details and document instances beneath them. Because the column list is organised hierarchically from trip to delivery detail, the view is oriented toward purge and archival processing logic rather than general inquiry. The presence of the TRIP_STATUS column—the term the user searched for—indicates that consumers of this view are expected to filter or evaluate trips by lifecycle state (for example, closed or cancelled trips eligible for removal) before acting on the associated shipping records.
Underlying Base Objects
The documented base objects underlying WSH_PURGE_SET_V span the shipping, order management, customer, and inventory schemas:
- WSH_TRIPS, WSH_TRIP_STOPS, WSH_DELIVERY_LEGS — trip header, stop, and leg structures.
- WSH_NEW_DELIVERIES, WSH_DELIVERY_ASSIGNMENTS_V, WSH_DELIVERY_DETAILS — delivery and delivery-detail structures, including the assignment of deliveries to trips.
- WSH_DOCUMENT_INSTANCES — bill-of-lading and waybill document records.
- WSH_LOCATIONS — shipping and drop-off locations.
- WSH_LOOKUPS (VIEW) — lookup meanings, such as weight UOM and shipment direction.
- MTL_PARAMETERS, MTL_UNITS_OF_MEASURE_VL — inventory organisation defaults and unit-of-measure details.
- HZ_CUST_ACCOUNTS, HZ_PARTIES — customer identifiers and names.
- PO_VENDORS — supplier information for inbound or drop-ship movements.
All WSH and MTL objects are referenced through APPS synonyms, and the join structure follows the natural parent-child path WSH_TRIPS → WSH_TRIP_STOPS/WSH_DELIVERY_LEGS → WSH_DELIVERY_ASSIGNMENTS_V → WSH_NEW_DELIVERIES → WSH_DELIVERY_DETAILS, with lookups, locations, customer, and inventory tables supplying descriptive attributes.
Key Columns
The view exposes a hierarchical set of columns. TRIP_ID, TRIP_NAME, TRIP_STATUS, and TRIP_CREATION_DATE identify the trip and its state; TRIP_SHIPMENTS_TYPE classifies the trip's shipment content. The pickup tier is represented by PICKUP_STOP_ID, PICKUP_STOP_SHIPMENTS_TYPE, PICKUP_STOP_GROSS_WEIGHT, PICKUP_STOP_WEIGHT_UOM, PICKUP_STOP_WEIGHT_UOM_MEANING, and PICKUP_STOP_SHIP_DATE. LEG_ID, LEG_GROSS_WEIGHT, and LEG_WEIGHT_UOM describe transportation legs.
Delivery-level columns include DEL_ID, DEL_NAME, DEL_SHIP_FROM_ORG, DEL_PICKUP_DATE, DEL_SHIP_DATE, DEL_DROPOFF_DATE, DEL_SHIPPING_CONTROL, DEL_SHIPMENT_DIRECTION, DEL_WAYBILL, DEL_GROSS_WEIGHT, DEL_WEIGHT_UOM, DEL_CUSTOMER_ID, DEL_CUSTOMER_NAME, DEL_ULT_DO_LOCATION_ID, DEL_UI_LOCATION_CODE, and DEL_CREATION_DATE. At the delivery-detail tier the view surfaces DD_ID, DD_LINE_DIRECTION, DD_SHIPPING_CONTROL, DD_SOURCE_CODE and DD_SOURCE_MEANING, DD_SOURCE_HEADER_ID and DD_SOURCE_HEADER_NUMBER, DD_SOURCE_HEADER_TYPE_ID and DD_SOURCE_HEADER_TYPE_NAME, DD_PO_SHIPMENT_LINE_ID, and the BOL column. TRIP_STATUS is the principal qualifier for purge eligibility, while DEL_GROSS_WEIGHT and LEG_GROSS_WEIGHT support assessment of trip contents.
Common Use Cases and Queries
Typical use cases are purge-eligibility analysis, shipping audit reporting, and data-extraction feeds to external archives. Although direct customer access is unsupported, the view is valuable as a reference model for understanding how trip, delivery, and delivery-detail data interrelate. A representative query filtering on trip status is:
SELECT TRIP_ID, TRIP_NAME, TRIP_STATUS, TRIP_CREATION_DATE,
DEL_ID, DEL_NAME, DEL_SHIP_DATE, DEL_GROSS_WEIGHT
FROM APPS.WSH_PURGE_SET_V
WHERE TRIP_STATUS IN ('CLOSED','CANCELLED')
ORDER BY TRIP_CREATION_DATE;
A second pattern aggregates trip weight for capacity verification:
SELECT TRIP_NAME, TRIP_STATUS,
SUM(LEG_GROSS_WEIGHT) AS TOTAL_LEG_WEIGHT
FROM APPS.WSH_PURGE_SET_V
GROUP BY TRIP_NAME, TRIP_STATUS;
Because the object is internal, any custom usage should be limited to read-only queries for diagnostics or reconciliation, and the underlying WSH tables should be treated as the authoritative source.
-
Lookup Type: TRIP_STATUS
12.2.2
product: WSH - Shipping Execution , meaning: Trip Status , description: Trip Status ,
-
Lookup Type: TRIP_STATUS
12.1.1
product: WSH - Shipping Execution , meaning: Trip Status , description: Trip Status ,
-
VIEW: APPS.WSH_PURGE_SET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PURGE_SET_V, object_name:WSH_PURGE_SET_V, status:VALID,
-
View: WSH_PURGE_SET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PURGE_SET_V, object_name:WSH_PURGE_SET_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PURGE_SET_V ,
-
VIEW: APPS.WSH_TRIPS_V
12.1.1
-
VIEW: APPS.WSH_TRIPS_V
12.2.2
-
VIEW: APPS.WSH_PURGE_SET_V
12.1.1
-
VIEW: APPS.WSH_PURGE_SET_V
12.1.1
owner:APPS, object_type:VIEW, object_name:WSH_PURGE_SET_V, status:VALID,
-
VIEW: APPS.WSH_PURGE_SET_V
12.2.2
-
APPS.WSH_WSHRDMBL_XMLP_PKG SQL Statements
12.2.2
-
APPS.WSH_WSHRDMBL_XMLP_PKG SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
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 ,
-
12.1.1 FND Design Data
12.1.1
-
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 ,
-
PACKAGE: APPS.WSH_WSHRDMBL_XMLP_PKG
12.1.1
-
PACKAGE: APPS.WSH_WSHRDMBL_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.WSH_WSHRDMBL_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.WSH_WSHRDMBL_XMLP_PKG
12.2.2
-
APPS.FTE_DELIVERY_LEGS_PVT SQL Statements
12.2.2
-
APPS.FTE_DELIVERY_LEGS_PVT SQL Statements
12.1.1
-
APPS.CSF_TASKS_PUB SQL Statements
12.1.1
-
APPS.CSF_TASKS_PUB SQL Statements
12.2.2
-
APPS.CSF_TASKS_PUB dependencies on CAC_SR_OBJECT_CAPACITY
12.1.1
-
APPS.WSH_WSHRDMBL_XMLP_PKG dependencies on FND_LOOKUP_VALUES_VL
12.2.2
-
APPS.WSH_WSHRDMBL_XMLP_PKG dependencies on FND_LOOKUP_VALUES_VL
12.1.1
-
APPS.FTE_FREIGHT_PRICING dependencies on WSH_LOOKUPS
12.2.2
-
APPS.FTE_FREIGHT_PRICING dependencies on WSH_LOOKUPS
12.1.1
-
APPS.CSF_TASKS_PUB dependencies on JTF_TASK_ASSIGNMENTS
12.1.1
-
APPS.CSF_TASKS_PUB dependencies on CAC_SR_OBJECT_CAPACITY
12.2.2
-
PACKAGE BODY: APPS.WSH_DELIVERY_VALIDATIONS
12.2.2
-
APPS.CSF_TASKS_PUB dependencies on JTF_TASK_ASSIGNMENTS
12.2.2
-
PACKAGE BODY: APPS.WSH_DELIVERY_VALIDATIONS
12.1.1
-
APPS.FTE_FREIGHT_PRICING SQL Statements
12.2.2
-
APPS.FTE_FREIGHT_PRICING SQL Statements
12.1.1
-
APPS.CSF_TASKS_PUB dependencies on JTF_TASK_STATUSES_B
12.1.1
-
APPS.WSH_DELIVERY_VALIDATIONS dependencies on WSH_TRIPS
12.1.1
-
APPS.WSH_DELIVERY_VALIDATIONS dependencies on WSH_TRIPS
12.2.2
-
APPS.CSF_TASKS_PUB dependencies on JTF_TASKS_B
12.2.2
-
APPS.CSF_TASKS_PUB dependencies on JTF_TASKS_B
12.1.1
-
PACKAGE BODY: APPS.CSF_TASKS_PUB
12.1.1
-
PACKAGE BODY: APPS.WSH_CUST_MERGE
12.1.1
-
PACKAGE BODY: APPS.WSH_CUST_MERGE
12.2.2
-
PACKAGE BODY: APPS.FTE_DELIVERY_LEGS_PVT
12.2.2
-
APPS.WSH_CUST_MERGE dependencies on WSH_DEBUG_SV
12.1.1
-
APPS.WSH_CUST_MERGE dependencies on WSH_DEBUG_SV
12.2.2
-
PACKAGE BODY: APPS.CSF_TASKS_PUB
12.2.2
-
PACKAGE BODY: APPS.FTE_DELIVERY_LEGS_PVT
12.1.1
-
APPS.CSF_TASKS_PUB dependencies on JTF_TASK_STATUSES_B
12.2.2
-
APPS.WSH_CUST_MERGE dependencies on ARP_MESSAGE
12.1.1