prior code is OK. 42 libname TEST '/sas/sasmain/mydept/Test Report'; NOTE: Library TEST does not exist. 43 run; 44 I'd like to skip the next datastep if the TEST library is not found, or perhaps use a macro variable for the phrase "successfully", depending on the return code of the libname statement (above). Is there a return code to test ? data _null_; file outbox cc="bossman.last@compny.com" subject="Report process completed - &sysuserid " ; put " "; put "&sysdate The Test/Report process successfully completed by: &sysuserid "; put " " ; run;
... View more