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

problem with internal table

Former Member
0 Likes
387

Hi All,

I need a small help about concatenation in internal table,

i need to add 3 fields into one field and display that data in out put,

Eg: name1name2name3 = name.

how to modify perticular record in the table with name field .

Regards,

DSK

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
351

loop at itab into wa.

concatenate wa-name1 wa-name2 wa-name3 into wa-name.

modify itab from wa index sy-tabix.

endloop.

Regards,

Sumit Nene

2 REPLIES 2
Read only

Former Member
0 Likes
352

loop at itab into wa.

concatenate wa-name1 wa-name2 wa-name3 into wa-name.

modify itab from wa index sy-tabix.

endloop.

Regards,

Sumit Nene

Read only

Former Member
0 Likes
351

Solved