How to Fix - Flight Following Times Validation

This violation usually occurs when users of Aircraft Portal doesn't follow a proper sequence when entering the various flight time such as Flight in to Gate, Fueling start time etc and leads to violation while entering the OOOI times in AF.


FlightFollowTimeCode table contains a column known as TimeSequence and times should be recorded in same sequence as mentioned to avoid the Violation Otherwise can be avoided using the below method.

Step-by-step guide

  1. Pull out the data from the table FlightFollowTimeCode using the below script

    select * from dbo.flightfollowtimecode
  2. Review the configured TimeSequence of the flight follow time codes with the entered flight times in Flight Follow.
  3. Enter the Flight Follow Times in the same sequence to avoid the Validation message window.
  4. NOTE - Use the below script in order to NULL the sequence and avoid the violation. This set up is UO specific and should not be applied to other customers without checking with Product Team.

    update dbo.flightfollowtimecode set TimeSequence=NULL