Enables the ability to send the file using FTP method.
Syntax:
Returns
Returns 1 if the operation is successful; otherwise the operation returns zero.
Example
Set oTransports = oAck.Get997Transport
Set oTransport = oTransports.CreateTransport
oTransport.SetFTP
oTransport.Address = "255.255.255.255"
oTransport.Password = "YourPassword"
oTransport.User = "YourUserID"
oTransports.Send "997_850.TXT"
Samples