2016 Jan 06 9:01 AM
Hi All,
When reading file from FTP to SAP,I am not able to read all data(Using FM FTP_SERVER_TO_R3). I am not able read data which closed red in brackets shown below.Could any one suggest solution. Not able tp read all the fields of a file from FTP to SAP.
Code:
TYPES:BEGIN OF ty_asci,
data TYPE char8000,
END OF ty_asci,
tt_adata TYPE TABLE OF ty_asci.
DATA: it_adata TYPE TABLE OF ty_asci.
CALL FUNCTION 'FTP_SERVER_TO_R3'
EXPORTING
handle = v_hdl
fname = wa_file
character_mode = v_bin
* IMPORTING
* BLOB_LENGTH =
TABLES
* BLOB =
text = it_adata
Thanks and Regards,
Uma
2016 Jan 06 10:08 AM
Hi All,
I got answer.In display mode it is not displaying move the data to string .Now it is displaying all the fields.
Thanks and Regards,
Uma
2016 Jan 06 10:08 AM
Hi All,
I got answer.In display mode it is not displaying move the data to string .Now it is displaying all the fields.
Thanks and Regards,
Uma