nrd

Comments

  • returncode = 0 will return successful logons... It should be != 0 or the specific error you are looking for (e.g. 1017).
  • There seems to be a problem with the math (Version 9.2.110) %FREQUENCY% appears to be in minutes. The above code is subtracting 60 (1 hour) from the current timestamp which means in the last 60 days. Something like: where end_time >= current_timestamp - (1/(24*60) * #FREQUENCY#) should convert it to minutes and work as…