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.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 999 views
  • 0 likes
  • 2 in conversation