Hi All,
I am getting the following error when try to submit the programm from local mechine to remote server ,can any one help me on that.
I used the follwingcode:
%let rem_id1=tdanal ;
options comamid=TCP remote=rem_id1;
signon 'E:\SAS\9.4\connect\saslink\tcpwin.scr';
Getting this error:
NOTE: Remote signon to REM_ID1 commencing (SAS Release 9.04.01M4P110916).
ERROR: A communication subsystem partner link setup request failure has occurred.
ERROR: Cannot locate TCP host 'REM_ID1'.
ERROR: Remote signon to REM_ID1 canceled.
Thanks in Advance.
You need to correctly address the macro variable:
options comamid=TCP remote=&rem_id1;
Hi ,
Thank for your Answer.
This time i have entered with & only it resolved and given the following error,could you please help me in this.
submitted the follwing code:
options symbolgen mprint mlogic;
%let rem_id1=12.123.12.12;
options netencryptalgorithm=sasproprietary;
options comamid=TCP remote=&rem_id1;
signon 'E:\SAS\SASHome\SASFoundation\9.4\connect\saslink\tcpwin.scr';
getting the error:
NOTE: Remote signon to 12.123 commencing (SAS Release 9.04.01M4P110916).
ERROR: A communication subsystem partner link setup request failure has occurred.
ERROR: No route to host
ERROR: Remote signon to 12.123 canceled.
Thanks In Advance.
Something must be wrong with your macro definition, as the options comamid seems to only pick up the first half of the IP address.
Hi,
try this:
options symbolgen mprint mlogic;
%let remhost=12.123.12.12;
options netencryptalgorithm=sasproprietary;
options comamid=TCP remote=remhost;
filename myhost 'E:\SAS\SASHome\SASFoundation\9.4\connect\saslink\tcpwin.scr';
signon remhost;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.