hiii
DATA: BEGIN OF itab occurs 0,
col1(20) ,
END OF itab.
my itab consist of 3 records.
eg::
itab-col1
abc
bcde
ccc
Now i want all the 3 records (i.e itab-col1) in one variable(say var).
eg::: var = abc bcde ccc.
<b>SO how to do this.</b>
Thanking you.
Regards.