‎2009 Dec 30 12:46 PM
Hi,
I need to download the contents of my internal table in .csv format file.
So, I am separating the contents of the internal table with ',' (comma) and storing it in another internal table t_download.
DATA: BEGIN OF t_download OCCURS 100,
rec(800),
END OF t_download.
Now I download the contents using the FM GUI_DOWNLOAD.
The file should contain 19 records, but it downloads only 13.
If I separate the columns with '|' and then download, I get all 19 records downloaded.
Please let me know if I am doing something wrong.
Regards.
‎2009 Dec 30 12:48 PM
Hi ,
Use the tab for sepearation of the each field.
regards,
Bharani
‎2009 Dec 30 12:55 PM