BookmarkSubscribeRSS Feed
ashleyfc
Calcite | Level 5

I am running a macro that contains proc assign. I know that this procedure is no longer supported by SAS, but I have had no problems running it recently. A colleague of mine ran this same code with different data and it ran fine. However, when I run it I get the error below. I cannot figure out why it is not recognizing the work library. Does anyone have any ideas on why this might be happening and how I could fix it?

proc assign data=dist2 out=__outt;

cost &firstco--&lastco

%if &kmv gt 0 %then %do; __s1-__s&kmv %end;

;

id &idca;

ERROR: Invalid or inconsistent mode flags for WORK. The data set WORK.__OUTT may be incomplete.

2 REPLIES 2
ballardw
Super User

Have you run this with options mprint and or symbolgen to see what the generated code might actually be?

I don't believe the error is say that it doesn't recognize the Work library but that something your code is attempting to set doesn't make the program happy.

You program is also incomplete limiting help available.

Steelers_In_DC
Barite | Level 11

I would work backwards from this code and see what the temporary datasets look like.

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
  • 934 views
  • 0 likes
  • 3 in conversation