Skip to Content
0
Nov 28, 2006 at 08:49 AM

Dialog Programming

24 Views

hi

I have to display entries populated in an internal field in a screen.One way is through using Table Control. The other is Input/Output field.What has to done in the Menu painter in order to display the table entries.

The idea is :

1) We will populate an internal table ITAB from some dbtab, and count the no. of entries in the ITAB.

2) Then we will loop in the PBO of screen as .

LOOP.

MODULE TRANSP_ITAB_OUT.

ENDLOOP.

The Module Transp_itab_out contains :

DATA : idx TYPE I,

line type i.

idx = sy-stepl + line.

READ TABLE ITAB INTO WA_EMP INDEX idx.

the wa_emp has to be displayed in the screen for each entry, BUT NOT USING TABLE CONTOL INSTEAD USING INTO OUTPUT FIELD.

Could any one tell me What has to be done in Menu painter in order to display the entries.

thanks,

Govind