process

The process system variable references the current thread in a workstation executing the current method. The code fragment in the following example writes the usercode and sign-on time of the current process.

write process.userCode & ": sign on time = " & process.signOnTime.String;

The code fragment in the following example puts the current process to sleep for five seconds.

process.sleep(5000);