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 ?
Discussion posts and replies are publicly visible
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.
Thanks Stefan