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

BDC

Former Member
0 Likes
222

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.

1 REPLY 1
Read only

Former Member
0 Likes
205

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.