‎2021 Jun 23 5:02 PM
Hi All ,
when I am sending binary data (gt_con)to application server .
Below is the piece of code, gt_con has 3875 (table_line) data
Gt_con type standard table of solix-line.
Wa_con type solix-line.
open data set Filename for output in binary mode.
Loop at gt_con into wa_con.
Transfer wa_con to Filename.
End loop.
Close dataset.
Here issue is only one line I am able to see at application server.
Any help on this is appreciated.
Thanks
Anusha
‎2021 Jun 23 5:49 PM
It has been asked many times in the forum. Search:
AL11 truncated site:sap.com(little summary: with AL11, all the lines of more than 512 characters are truncated on the screen (not in the file). A "line" is made of all characters until the next occurrence of character "newline". I don't advise to insert these newline characters though. Download the file to your frontend and make sure Excel can display it correctly.)
‎2021 Jun 23 5:58 PM
yes Sandra, what you said it is correct when download from c3gy xml(excel) is downloaded
Thank