Application Development 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: 

Get data from internal table then display on a screen

Former Member
0 Kudos

Hi,

I have an internal table type standard table of RSEDCRESUL, and I need to display the data of this internal table on a screen with a list separator between columns LINE1, TEXT1 and columns LINE2, TEXT2, the formation is as follow:

LINE1 TEXT1 | LINE1 TEXT1.

Could you give me some suggestions on how to solve this problem? Which element type should I used to display the result and how to achieve it?

Thanks a lot!

Best Regards,

Stephanie

3 REPLIES 3

Former Member
0 Kudos

do a loop on your table, and write each row followed by sy-vline w/o writing each row to a new line.

loop at xxxx.

write : xxx-f1, xxx-f2.

write : sy-vline

endloop.

0 Kudos

Hi MxG,

For "SCREEN", I mean the type created by screen painter.

Thanks all the same.

Best Regards,

Stephanie

Former Member
0 Kudos

Hi,

use table control.

Regards

Avi