Hi venkat,
Sorry for the delayed response . The Authority check FM also returns the sy-subrc value 0 .
But still not able to find the File . I am Trying to paste the data through FTP_R3_To_SERVER . But it is not supporting Non-English Characters. Is there any way to paste the file through FTP ( with Non English Characters ).
{code}
call function 'FTP_CONNECT'
exporting
user = user
password = pwd
host = host
rfc_destination = dest
importing
handle = hdl.
if sy-subrc = 0.
CALL FUNCTION 'FTP_R3_TO_SERVER'
EXPORTING
handle = hdl
fname = FNAME
* BLOB_LENGTH =
character_mode = 'X'
TABLES
* BLOB =
text = it_data1
EXCEPTIONS
tcpip_error = 1
command_error = 2
data_error = 3
OTHERS = 4.
endif.
{code}
With Regards,
Syed Ibrahim G