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

INPUT HELP FOR THE TABLE CONTROLLS

Former Member
0 Likes
451

Hi all.

I have an issue in table controlls.

I need to give input help(drop box )in the field of table controlls in the module pool program.

Can any body help me to solve this issue.

Thanks in advance,

regards,

venkat

1 ACCEPTED SOLUTION
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
423

Hi,

As suggested,this will help you.

RSDEMO_TABLE_CONTROL

If you observed,then you can find that the particular field is maintained as listbox.

In PBO,populate the required values into internal table.

After that loop at the internal table and put it in table control.

The follg. part of code explains it.

LOOP at sdyn_itab into sdyn_sdw4 WITH CONTROL TABLE_CONTROL.

ENDLOOP.

2 REPLIES 2
Read only

Former Member
0 Likes
423

check this example

RSDEMO_TABLE_CONTROL

IT may help u.

Regards

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
424

Hi,

As suggested,this will help you.

RSDEMO_TABLE_CONTROL

If you observed,then you can find that the particular field is maintained as listbox.

In PBO,populate the required values into internal table.

After that loop at the internal table and put it in table control.

The follg. part of code explains it.

LOOP at sdyn_itab into sdyn_sdw4 WITH CONTROL TABLE_CONTROL.

ENDLOOP.