2009 Apr 21 12:24 PM
hi all,
i want to display my itab values coloum wise instead row wise .
eg.
12
13
111
25
23
not like this but like below
12 13 111 25 23
thanks.
2009 Apr 21 12:26 PM
hi,
just write.
Loop at itab
write: itab-value.
endloop.
hope it works.
regards,
Lokesh
hi all,
i want to display my itab values coloum wise instead row wise .
eg.
12
13
111
25
23
not like this but like below
12 13 111 25 23
thanks.
2009 Apr 21 12:26 PM
hi,
just write.
Loop at itab
write: itab-value.
endloop.
hope it works.
regards,
Lokesh
2009 Apr 21 12:29 PM
Hi,
After briniging your data into your internal table itab,
Loop at itab.
write: / itab-field1. "by this slash before itab-field1
"each new entry will be displayed
"in next line and not row wise
Endloop.
Hope it helps
Regards
Mansi
2009 Apr 21 12:41 PM
loop at itab.
write:/ itab-field. " / is a new line character.
Endloop.
Regards,
Lalit Mohan Gupta.
2009 Apr 21 12:48 PM
Hi
Try this
Loop at itab
write: itab-value.
write: ' '.
endloop.
It will show your data in a row with space between them.
Hope it will help
Regards
Natasha nGarg
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |