‎2008 Oct 27 11:46 AM
hi all,
plz help me this,
how to convert the data in internal table column into row....?
thanx..
‎2008 Oct 27 11:48 AM
Hi Nilesh,
Remove the / symbol in the write statement where you can get the output in row format for example.
Tables: mkpf.
Data itab like mkpf occurs 0 with header line.
select * from mkpf into table itab.
append itab.
loop at itab.
write: itab-bldat.
endloop.
Output will be in row wise.
Tables: mkpf.
Data itab like mkpf occurs 0 with header line.
select * from mkpf into table itab.
append itab.
loop at itab.
write:/ itab-bldat.
endloop.
Output will be in column wise.
Cheers!!
VEnk@
‎2008 Dec 23 9:26 AM