BookmarkSubscribeRSS Feed
NickR
Quartz | Level 8
Hi,

If I use the following code and batch submit it, I would get the path of the SAS program. Is there any easy way I can save this path in a macro variable?

proc options option=sysin; run;

Thanks!
2 REPLIES 2
data_null__
Jade | Level 19
One possibility, that should suffice for batch jobs.

[pre]
%let sysin = %sysfunc(getoption(sysin));
%put NOTE: SYSIN=&sysin;
[/pre]
NickR
Quartz | Level 8
this works for me...thanks so very much.
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
  • 1289 views
  • 0 likes
  • 2 in conversation