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

CSV format delete/remove space

Former Member
0 Likes
790

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
605

i got sol....

3 REPLIES 3
Read only

Former Member
0 Likes
606

i got sol....

Read only

0 Likes
605

Hi could you tell me how u got the solu...

Read only

0 Likes
605

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.