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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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