Search Results actual_departure_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
-
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: WSH.WSH_DELIVERY_LEG_DETAILS#
12.2.2
-
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: ONT.OE_UPGRADE_WSH_IFACE#
12.2.2
-
VIEW: OE.WSH_DEPARTURES#
12.2.2
-
VIEW: APPS.WSHFV_DEPARTURE
12.1.1
-
VIEW: APPS.WSHFV_DEPARTURE
12.2.2
-
View: WSHFV_DEPARTURE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_DEPARTURE, object_name:WSHFV_DEPARTURE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_DEPARTURE ,
-
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.WSH_TRIP_STOPS_INTERFACE#
12.2.2
-
VIEW: APPS.WSH_DEPARTURES_V
12.2.2
-
View: WSHFV_DEPARTURE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_DEPARTURE, object_name:WSHFV_DEPARTURE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_DEPARTURE ,
-
VIEW: WSH.WSH_DELIVERY_LEGS#
12.2.2
-
VIEW: APPS.WSHBV_TRIP_STOPS
12.1.1
-
VIEW: APPS.WSHBV_TRIP_STOPS
12.2.2
-
View: WSH_DEPARTURES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_DEPARTURES_V, object_name:WSH_DEPARTURES_V, status:VALID, product: OE - Order Entry , description: Departures for departure planning or ship confirm , implementation_dba_data: APPS.WSH_DEPARTURES_V ,
-
VIEW: APPS.WSH_DEPARTURES_V
12.1.1
-
VIEW: WSH.WSH_PICKING_BATCHES#
12.2.2
-
View: WSH_DEPARTURES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_DEPARTURES_V, object_name:WSH_DEPARTURES_V, status:VALID, product: OE - Order Entry , description: Departures for departure planning or ship confirm , implementation_dba_data: APPS.WSH_DEPARTURES_V ,
-
VIEW: WSH.WSH_TRIP_STOPS#
12.2.2
-
VIEW: APPS.WSH_PICKING_UPGRADE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICKING_UPGRADE_V, object_name:WSH_PICKING_UPGRADE_V, 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.WSH_PICKING_UPGRADE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICKING_UPGRADE_V, object_name:WSH_PICKING_UPGRADE_V, status:VALID,
-
VIEW: OE.WSH_DELIVERIES_INTERFACE#
12.2.2
-
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: 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: APPS.WSH_TRIP_STOPS_OB_GRP_V
12.2.2
-
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_DEPARTURE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_DEPARTURE, object_name:WSHBV_DEPARTURE, status:VALID,
-
VIEW: APPS.WSHBV_DEPARTURE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_DEPARTURE, object_name:WSHBV_DEPARTURE, status:VALID,
-
VIEW: APPS.WSHFV_DEPARTURE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_DEPARTURE, object_name:WSHFV_DEPARTURE, status:VALID,
-
VIEW: APPS.WSHFV_DEPARTURE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_DEPARTURE, object_name:WSHFV_DEPARTURE, status:VALID,
-
APPS.WSH_SHIPPING_INFO SQL Statements
12.1.1
-
TABLE: ISC.ISC_DBI_TMP_TRIP_STOPS
12.1.1
owner:ISC, object_type:TABLE, object_name:ISC_DBI_TMP_TRIP_STOPS, status:VALID,
-
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: OE.WSH_DEPARTURES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DEPARTURES, object_name:WSH_DEPARTURES, status:VALID,
-
VIEW: OE.WSH_DEPARTURES#
12.2.2
owner:OE, object_type:VIEW, object_name:WSH_DEPARTURES#, status:VALID,
-
APPS.WSH_SHIPPING_INFO SQL Statements
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 ,
-
TABLE: OE.WSH_DEPARTURES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DEPARTURES, object_name:WSH_DEPARTURES, status:VALID,
-
View: WSH_SHIPPING_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_SHIPPING_DETAILS_V WSH.WSH_SHIPPING_DETAILS_V, object_name:WSH_SHIPPING_DETAILS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_SHIPPING_DETAILS_V ,
-
View: WSH_SHIPPING_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_SHIPPING_DETAILS_V WSH.WSH_SHIPPING_DETAILS_V, object_name:WSH_SHIPPING_DETAILS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_SHIPPING_DETAILS_V ,
-
VIEW: ONT.OE_UPGRADE_WSH_IFACE#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_UPGRADE_WSH_IFACE#, 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,