Business user modeling in Camunda

Is it possible for a business user to model and automate a simple process in the camunda?
Ex: create a list of values ​​in the form field via the modeler interface.

Modelling bpmn is intended for Business users, Managers, Technical peoples. So business user can create camunda forms using modeler interface.

I need a form field to have 2 options for the user to select: Approved / Rejected
How to do in the interface?

@Amanda In form field, for options you can choose type as enum type.

(or)

Look at the docs for camunda form, Selects | docs.camunda.org

Your html file(userTask.html) should include below content:

<select cam-variable-name="status"
        cam-variable-type="String">
  <option>Approved</option>
  <option>Rejected</option>
</select>

You can create your own camunda form. Form key should refer your html file name.

1 Like