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

Hi, 

 

I am trying to use the MAUTOSOURCE system option, paired with the SASAUTOS statement to compile macros, to allow them to be auto-called later. Below is my code:


%* Method 1;
options mrecall mautosource sasautos=(%sysget(sasautos) "C:\mymacros");


%* Method 2;
filename mymac "C:\mymacros";
options mrecall mautosource sasautos=(%sysget(sasautos) mymac);

 

Both methods above do not seem to work yet the logs are clean, when I try to resolve any macro located in the "C:/MyMacros" the warning "WARNING: Apparent invocation of macro xxx not resolved" appears. I understand this means the macro has not been autocompiled so SAS cannot see it yet.

 

Worth nothing, yes I can confirm the macro is named the same as the macro program itself and is located in the path above.

 

Any help please? I did get it working, but closed SAS and reopened to double check it worked, but it did not work. I think I am missing something obvious.

1 ACCEPTED SOLUTION

Accepted Solutions
craig159753
Quartz | Level 8

Turns out I had old code in the program calling the macro, which was resetting the settings after defining them, as displayed in my example. Removed the code and suggested code work. Rookie error.

View solution in original post

8 REPLIES 8
ballardw
Super User

You need to use either the INSERT= to place a new value at the beginning of a list or Append= for at the end of the list.

%* Method 1;
options mrecall mautosource Append=(sasautos  "C:\mymacros");

The general syntax is Append= or insert=(<list name> newvalue); List name is the option you want to work with. You do not need to recall other values, just the list name. If you ONLY want specific values then you use the <listname>=( <explicit values>)

 

Note: if this Append or Insert code is resubmitted you keep adding the same folder to the list. So generally try to execute the Append/insert only once as when you go to remove it you may have to remove it multiple times.

craig159753
Quartz | Level 8

Turns out I had old code in the program calling the macro, which was resetting the settings after defining them, as displayed in my example. Removed the code and suggested code work. Rookie error.

Ksharp
Super User
options mrecall mautosource mstored sasmstore= "C:\mymacros" ;
craig159753
Quartz | Level 8

Hi Ksharp,

 

I actually already use the MSTORED MACROSTORE options

 

libname mylib1 "C:\mymacros\Set1";

libname mylib2 "C:\mymacros\Set2";

libname mylibs (mylib1 mylib2);

libname mylib1 clear;

libname mylib2 clear;



options mstored sasmstore=mylibs;


options mrecall mautosource set = sasautos("!sasroot\core\sasmacro" "C:\mymacros");

Oddly now it does not seem to be working again after a reboot, bit confused now.

Tom
Super User Tom
Super User

Are you storing your macro definition as source files to be found by the SASAUTOS path?

Or are you storing them in pre-compiled catalogs to be referenced from there?

 

Personally I never use MSTORED as I prefer to be able to look at the source code files and to be able to update individual files with operating system tools (like version control software).

 

craig159753
Quartz | Level 8

Hi Tom,

 

The answer is both, we have "standard" macros in macro catalogues. The source code is hidden from the user, this is why we use the MSTORED / MACROSTORE options.

 

The macros in question here are basic SAS programs which are macros, i.e., 1 macro per SAS program with the macro name being the same as the program name. These macros should be recalled by SAS using the MRECALL, SASAUTOS and MAUTOSOURCE options, but it is not playing ball.

Tom
Super User Tom
Super User

I have no idea if that type of hybrid system can work.

 

If it cannot then you might try something like this:

 

On startup use PROC CATALOG to copy your stored compiled macros into the session's working macro catalog. (If using Display Manager that is WORK.SASMAC and if using EG or Studio it is WORK.SASMAC1).

Then just use normal autocall for your other text based macros.

 

Note with this method there is no way to override your compiled macro definitions.  If you want to override the definition of one of those macros you would need to run the actual definition code.  Perhaps with %INCLUDE.

craig159753
Quartz | Level 8

Hi Tom,

 

Yeah this method does work, and for the definitions to take over a macro say in both a catalogue and in a SAS program the entry would need to be removed from the catalogue first, or by using the %INCLUDE statement like you suggested.

After a reboot it is working now. Turns out the %sysget(sasautos) was causing an issue it returns with parenthesis which meaning the original SASAUTOS option was not correctly defined, once I resolved this I first had to reboot SAS. Then it worked.

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
  • 8 replies
  • 1257 views
  • 1 like
  • 4 in conversation