‎2008 Sep 25 4:39 PM
Hi All
My data is in a internal table, how can i take data from internal table and append all the data into a string.
cheers
AJ
‎2008 Sep 25 4:41 PM
CLEAR string.
LOOP AT itab INTO wa.
CONCATENATE string wa-field1 ... wa-fieldn INTO string.
ENDLOOP.
‎2008 Sep 25 4:41 PM
hi,
you can give a try:
LOOP AT itab INTO wa.
CONCATENATE string wa INTO string.
ENDLOOP.from 6.0 you can also do in one go:
CONCATENATE LINES OF itab INTO string.hope this helps
ec
‎2008 Sep 25 4:41 PM
CLEAR string.
LOOP AT itab INTO wa.
CONCATENATE string wa-field1 ... wa-fieldn INTO string.
ENDLOOP.