Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

These events can be used to force signoff of an inactive session.
 

...

    * Idle timer fires once every 5 seconds of inactivity
Evtroutine Handling(#Sys_Appln.Idle) Seconds(#Seconds)
 
* If no data entry for 15 seconds
If ((#Seconds = 15) *And (*Not #TimedOut))
 

...

        #TimedOut := True
 
Endif
 
Endroutine
 
* User input detected
Evtroutine Handling(#Sys_Appln.IdleEnd)
 
#TimedOut := False
 
Endroutine