Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added new View Assisted Dispatch Results option to the Right-Click Menu section in X Dispatch 22.3

Anchor
top
top
The On-Demand Dispatch board is used to dispatch orders to drivers and to monitor the driver's pickup and delivery activity. It consists of two summary grids:

...

  • Order Status: Double click on an order in the Active Orders grid. Displays information on the status of the order. See Order Status.
  • Driver Active Work: Double click on a driver in the Active Drivers grid. Displays the orders and routes currently assigned to the driver. See Driver Active Work

    InfoFor X Dispatch 20.0 and older it is Driver Active Orders, which displays orders currently assigned to the driver. See Driver Active Orders (X Dispatch 20.0 or Older).

To get to the On-Demand Dispatch board, go to On DemandDispatch.

...

Anchor
activeOrders
activeOrders
Active Orders Grid

...

Orders with a due date beyond 60 days prior to the current date will not appear on the active orders dispatch board. 

Expand
titleTo find all orders that have not been marked as complete, you must run the following Advanced Find...


Paste code macro
languagesql
SELECT DISTINCT O.*
FROM
tblOrder O WITH (NOLOCK)
INNER JOIN tblOrderTypes OT WITH (NOLOCK) ON O.OrderType = OT.OrderTypeID
INNER JOIN tblOrderStatus OS WITH (NOLOCK) ON O.OrderID = OS.OrderID
INNER JOIN tblCustomer C WITH (NOLOCK) ON O.CustID = C.CustID
WHERE
(OT.AIDispatch = 1)
AND (O.status <> 4) --canceled
AND ((C.PodRequired = 0 AND OS.Delivered is null) OR (C.PodRequired = 1 AND (OS.Delivered is null OR not Len(OS.POD) > 0)))


The Active Orders grid is where orders are assigned to drivers and monitored. 

...

For X Dispatch 20 or newer. For older versions, this will be yellow.

