BookmarkSubscribeRSS Feed
n01known
Fluorite | Level 6

Hello world! 😃

I have faced to next problem. Can I check access permission to the data to read and handle an error (if there is an error)?

For example: I need to know does user, that run SP, have permission to read the source and handle an error if there not.

I tried something like this:

data _null_;

     set DATA(obs=0);

     if _error_ ne 0 then do;

          put NOTE: "ERROR =" _error_;

          _error_ = 0;

     end;

run;

But it does not work =(

Any ideas? Thank you.

2 REPLIES 2
LinusH
Tourmaline | Level 20

Try to use the automatic macro variables sysrc and syscc.

Data never sleeps
n01known
Fluorite | Level 6

Thank you.

I tried to user SYSRC and SYSCC but there is no effect.

Or may be I use them incorrect. If you have an example, it would be a pleasant if you share it 😃

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 837 views
  • 0 likes
  • 2 in conversation