I have a code that I can execute in my local machine without any problem. Now I want to submit my code to the remote server for executing. I need to make a some adjustments. In my code I have many macro variables defined using %let. As well as some dataset in my local machine. To submit the code to remote server, I have the following paragraph.
%let wrds=wrds.wharton.upenn.edu 4016;
options comamid=TCP remote=WRDS;
signon username= xxxxxx;
rsubmit;
some codes
endrsubmit;
My question is where I should put my defined macro variables as well as dataset.
Thanks.