Skip to main content
April 22, 2025
Solved

a!startProcess

  • April 22, 2025
  • 2 replies
  • 0 views

Hi all,

I am using the function a!startProcess() to trigger a process model from my interface. Is it possible to use the onerror parameter to show a custom message on the screen when the process fails to start or breaks for some reason. If it is possible can you please guide me how to achieve it ?

    Best answer by stefanhelzle0001

    As per the documentation onError is only evaluated if the process model cannot be started. If this is what you are looking for, then you can add any number of a!save() to onError, and thereby react on this event.

    2 replies

    stefanhelzle0001
    April 22, 2025

    As per the documentation onError is only evaluated if the process model cannot be started. If this is what you are looking for, then you can add any number of a!save() to onError, and thereby react on this event.

    April 22, 2025

    Thanks Stefan