Field Force Automation sample client includes incorrect new job count

[CR #439408] The new job counter shows only the number of new emergency jobs with status Y01 or Y02 because the number of new emergency jobs is being incorrectly stored in the total number of new jobs counter.

Workaround: In the DatabaseUtilities.cs file, locate the method called UpdateNewJobCounts. On the next to last line of the method, locate:

Program.IndicatorsManager.NewJobsCount = newY01Y02JobCount;

Change this code to:

Program.IndicatorsManager.NewJobsCount = newJobCount;