BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
GeorgeSAS
Lapis Lazuli | Level 10

How to save _user_ defined macro into a dataset? read the text file created below?

 

proc printto log="c:\temp\testlog.txt";
run;
%put _user_;
proc printto ;
run;

 

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

What are you going to do with the results?

 

Note that there exists a data view you can address as SASHELP.Vmacro or with proc sql Dictionary.Macros that contains all of the macro variable definitions at the time you inspect. The following will have all variables. Add Where Scope ne 'AUTOMATIC' to get the macro variables you declared.

 

Data want;

   set sashelp.vamacro;

run;

 

or

Proc Sql;

    create table want as

    select *

    from dictionary.macros

   ;

quit;

View solution in original post

2 REPLIES 2
Astounding
PROC Star

You would be better off using existing tools for this purpose.

 

Use PROC SQL to take a look at dictionary.macros ... you should find all macro variables there, with fields that identify which ones are user-created.  It should be easy enough to save a subset of that, as a SAS data set.

 

The one tricky part:  macro variables that are longer than 200 characters are saved in 200-character chunks, across multiple observations.  Of course with your %PUT _USER_ statement, those would pose a problem as well.

ballardw
Super User

What are you going to do with the results?

 

Note that there exists a data view you can address as SASHELP.Vmacro or with proc sql Dictionary.Macros that contains all of the macro variable definitions at the time you inspect. The following will have all variables. Add Where Scope ne 'AUTOMATIC' to get the macro variables you declared.

 

Data want;

   set sashelp.vamacro;

run;

 

or

Proc Sql;

    create table want as

    select *

    from dictionary.macros

   ;

quit;

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 945 views
  • 2 likes
  • 3 in conversation