use of GUI_DOWNLOAD
Hi,
When I use gui_download, the result is in my case a txt-file.
Now I had some remarks because of the fact that there is a enter at the last line of the file,. Is there a way to delete this enter via gui_download?
Thanks a lot
I know this is ages old but had a similar problem and solved it as below. Posted mine but found this a while afterwards when i was getting desprate.
The solution I found and I expect there is an easier one is to use was to use GUI_DOWNLOAD using the EXPORTING write_lf and ensuring this is set as ' '. This means there is no line feed at all so it ends up wrting the table as a big string. Then I put the hexadecimal '0D0A' (a constant should be set up with type X) as the last two characters of each of my table lines, except the last record in the table. This meant that the output does not have a carriage return on the line after the last record.
Anyway it might help someone,
Tucker