‎2007 Mar 06 6:00 AM
Hi SDN,
I want one column in my Table control as check box.I want to dynamically access that Check box.Based on a condition i will check that check box.Is it possible?
‎2007 Mar 06 6:06 AM
Hi,
Yes..You can set the value of the check box based on a condition..Check the module SET_CHECKBOX.
PROCESS BEFORE OUTPUT.
LOOP AT ITAB WITH CONTROL TC.
MODULE SET_CHECKBOX.
ENDLOOP.
MODULE SET_CHECKBOX.
***If the condition is satisfied set the check box.
ITAB-CHECKBOX = 'X'.
ENDMODULE.
Thanks,
Naren