Hi,
I want to see if the Earliest Start / Date Time of a Job queue is older than 1 day ago. How do I do this?
For example
Todayy := CALCDATE('<CD-1D>',TODAY);
Time := Time;
"Earliest Start Date/Time" := CREATEDATETIME(Todayy,Time);
IntDifference := CURRENTDATETIME - "Earliest Start Date/Time";
IF IntDifference > 1 THEN
This example returns a high value integer not what I am expecting.