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

regarding checkboxes in modulepool

Former Member
0 Likes
608

gdmrng experts,

cud u plz tell me how to handle checkboxes in the module pool screen ,plz send me the logic,,,,,,if i enable the checkbox then what will i write,,,, as i new to module pool....thnx in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
579

Hi,

Do something like this in your PBO section.

loop at itab with tc...

module modify_tc.

endloop.

in the main program.

module modify_tc.

loop at itab where mark = 'X'.

endloop.

if sy-subrc = 0.

loop at screen.

screen-input = 0.

modify screen.

endloop.

endif.

endmodule.

Thanks

Ashu

2 REPLIES 2
Read only

Former Member
0 Likes
579

Hi,

goto abapdocu tcode.ther u can find good examples for module pool programs.

for check boxes goto abapdocu tcode and select

ABAP User Dialogs ->Screens ->Processing Screens ->Checkboxes and radio buttons

reward points if helpful.

rgds,

bharat.

Read only

Former Member
0 Likes
580

Hi,

Do something like this in your PBO section.

loop at itab with tc...

module modify_tc.

endloop.

in the main program.

module modify_tc.

loop at itab where mark = 'X'.

endloop.

if sy-subrc = 0.

loop at screen.

screen-input = 0.

modify screen.

endloop.

endif.

endmodule.

Thanks

Ashu