I am retrieving a file via ftp and it contains additional carriage returns at end of file. The sending system states they can’t strip it. The receiving system needs it stripped so their interface won’t drop and can
What David is saying is accurate if the two systems are not the same (i.e. windows vs *nix). If the two systems are the same then no end-of-line conversion would be made in either binary or ascii mode. In any case it is going to be best (probably) to retrieve those files in single mode then you can put in a proc on either the inbound TPS or the pre-translate queue that will do a “string trimright” on the message. Once you have done that then the “whitespace” at the end should be gone and you can add back in the line termination that you need.