Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

display itab values coloum wise

Former Member
0 Likes
702

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
678

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.

4 REPLIES 4
Read only

Former Member
0 Likes
679

hi,

just write.

Loop at itab

write: itab-value.

endloop.

hope it works.

regards,

Lokesh

Read only

Former Member
0 Likes
678

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

Read only

Former Member
0 Likes
678

loop at itab.

write:/ itab-field. " / is a new line character.

Endloop.

Regards,

Lalit Mohan Gupta.

Read only

Former Member
0 Likes
678

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