at the Origin Address. No time will be displayed. 

  • Dark Green – Order is picked up. No minutes will be displayed.  

  • Yellow – Pickup deadline approaching. Based on the Pickup warning time set on order type for the order. 

  • Red – Pickup deadline past due. The number of minutes that have passed between the Pickup To and the current time is displayed.
  • Magenta – Future pickup. The number of minutes until the order's Pickup From time. 
  • Cyan  – Future pickup where the ready time is absolute time with no pickup window (the Pickup From and Pickup To time on the order is the same).
  • Blue - Depot scan. No time will be displayed.
  • Icons

    •  Unconfirmed Order - Displays if the driver has not confirmed the order after 5 minutes of being dispatched.  
    •  Rejected Order - Displays when the driver rejects the dispatched order.
    For X Dispatch 20 or newer. For older versions, this will be yellow.

  • Dark Green – Order has been delivered. No minutes will be displayed.

  • Yellow – Delivery deadline approaching. Based on the Delivery warning time set on order type for the order. 

  • Red – Delivery deadline past due. The number of minutes that have passed between the Delivery To and the current time is displayed.
  • Magenta – Future delivery. The number of minutes until the order's Delivery From time.
  • Cyan  – Future delivery where the ready time is absolute time with no pickup window (the Delivery From and Delivery To time on the order is the same).
  • Blue - Depot scan. No time will be displayed.
  • Requires X Dispatch 20.0.4 or newer.Requires X Dispatch 20.0.4 or newer.

    The timestamp of when the driver arrived at the origin. 

    Field NameDescription
    Driver IDDriver ID of the driver assigned to the order. A blank DriverID means that there is no driver is assigned to the order.
    Order ID

    Order ID of the order.

    A flag  will appear to the left of the order ID if "Set Dispatch Flag" is set on the comment field. See Orders.

    The order ID will be highlighted magenta if it is a return or continuation order. Return and continuation orders are designated by a number with a decimal extension. For example, if a 3 part delivery's first order ID is "3456" then the two additional ID's for that are are "3456.01" and "3456.02".

    Cust

    Customer ID for the customer associated with the order. 

    The customer ID is colored based on the Dispatch Priority setting on the Orders tab of the customer record.  

    • 0 - Black
    • 1 - Green
    • 2 - Blue
    • 3 - Magenta
    • 4 - Cyan
    • 5 through 10 - Red
    CSR

    The username of the user that entered the order or method of how the order was placed. 

    Orders placed online through your website or API will be highlighted yellow

    PriorityDispatch Priority setting on the Orders tab of the customer record.
    P/U In

    Time in minutes between the Pickup To time (pickup deadline) on the order and the current time. An "F" after the time displays for future orders.

    Highlight Colors

    • Light Green - Driver has arrived at the Origin Address. No time will be displayed. 

    Info
    Del In

    Time in minutes between the Delivery To time (delivery deadline) on the order and the current time. An "F" after the time displays for future orders. 

    Highlight Colors

    • Light Green - Driver has arrived at the Destination Address. No time will be displayed. 

    Info
    OriginNameOrigin Address name on the order.
    OriginAddress

    Origin Address on the order.

    The address will be in red if the address has not been validated.

    The address will be highlighted in green if the address is marked as the next stop for the driver assigned to the order.

    OriginCityOrigin Address city.
    OriginStateOrigin Address state.
    OriginZipOrigin Address zip or postal code.
    OriginPlus4The additional four numbers of the Origin Address zip or postal code.
    OriginCommentsOrigin Remarks for the order. If the order has Origin Remarks it will be highlighted magenta.
    OriginValidated

    Whether or not the Origin Address has been validated.

    • 0 - If the Origin Address has not been validated.
    • 9 - If the Origin Address has been validated.

    DestName

    Destination Address name on the order.
    DestAddress 

    Destination Address on the order.

    The address will be in red if the address has not been validated.

    The address will be highlighted in green if the address is marked as the next stop for the driver assigned to the order.

    DestCityDestination Address city.
    DestStateDestination Address state.
    DestZipDestination Address zip or postal code.
    DestPlus4The additional four numbers of the Destination Address zip or postal code.
    DestCommentsDestination Remarks for the order. If the order has Destination Remarks it will be highlighted magenta.
    DestValidated

    Whether or not an address has been validated.

    • 0 - If the Destination Address has not been validated.
    • 9 - If the Destination Address has been validated.
    Ref1References for the order.
    Ref2
    BillingGroupBilling Group of the order.
    ReadyTimeFromThe order's Pickup From time.
    ReadyTimeToThe order's Pickup To time.
    DueTimeFromThe order's Delivery From time.
    DueTimeToThe order's Delivery To time.
    DispatchedThe timestamp of when the order was dispatched to a driver from either the On-Demand Dispatch Board or order form. 
    TransmittedThe timestamp of when the order was transmitted to X Mobile. 
    ReceivedThe timestamp of when the order was received by X Mobile. 
    ConfirmedThe timestamp of when the order was confirmed by the driver.
    RejectedByDriverThe timestamp of when the order was rejected by the driver.
    PickedUpThe timestamp of when the order was picked up by the driver. 
    ReceivedAtDepotThe timestamp of when the order was received at the depot.
    DeliveredThe timestamp of when the order was delivered by the driver.
    VerifiedForBillingThe timestamp of when the order was verified by an X Dispatch Operations App user
    AtOrigin
    Info
    Info
    AtDestination

    arrived at the origin. 

    AtDestination

    The timestamp of when the driver arrived at the destination. 

    PiecesNumber of pieces in the order.
    WeightThe total weight of parcels/pieces in the order.
    OrderTypeThe Order Type ID.
    TypeDescription of the order type.
    IsParent

    If the order is the parent order of multiple order.

    • 0 - Order has no return or continuation orders associated with it or is not a parent order.
    • 1 - Order has return or continuation orders associated with it and is the parent order.

    Example

    The first order in a 2 part delivery order, order ID 3456, is the parent and will have the value of "1" and the additional order, order ID 3456.01, will have the value of "0".

    CallerThe Contact on the order.
    OriginDispatchZoneZone associated with the Origin Address.
    DestDispatchZoneZone associated with the Destination Address.
    AIDispatch

    A value of -1 indicates the order has been sent to the dispatch board. 

    PickupWarningPickup warning time set on order type for the order.
    DeliveryWarningDelivery warning time set on order type for the order.
    FleetIDFleet ID assigned to the order.
    FleetNameDescription of the fleet.
    EmailEmail on the order.
    NextStop

    If the stop is marked as the next stop for the associated driver.

    • P - The Origin Address of the order is marked as the next stop.
    • D - The Destination Address of the order is marked as the next stop.
    DriverPercentThe percentage value is used to calculate how much the driver will be paid. The Percent amount in the driver tab of the order form. 

    LocalName 

    Name of the customer associated with the order. 

    The customer ID is colored based on the Dispatch Priority setting on the Orders tab of the customer record.  

    • 0 - Black
    • 1 - Green
    • 2 - Blue
    • 3 - Magenta
    • 4 - Cyan
    • 5 through 10 - Red
    ServerTimeThe current server time.
    OrderCommentsOrder Comments on the order.
    ParcelTypeThe selected Parcel Info on the order.
    ServiceTypeService Type  ID on the order.
    ServiceDescription of the service type.
    DispatchReminderDispatch Reminder set on the customer record. 
    OriginLatThe latitude of the Origin Address.
    OriginLonThe longitude of the Origin Address.
    DestLatThe latitude of the Destination Address.
    DestLonThe longitude of the Destination Address.
    DisplayWarning

    Whether or not a warning icon for an unconfirmed or rejected stop is displayed.

    • 0 - No icon is displayed in the P/U In column.
    • 1 - Rejected or unconfirmed icon is displayed in the P/U In column.
    AutoDispatchFlag

    Deprecated field. 

    Score

    Deprecated field previously used for scoring jobs for a driver using XIAD. 

    Pickup ETAEstimated time and date that the driver will arrive at the Origin address. If the order has been picked up it will have a value of "Completed".
    Deliver ETAEstimated time and date that the driver will arrive at the Destination address. If the order has been picked up it will have a value of "Completed".
    TotalParcels

    Total number of parcels existing on the order. 

    Tip
    titleQuick Tip

    Show OSD must be selected in the right-click menu for this field to be populated.


    OverParcels

    Total number of parcels indicated as "Overages" on the order (parcels not originally on the order as expected). 

    Tip
    titleQuick Tip

    Show OSD must be selected in the right-click menu for this field to be populated.


    Short

    Total number of parcels indicated as "Short" on the order (unscanned or undelivered parcels). 

    Tip
    titleQuick Tip

    Show OSD must be selected in the right-click menu for this field to be populated.


    ExceptionsTotal number of parcels indicated as "Exceptions" on the order.
    DepartureTimeThe time of the departing flight on the order.
    DepartureAirlineThe name of the airline of the departure flight on the order.
    DepartureFlightNumThe flight number of the departing flight on the order.
    ArrivalTimeThe time of the arrival flight on the order.
    ArrivalAirlineThe name of the airline of the arrival flight on the order.
    ArrivalFlightNumThe flight number of the arrival flight on the order.
    If the order has a dispatch flag set, a red flag icon Image Modified will be displayed.
    AttachmentsThe number of attachments on the order.
    DepotScan

    Displays a "1" if a depot scan was performed on the order barcode. See Dispatch - Depot Scan

    Tip

    A depot scan on the order barcode requires X Route and will add a timestamp to the following order status fields Confirmed, Picked Up, and At Depot.


    BOLOrder BOL on the order.
    MasterBOLMaster BOL on the order.
    FlightManifestIdConsolidation Manifest ID that the order is on. 
    BatchThe batch group name of the order which can be set by selecting an order and right-clicking the order to select Add Batch... or pressing the [ key.
    OrderCountThe number of pieces/parcels on the order.
    DispatchWarningMinutesDispatch show time on the order type of the order.
    ReceivedAtDockThe timestamp of when the order was received at the dock. 
    Alternate LookupAlternate Lookup for the customer associated to the order.
    UserDataColumns UserData0 - UserData12 to display the order User Fields.
    CreatedWhenThe timestamp of when the order was created.

    ...

    Tip
    titleQuick Tip
    You can select more than 1 order by using CTRL + Click or Shift + Click keys on your keyboard and clicking on the gray box (first column on the left).

    ...

    Rank Drivers (Num 7)

    ...

    ).


    Requires X Dispatch 22.0 or newer.
    SelectionDescription

    Rank Drivers (Num 7)

    Rank driver to find drivers best suited for a selected order. See Driver Ranking Configuration.
    Request Assisted Dispatch... (=)

    Send the selected order to assisted dispatch route optimization to find the best driver to assign it to. See Assisted Dispatch


    View Assisted Dispatch Results... (a)

    Opens the Assisted Dispatch window to view the recommendations of the last request.

    Enabled after a request for assisted dispatch on the order has been made.

    Dispatch Driver... (Num 6)

    Opens a form to dispatch or remove a driver from the order.

    Edit Order... (Num 8)

    Open the order form to edit the order.

    Edit Order Notes... (')

    Open the order form and selects the Notes tab
    Edit Order User Fields... (u)Open the order form and selects the User Fields tab
    Update Status

    Update the status of the selected order(s) to 

    • Confirmed (Num 1)
    • Picked Up (Num 2)
    • Delivered (Num 3)

    Edit Status... (Enter)

    Open the Order Status form for the order.
    Make Next Stop

    Select which address of the order should be marked as the next stop for the driver.

    • Origin (Num 4)
    • Destination (Num 5)

    Remove Driver... (CTRL + Delete)

    Remove the driver from the order. The driver will receive a notification that the order has been deleted.
    Find ParcelFind a parcel using parcel tracking information. If a parcel is found the order form will be displayed.
    Check In/Out ParcelsNot available/Not functional.

    Add to Batch ([)

    Add to or create a new group of orders on the dispatch board. You can use the Look For and Search Under "Batch" to filter and display the batch. 

    Note

    If the order is already associated with a batch this will override the original Batch value.

    Example

    You can batch together orders to "hold" them for a driver until he/she logs in.

    Add to Consolidation ManifestAdd order to a consolidation manifest that can be printed and distributed to a delivery person.
    Run Custom ProcedureAllows access to specific custom programs that may be available. This will be grayed out if you do not have any custom procedures. 

    Re-send Message (Insert)

    Resends order information to delivery personnel via X Mobile.  Feature only available for orders already sent via X Mobile.

    Send Cancel Message (Delete)

    Send a cancel message to the driver. 

    Note
    This does not cancel the order or remove the driver from the order.  


    Filter unassigned orders by fleets... (*)

    Filter orders to show only unassigned orders for a selected fleet.
    Toggle current/future orders (/)Filter orders to show only future orders. Future orders are configured to display based on the Dispatch show time on the order type of the order.
    View Unassigned / Unconfirmed Only

    Filter orders to show only unassigned and unconfirmed orders. You must refresh the dashboard after selecting or unselecting this option. 

    Show OSDUpdates the TotalParcels, OverParcels, and Short columns to display data.
    Show User DataAdd columns (UserData0 - UserData12) to the Active Orders grid to display the order User Fields.
    Highlight After Dispatch
    Info

    Where the highlight should be immediately after dispatch.

    • Top Row - The order at the top.
    • Last Dispatched Job - The order that was just dispatched.
    Save Layout (Num 0)Saves the current layout. See Grid Layouts on the Dispatch Board.
    Reset LayoutResets dispatch field layout. See Grid Layouts on the Dispatch Board.
    Load Layouts...Load a layout previously saved using the "Save Layout" function. See Grid Layouts on the Dispatch Board.
    Show/Hide Order FieldsAdds or remove columns on the Active Orders Grid.  
    Find Order... (-)Find an order by on order ID in the Active Orders grid. If an order is found, the order will be highlighted.
    Find Driver... (.)Find a driver by driver ID in the Active Orders grid. If the driver is found, the first order assigned to the driver will be highlighted.
    Get Directions...Get directions from the Origin address to the Destination address from Google.
    Get Directions to Origin with Google

    Get directions from your location to the Origin address from Google.

    Get Directions to Destination with Google

    Get directions from your location to the Destination address from Google.

    Sync Driver Grid... (+)

    Highlight the driver associated with the order in the Active Drivers grid.

    Merge Grouped ValuesMerges any cells to the left of the thick black bar, with the same value.
    Toggle Grid OrientationSwitches dispatch screen orientation between horizontal and vertical.

    Back to top.

    Anchor
    activeDrivers
    activeDrivers
    Active Drivers Grid

    The Active Drivers grid displays the same X Dispatch information as the route dispatch board. Order information is not included in this section. 

    Insert excerpt
    X Route - Dispatch
    X Route - Dispatch
    nopaneltrue

    Back to top.


    Page Properties
    hiddentrue


    CXTU Courses/Lessons
    • Dispatcher Role Training: Dispatch Boards
    • Dispatcher Role Training: Dispatch Boards - Orders Dispatching (Legacy)
    • On-Boarding Training: Order Entry & Dispatch Board


    ...