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

module pool

Former Member
0 Likes
598

hi..

Can anyone send me the sample module pool program that has the table control which wil update the new ztable?

1 ACCEPTED SOLUTION
Read only

former_member195383
Active Contributor
0 Likes
567

Hi..

Go to se38 and give demodynpro and press F4.

YOu will get a list of demo module pool programs.

One more T-Code is ABAPDOCU.

YOu can find more examples there.

See the prgrams:

DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement

DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB

http://www.geocities.com/ZSAPcHAT

http://www.allsaplinks.com/files/using_table_in_screen.pdf

reward points if useful....

Regards

Rudra

3 REPLIES 3
Read only

former_member195383
Active Contributor
0 Likes
568

Hi..

Go to se38 and give demodynpro and press F4.

YOu will get a list of demo module pool programs.

One more T-Code is ABAPDOCU.

YOu can find more examples there.

See the prgrams:

DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement

DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB

http://www.geocities.com/ZSAPcHAT

http://www.allsaplinks.com/files/using_table_in_screen.pdf

reward points if useful....

Regards

Rudra

Read only

Former Member
0 Likes
567

Hi,

Please check this link

http://www.saptechnical.com/Tutorials/ABAP/Checkbox/page1.htm

http://www.saptechnical.com/Tutorials/ABAP/Checkbox/page2.htm

For the code,this might be helpful-

process before output.

module status_0503.

loop at it_table_control_1 with control boedet4.

module display_boe_det_503.

endloop.

module change_mode_0403.

process after input.

module exit1 at exit-command.

loop at it_table_control_1.

chain.

field: it_table_control_1-type,

it_table_control_1-value,

it_table_control_1-serno.

endchain.

module update_det_itab_503.

chain.

field: it_table_control_1-value,

it_table_control_1-serno.

module check_valid_bsil_no.

endchain.

endloop.

process on value-request.

field: it_table_control_1-serno module popup_bond_sil_no.

This should be the basic format of ur screen depending on the values on the field and all and include the code for updating in the modules.

Plz reward if helpful.

Read only

Former Member