‎2008 Apr 28 2:25 PM
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
‎2008 Apr 28 7:35 PM
Hi,
Concatenate the record with cl_abap_char_utilities=>cr_lf and then write it back to the appserver.
Regards,
Bert
‎2008 Apr 28 7:49 PM
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