BookmarkSubscribeRSS Feed
Rohit12
Obsidian | Level 7

%macro example9;

%LET Rsysv =xxxx;

OPTIONS COMAMID = TCP ;

signon Rsysv  user=xxxx password=yyyy noscript;

let remvar1=75;

%syslput x=&remvar1.;

rsubmit;

data c; y="&x."; run;

proc download data=c;

run;

%sysrput yy=&x;

endrsubmit;

%put &yy.;

%mend;

%example9;

 

 

ERROR: %SYSRPUT statement is valid only when OPTION DMR is in effect.

74    data c;

75    y="&x.";

76    run;

 

why this error is coming and why value of YY is not resloving through put statement 

4 REPLIES 4
Reeza
Super User

Your missing a % in front of the second LET. 

 

What happens once that's fixed?

Rohit12
Obsidian | Level 7

sorry it was typo mistake when  i pasted here .actually I have run the code with %let

 

it stil shows same error 

LinusH
Tourmaline | Level 20
astha8882000
Obsidian | Level 7
I tried doing this:

%let abc_unix = &sd_exports.;
%nrstr(%sysrput abc_unix = &abc_unix.);
LIBNAME abc "&abc_unix.";

that gave me the error: Statement is not valid or it is used out of proper order.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 4 replies
  • 1286 views
  • 0 likes
  • 4 in conversation