‎2007 Sep 11 6:48 AM
IS that possible to select dynamic checkbox through code (not manually selection) which has same name for all in the middle of BDC load
check box is like the one in version manager. all will have the same name.
‎2007 Sep 13 3:11 PM
hi
Assume i have c1, c2, c3 as check box and i want to set any of these check box as selected.
1. Declare a temp variable
data tmp type c.
2. Based on some processing determine the check box to set.
case variable.
when 1.
tmp = c1.
when 2.
tmp = c2.
when others.
tmp = c3.
endcase.
3. Setting the values now.
( tmp ) = 'X'.
You can use this in the bdc or online.
Thanks.