‎2009 Jun 26 8:46 AM
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
‎2009 Jun 26 8:51 AM
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
‎2009 Jun 26 8:51 AM
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
‎2009 Jun 26 10:06 AM