I'd like to record in SASLOG the date and time of running programs. I have a manual solution: %put START TIME: %sysfunc(datetime(),datetime14.); data temp; x=1; run; proc print data=temp ; run; with the saslog: 81 %put START TIME: %sysfunc(datetime(),datetime14.); START TIME: 29OCT17:13:14 82 data temp; 83 x=1; 84 run; but I don't want to manually add %PUT every time I run a code. Instead, I would like to make a change in SASLOG configuration to get datetime stamp automatically with each run of any code opened in the SAS session. I looked up OPTIONS DATE (attached) does not produce the date in the output nor saslog. Many thanks for any hints! Krzysztof
... View more