How do you FTP from within your MultiValue Business
Application? The following solution was dirived from a post
on COMP.DATABASE.PICK by David Ehrhart.
You take data and format it how ever you need. You then
write it out using the UOPEN / UWRITE statements in Basic -
putting it where ever you need it on the Server / PC.
They then run a FTP Script from within basic by:
EXECUTE "sh FTP -s:xxx.scr -d"
The xxx.scr (Script) looks like:
open ftp.<site>.com
<username>
<password>
ascii
put d:\directory\fname.dat
bye