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

Check box in table control

Former Member
0 Likes
490

hi all,

i converted one colum in the table control as check box.

but when iam marking the check box , the table control internal table is not reflecting.

how can i code this .

regards

sarath P

hi all,

i converted one colum in the table control as check box.

but when iam marking the check box , the table control internal table is not reflecting.

how can i code this .

regards

sarath P

2 REPLIES 2
Read only

Former Member
0 Likes
443

Hello Sarath,

Just add a field check type c to your internal table.

in PAI

LOOP at itab.

module update_itab.

endloop.

-


MODULE update_itab.

if tbcl-check = 'X'.

Modify table itab from tbcl index tbcl-current_line.

endif.

ENDMODULE.

-


what I want to say is Just modify your interbnal table information in PAI module to get the result.

Hope the discussion was helpful !

Cheers,

Suvendu

Read only

former_member556412
Active Participant
0 Likes
443

Hi,

Please refer to the following thread

check this demo Program RSDEMO02 on table control with checkbox option.

Regards,

Bhanu