BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
bob_pearson
Calcite | Level 5

Is there any way to verify the macro autocall libraries that have been assigned? Perhaps there is a dm command, or a SASHELP table that can be viewed, ...?

I am assigning two as shown below. I have a folder MacAutos in which I have sub-directories for project-specific macros. The four invocations below refer to macros that are stored in the mAutoKBM library. There are indeed SAS files there that have files with names matching those macro names and which contain only the corresponding macro definitions. All four invocations produce the apparent invocation not resolved warning. Is there any way to get more information regarding the autocall library assignments and/or attempted resolution searches? Or do you have any suggestions of how to troubleshoot this?

Thanks,

Bob

**** Enable KBM Autocall Libraries ****;

filename mAutoKBM '&BasePath\MacAutos\KBM';

filename mAutoGen '&BasePath\MacAutos\General';

options MAUTOSOURCE MAUTOLOCDISPLAY MRECALL sasautos=(mAutoKBM mAutoGen sasautos );

%KBM_Flagvars;

%KBM_Graph_Nominal

%KBM_Children

%KBM_Graph_Ordinal;

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

Single quotes are not allowing &BASE to be resolved.  Switch to double quotes.

View solution in original post

2 REPLIES 2
data_null__
Jade | Level 19

Single quotes are not allowing &BASE to be resolved.  Switch to double quotes.

bob_pearson
Calcite | Level 5

Hah! Can't believe it. Sorry all.

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