Start Event with multiple UserSelection

Hey People,

I try to improva a Workflow. At the Moment you can select one Person from the Database, once it is done he or she can work at the task. Until now this was enough, but we got some requests if we can create a selection to select more than one Person.

To be honest I have no idea how this should work. Below you can see what I tried. The Problem is that the GUI doesn´t change, so there I can choose only one.

I hope to find help, thank you in advance.

<camunda:formField id=“ansprechpartner” label=“Bitte Mitarbeiter wählen, dem eine Aufgabe bestellt werden soll:” type=“UserSelection”>
camunda:properties
<camunda:property id=“camunda:formFieldControl” />
<camunda:property id=“camunda:required” value=“true” />
<camunda:property id=“camunda:multiple” value=“true” />
</camunda:properties>
</camunda:formField>

Hi @DanielJahreiss,

if more one person should be able to pick a user task, you can add the selected user IDs in the candidateUsers assignment of the user task in the BPMN diagram: User Task | docs.camunda.org

One of the candidates has to claim the task to start working on it.

Hope this helps, Ingo