COMPILEDATE returns a CHARACTER string of length 17 containing the date and the time of the compilation.
|
The format of the string returned by COMPILEDATE is:
The time zone and accuracy are system dependent.
The following example shows how to print the string returned by COMPILEDATE when your program is run:
%DECLARE COMP_DATE CHAR; %COMP_DATE=QUOTE(COMPILEDATE); PUT EDIT (COMP_DATE) (A);