Can anyone tell me how to use proc upload to transfer a graphic template from my local machine to a server? I'm using the following code. It didn't give me any error message, but the template was not transferred.
options comamid=TCP connectpersist connectremove=<servername> connectstatus connectwait signonwait;
signon <servername> user=<username> password=<password> notify=YES;
rsubmit <servername>;
libname myoutlib <path on the server>;
proc upload inlib=<libname on my local computer> outlib=myoutlib;
select Templat(memtype=itemstor); /* I'm trying the transfer the template: inlib.Templat */
run;
endrsubmit;
signoff;
Thanks!