*TIME
This reserved word keeps the time of the program call.
Example
VAR = *TIME
The variable must be able to hold 12 numeric characters. It is initialized once at the beginning of the program in the format: HHMMSSXXYYZZ.
HH = hours, MM = minutes, SS = seconds, XXYYZZ = date in the format defined at the system level.
TIME
This reserved word gives the time of the instruction call.
Example
TIME VAR
If the variable is 6 numeric character long, it is initialized in the format: HHMMSS.
HH = hours, MM = minutes, SS = seconds.
If the variable is 12 numeric character long, it is initialized in the format: HHMMSSXXYYZZ.
HH = hours, MM = minutes, SS = seconds, XXYYZZ = date in the format defined at the system level.