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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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