Start new process without form

Hi there,

when a user clicks on “Start Process” in the Camunda GUI and then on a link to a Process definition, a form is displayed in which the user can enter data. Is it possible to skip this form so that the new process instance starts right away?

Thanks a lot,
Christian

@cjacob Business key field is optional, so you can leave it as blank and submit the form from tasklist.

@aravindhrs - My intention was not to have that form be shown at all. Is this possible?

Hi @cjacob,

you could not skip that form. But you can provide an empty form or place some static hint for the user in the html snippet:

<form>
Start the evaluation and enter data on the next form...
</form>

Hope this helps, Ingo