2009 May 22 5:08 AM
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
2009 May 22 5:25 AM
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
2009 May 22 5:55 AM