Hi ,
%let host = xxxxxxxaa.machine.test.group;
options comamid=tcp remote=host;
signon;
NOTE: Remote signon to HOST commencing (SAS Release 9.04.01M4).
ERROR: A communication subsystem partner link setup request failure has occurred.
ERROR: The connection was refused.
ERROR: Remote signon to HOST canceled.
Can you please let me know the error message and any configuration changes required.
I have requirement to create a macro variable from Client session and pass those to the server as a session variable.I have tried the below SAS code . but ended up with the error
%let host = xxxxxxxxaa.machine.test.group;
options comamid=tcp remote=host;
signon;
%let rc1=HDSIV2;
%let rc2=MRTGIS;
%syslput _all_;
rsubmit host;
%put rc1=&rc1;
%put rc2=&rc2
endrsubmit;
Thanks in Advance!!!