Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Binary content (Xml excel data) to AL11

0 Likes
1,606

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

2 REPLIES 2
Read only

Sandra_Rossi
Active Contributor
1,199

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.)

Read only

0 Likes
1,199

yes Sandra, what you said it is correct when download from c3gy xml(excel) is downloaded

Thank