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

Corrage return

Former Member
0 Likes
380

Hi all,

I wanted to seperate to records with Corrige return(OD) before writing to application server.

How Can I do that before writing it to Application server?

What is the significance of using this?

urgent pls help me

2 REPLIES 2
Read only

b_deterd2
Active Contributor
0 Likes
351

Hi,

Concatenate the record with cl_abap_char_utilities=>cr_lf and then write it back to the appserver.

Regards,

Bert

Read only

Former Member
0 Likes
351

hi use this..

loop at itab where Corrige return ne 'some value'.

outfile+0(10) = itab-field1 .

outfile+10(10) = itab-field2 .

outfile+20(10) = itab-field3 .

transfer outfile to p_file .

endloop.

regards,

venkat