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

Table control - Module pool

Former Member
0 Likes
402

Hi,

I need to populate the table control in module pool programing.... how can i do it... can anyone help me out

regards

padma

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
371

hi,

Check out the below standard programs to understand the same

RSDEMO_TABLE_CONTROL

DEMO_DYNPRO_TABLE_CONTROL_1

DEMO_DYNPRO_TABLE_CONTROL_2

RSDEMO02

Include the below staments

PBO


 loop at it_final1 with control tc1 cursor tc1-current_line.
   module screen_changes.
 endloop.

PAI


loop at it_final1.
   module move_from_screen.
endloop.

Regards,

Santosh

2 REPLIES 2
Read only

Former Member
0 Likes
372

hi,

Check out the below standard programs to understand the same

RSDEMO_TABLE_CONTROL

DEMO_DYNPRO_TABLE_CONTROL_1

DEMO_DYNPRO_TABLE_CONTROL_2

RSDEMO02

Include the below staments

PBO


 loop at it_final1 with control tc1 cursor tc1-current_line.
   module screen_changes.
 endloop.

PAI


loop at it_final1.
   module move_from_screen.
endloop.

Regards,

Santosh

Read only

Former Member
0 Likes
371

Hi Santosh,

Thanks for your reply

regards

padma