2007 Nov 12 3:39 PM
i have an internal table itab in which i have some enteries like
col1 col2 col3
1 s j
1 d h
1 h
2
2
2
3
3
now i want to displaythe records like
col1 col2 col3
1 s j
1 d h
1 h
col1 col2 col3
2 l f
2 p h
2 k
plz giv me code.
thanx
2007 Nov 12 3:42 PM
loop at itab.
at new col1.
write 😕 'col1' , 'col2','col3'.
endat.
write 😕 itab-col1,itab-col2,itab-col3.
endloop.
loop at itab.
at new col1.
write 😕 'col1' , 'col2','col3'.
endat.
write 😕 itab-col1,itab-col2,itab-col3.
endloop.
2007 Nov 12 3:42 PM
loop at itab.
at new col1.
write 😕 'col1' , 'col2','col3'.
endat.
write 😕 itab-col1,itab-col2,itab-col3.
endloop.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |