I have a form that has checkboxes on it that I'm trying to save to a database.
When viewing the instance inside Forms, the variable for the checkbox appropriately shows the selected options. i.e. Option_B,Option_E,Option_G
After the form is submitted, it kicks off a Workflow that includes a "Retrieve Business Process Variables" activity to get the variables from the form. Then it uses an "Insert Data" activity to insert the values into the database.
Everything seems to be working well except for one thing. Only one of the checkbox values are making it into the database. i.e. the DB will reflect Option_B when I had been expecting Option_B,Option_E,Option_G.
I've confirmed that I'm using the checkbox token - i.e. %(FormDate_Checkbox) and not using the checkbox values tokens - i.e. %(FormDate_Checkbox_Option_B).
Any suggestions how to resolve this so that all selected checkboxes are inserted into the database record?