on 2024 Sep 02 1:20 PM
Hi,
Is it possible to copy .pdf files with an umlaut in the file name via FTP?
Copying via FTP with the function module FTP_COMMAND generally works, only for files with an umlaut (ä,ö,ü) the following message appears:
"451 No mapping for the Unicode character exists in the target multi-byte code page.
Messagenumber. 26000"
The FTP transfer is implemented as follows (excerpt from coding):
CALL FUNCTION 'FTP_CONNECT'.....
CONCATENATE 'set passive on' ' ' INTO lv_ftpcom SEPARATED BY ' '.
CALL FUNCTION 'FTP_COMMAND'
EXPORTING: handle = lv_handle
command = lv_ftpcom
TABLES: data = lt_ftp_result
EXCEPTIONS: data_error = 1
OTHERS = 2.
CONCATENATE 'binary' ' ' INTO lv_ftpcom SEPARATED BY ' '.
CALL FUNCTION 'FTP_COMMAND'
EXPORTING: handle = lv_handle
command = lv_ftpcom
TABLES: data = lv_ftp_result
EXCEPTIONS: data_error = 1
OTHERS = 2.
Thank you.
Request clarification before answering.
| User | Count |
|---|---|
| 11 | |
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.