Hello,
Need some help. I'm using the below code to send a file to an FTP server. What I need to do is to send the data TAB delimited. Is this possible?
An alternative, is to export the data to a tab delimited file to my C:\ drive, and then send that file in the FTP transfer? Is this possible, and if so, what is the correct syntax to reference an external file to be sent?
filename CUSTDATA ftp 'PREV_WK_CUST_DATA.csv' cd='/VINData'
host='9999999'
user='xxxxx' pass='xxxxxx'
recfm=s
DEBUG;
run;
ODS LISTING CLOSE;
ODS CSV body=CUSTDATA trantab=ascii;
proc print data=WORK.PREV_WK_CUST_DATA noobs;
run;
ODS CSV CLOSE;
run;
ODS LISTING;
run;