Behavior:
Function Sequence Error encountered after an upgrade to Fortis 2.6.0.
Solution:
This error is the result of a missing column called Status in the picklist table which wasn't written there during the upgrade.
To resolve this issue, do the following:
- Open SQL Management Studio
- Select "New Query" then select the appropriate database from the picklist to the left of the Execute button
- Enter the following
ALTER TABLE dbo.FPL1*
ADD Status varchar(1)
* These are the tables corresponding to your picklists in Fortis. You want to identify all of these and run the above command to each picklist table.