|
Try to define the destination file tagged with CCSID of 1200 and send the file binary to the AS/400, this may solve it. If not, the safest approach I saw is putting it in BIN mode to the IFS.
CD/TMP
quote type c 1200
put somefile ifsfile
quit
Then to CPYFRM STMF from IFSFILE to the target.
|