Search Results actual_arrival_date
Overview
APPS.FTE_PTRK_TOKENS_V is an Oracle E-Business Suite reporting view owned by the APPS schema. The name combines the Oracle Transportation Management "FTE" (Freight/Transportation Engine) prefix, "PTRK" (possibly pertaining to "Token Tracking"), and "TOKENS", suggesting the view flattens one row per delivery leg into a set of informational "token" fields used by downstream reporting or integration layers. Specifically, it denormalizes transportation stop and location information associated with a delivery leg, exposing origin and destination geography together with formatted shipment date components. The view is read-only and is intended for query and integration consumption rather than transactional use. In EBS 12.1.1 and 12.2.2, the view is a convenience layer over Oracle Shipping (WSH) tables, sparing report developers the complexity of joining delivery legs, trip stops, and locations themselves. The searched term actual_departure_date corresponds directly to a source column mapped into the view's SHIP_FROM_DATE output, confirming its relevance in shipment tracking and delivery-performance reporting.
Underlying Base Objects
Per the ETRM 12.2.2 metadata, the view is defined over three referenced base objects, each exposed via a SYNONYM resolving to the WSH schema:
- WSH_DELIVERY_LEGS — the driving table (aliased LEGS), supplying DELIVERY_LEG_ID and the PICK_UP_STOP_ID / DROP_OFF_STOP_ID keys.
- WSH_TRIP_STOPS — joined twice (STOPS1 for pick-up, STOPS2 for drop-off), supplying ACTUAL_DEPARTURE_DATE and ACTUAL_ARRIVAL_DATE.
- WSH_LOCATIONS — joined twice (LOC1 for destination, LOC2 for origin), supplying postal code, city, state, and country.
The join path is: LEGS.PICK_UP_STOP_ID = STOPS1.STOP_ID; LEGS.DROP_OFF_STOP_ID = STOPS2.STOP_ID; STOPS1.STOP_LOCATION_ID = LOC1.WSH_LOCATION_ID; STOPS2.STOP_LOCATION_ID = LOC2.WSH_LOCATION_ID. Note the column naming is unintuitive: LOC1 populates the DESTINATION_* columns while LOC2 populates the ORIGIN_* columns.
Key Columns
- DELIVERY_LEG_ID — unique identifier of the delivery leg; the de facto primary key of the view.
- SHIP_FROM_DATE — formatted from STOPS1.ACTUAL_DEPARTURE_DATE using the mask
'YYYY-MM-DD-HH24:MI:SS'. This is the searched field users often refer to asactual_departure_date. - SHIP_FROM_YEAR / SHIP_FROM_MONTH / SHIP_FROM_DAY — derived character components of the departure date for grouping and calendar reporting.
- SHIP_TO_DATE, SHIP_TO_YEAR, SHIP_TO_MONTH, SHIP_TO_DAY — analogous fields derived from STOPS2.ACTUAL_ARRIVAL_DATE.
- ORIGIN_* and DESTINATION_* — POSTAL_CODE, CITY, STATE, COUNTRY_CODE for each endpoint.
Because dates are stored as character strings, ordering or filtering on SHIP_FROM_DATE relies on the ISO-like format sort order rather than native DATE arithmetic.
Common Use Cases and Queries
Typical uses include shipment performance analysis, lane/geography reporting, and data feeds to external transportation or analytics systems. A representative query listing recent departures by destination:
SELECT delivery_leg_id, ship_from_date, ship_to_date,
origin_city, destination_city, destination_country_code
FROM apps.fte_ptrk_tokens_v
WHERE ship_from_year = '2024'
ORDER BY ship_from_date;
A performance comparison of actual departure versus arrival, or a filter on a specific postal code destination, both leverage the same denominator columns. Because ACTUAL_DEPARTURE_DATE may be null until a stop is confirmed, consumers should treat blank SHIP_FROM_DATE as "not yet departed." Developers requiring true date arithmetic should cast the formatted strings back to DATE or query WSH_TRIP_STOPS directly.
-
VIEW: APPS.FTE_PTRK_TOKENS_V
12.2.2
-
VIEW: APPS.FTE_PTRK_TOKENS_V
12.1.1
-
MATERIALIZED VIEW: APPS.ISC_TRN_001_MV
12.1.1
-
VIEW: WSH.WSH_DELIVERY_LEG_DETAILS#
12.2.2
-
View: FTE_PTRK_TOKENS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FTE.FTE_PTRK_TOKENS_V, object_name:FTE_PTRK_TOKENS_V, status:VALID, product: FTE - Transportation Execution , implementation_dba_data: APPS.FTE_PTRK_TOKENS_V ,
-
View: FTE_PTRK_TOKENS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FTE.FTE_PTRK_TOKENS_V, object_name:FTE_PTRK_TOKENS_V, status:VALID, product: FTE - Transportation Execution , implementation_dba_data: APPS.FTE_PTRK_TOKENS_V ,
-
VIEW: WSH.WSH_DELIVERY_LEGS#
12.2.2
-
VIEW: APPS.WSHBV_TRIP_STOPS
12.1.1
-
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: 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: WSH.WSH_TRIP_STOPS#
12.2.2
-
VIEW: WSH.WSH_TRIP_STOPS_INTERFACE#
12.2.2
-
VIEW: APPS.WSHBV_TRIP_STOPS
12.2.2
-
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 ,
-
TABLE: ISC.MLOG$_ISC_DBI_TRIP_STOPS_F
12.1.1
owner:ISC, object_type:TABLE, object_name:MLOG$_ISC_DBI_TRIP_STOPS_F, status:VALID,
-
VIEW: WSH.WSH_DELIVERY_LEG_DETAILS#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_DELIVERY_LEG_DETAILS#, status:VALID,
-
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.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.WSH_TRIP_STOPS_OB_GRP_V
12.1.1
-
VIEW: APPS.WSH_TRIP_STOPS_OB_GRP_V
12.2.2
-
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_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 ,
-
TABLE: ISC.ISC_DBI_TMP_TRIP_STOPS
12.1.1
owner:ISC, object_type:TABLE, object_name:ISC_DBI_TMP_TRIP_STOPS, status:VALID,
-
APPS.WSH_SHIPPING_INFO SQL Statements
12.1.1
-
APPS.WSH_TRIP_STOPS_ACTIONS SQL Statements
12.1.1
-
APPS.WSH_SHIPPING_INFO SQL Statements
12.2.2
-
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,
-
VIEW: APPS.WSH_DELIVERY_LEGS_OB_GRP_V
12.1.1
-
VIEW: WSH.WSH_DELIVERY_LEGS#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_DELIVERY_LEGS#, status:VALID,
-
APPS.WSH_TRIP_STOPS_ACTIONS SQL Statements
12.2.2
-
VIEW: WSH.WSH_TRIP_STOPS#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_TRIP_STOPS#, status:VALID,
-
Lookup Type: OMRSVORD_ORDER_BY
12.1.1
product: ONT - Order Management , meaning: Reserve Orders Concurrent Program Order By , description: Order By values for the Reserve Orders Concurrent Program ,
-
VIEW: APPS.WSH_DELIVERY_LEGS_OB_GRP_V
12.2.2
-
TABLE: WSH.WSH_DELIVERY_LEG_DETAILS
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_DELIVERY_LEG_DETAILS, object_name:WSH_DELIVERY_LEG_DETAILS, status:VALID,
-
TABLE: WSH.WSH_DELIVERY_LEG_DETAILS
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_DELIVERY_LEG_DETAILS, object_name:WSH_DELIVERY_LEG_DETAILS, status:VALID,
-
TABLE: ISC.ISC_DBI_TRIP_STOPS_F
12.1.1
owner:ISC, object_type:TABLE, object_name:ISC_DBI_TRIP_STOPS_F, 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: APPS.JTM_OE_ORDER_LINES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:JTM_OE_ORDER_LINES_ALL_V, status:VALID,
-
Lookup Type: OMRSVORD_ORDER_BY
12.2.2
product: ONT - Order Management , meaning: Reserve Orders Concurrent Program Order By , description: Order By values for the Reserve Orders Concurrent Program ,
-
VIEW: APPS.JTM_OE_ORDER_LINES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:JTM_OE_ORDER_LINES_ALL_V, status:VALID,
-
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: 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: CSP_REQUIRED_PARTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_REQUIRED_PARTS_V, object_name:CSP_REQUIRED_PARTS_V, status:VALID, product: CSP - Spares Management , description: View which gives you the complete status of spare part requirements , implementation_dba_data: APPS.CSP_REQUIRED_PARTS_V ,
-
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: 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: 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,