Hello, I'm trying to use proc upload and download in sas studio but I'm having trouble. I tried :
proc download infile="server/path/my_pgm.sas"
outfile="D:\local_path\test.sas";
run; and proc upload infile="D:\local_path\test.sas"
outfile="server/path/my_pgm.sas";
run; But nothing happen and I have the following warning : WARNING: PROC DOWNLOAD must be invoked with the RSUBMIT command. If I use rsubmit/endrsubmit (which is weird as I'm already connected to my server). i have the following error : ERROR: Invalid or unspecified remote session ID. Set OPTIONS REMOTE=session_id.
NOTE: Subsequent lines will be ignored until ENDRSUBMIT.
ERROR: Remote submit to UNKNOWN canceled. The previous code is working in SAS local with rsubmit/endrsubmit. I don't understand why this is not working in sas studio without the rsubmit/endrsubmit; Does anyone have an answer ? Thank you !!
... View more