‎2008 Jul 28 3:28 AM
Hi Friends,
I am facing a problem. I am UP LOADING data into CSV format. After upload file if i see into the file i am getting spaces in right side of the value. How can i remove the spaces or how the value move to right side of the colomn.
Regards,
Kumar
‎2008 Jul 28 4:17 AM
‎2008 Jul 28 4:17 AM
‎2008 Aug 12 7:43 PM
‎2008 Aug 14 8:23 AM
Hi Rob,
Concatenate all your ITAB in to another itab.and send to function module.
ex: loop at itab into wa_itab.
concatenate wa_itab-f1 wa_itab-f2 wa_itab-f3 wa_itab-f4 ...
into wa_itab2.
append itab2 from wa_itab2.
endloop.
pass itab2 to function module.
i hope this will solve your problem.