Hello, I want to upload some PDF files generated in SAS to our FTP server to be available for users to see them through a web application. I have tried to do that using the following code: filename outfile ftp new
host='10.10.12.100'
user='user'
pass='123456'
rcmd='chmod 0644' recmf=F;
data _null_;
set work.tbl_00001 (where=(nm_an eq 'Form'));
file outfile filevar=arq;
run; The above code is generating an error as follow: ERROR: Insufficient authorization to access /opt/sas94config_anl03/SASApp/15_898699232_217510.pdf As far as I think, the file might be saved to FTP server, but as the error message state seems the SAS is saving them to the local server rather than in the FTP server. What am I missing here? Any idea how to solve this? Regards, Marcio
... View more