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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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