Finally, i used the following solution to get the checksum of the current program I am running: data checksum; title "Checksum"; filename fn pipe "CertUtil -hashfile %sysget(SAS_EXECFILEPATH) MD5"; infile fn; input; Hash_Info = _infile_; run; proc print data=checksum NOOBS; run; Thanks for taking the time to help!
... View more