Will something like the following suffice?: data have; thedate=datetime(); run; proc sql; select hour(timepart(thedate)) from have ; quit;
... View more
Why bother reading and writing the file? You could use the same method to just send the created file. Take a look at the later example shown in http://dc-sug.org/ftp.pdf
... View more