BookmarkSubscribeRSS Feed
SASHunter
Obsidian | Level 7
Hi,

I am using SAS/CONNECT to log on to our LInux machine. I am using SAS 9.2.

I have the following code after a signon attempt to the UNIX machine:


**** Check the error conditon of the SIGNON command;
%macro checkit;
%if &syserr=0 %then %do;
%put SIGNON fine! Continue processing!;
%end;
%else %do;
%put >>>ERROR: SIGNON failed - RC=&syserr;
%put >>> Please check above for ERROR Description;
%ABORT;
%end;
%mend checkit;

%checkit;

So what I want the program to do is to stop at the %ABORT, but not terminate SAS.

There is more data steps after the checkit macro so when I type in a wrong password it prints out the ERROR that I have for the put statements, but it continues trying to do the rest of the data steps, etc. If I put in ABORT ABEND it totally shuts down SAS.

How do I print out the ERROR and abort but also keep my PC SAS up so I can view the log?

Thanks, Nancy
1 REPLY 1
ChrisNZ
Tourmaline | Level 20
Yep, same old gap in the sas toolbox.

See http://support.sas.com/kb/24/825.html for a dodgy workaround.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 942 views
  • 0 likes
  • 2 in conversation