cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Copy file form fileserver with FTP with umlaut in file name

andf
Explorer
0 Likes
245

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'
         EXPORTINGhandle     = lv_handle
                    command    = lv_ftpcom
         TABLES:    data       = lt_ftp_result
         EXCEPTIONSdata_error 1
                     OTHERS     2.

    CONCATENATE 'binary' ' ' INTO lv_ftpcom SEPARATED BY ' '.
    CALL FUNCTION 'FTP_COMMAND'
         EXPORTINGhandle     = lv_handle
                    command    = lv_ftpcom
         TABLES:    data       = lv_ftp_result
         EXCEPTIONSdata_error 1
                     OTHERS     2.

Thank you.

Accepted Solutions (0)

Answers (0)