Hi! Is it possible to handle exception in a process? For example if there is an error on "delete something" step occur we proceed to next step without stoping all process.
Like
Dear Andrii,
Unfortunately, we cannot handle exceptions with standard tools in actual versions of applications. Thank you for bringing this aspect to our attention. We will create an idea for the development team so they can consider implementing such functionality in future versions of our application.
If you're talking about custom C# code and Script tasks, you can use basic try/catch constructs there to handle exceptions.
To track errors in business processes, you can create a new business process. It is described on the Creatio Community at the following link: https://community.creatio.com/questions/exception-handlng-business-procecss.
Thank You!
Dear Andrii,
Unfortunately, we cannot handle exceptions with standard tools in actual versions of applications. Thank you for bringing this aspect to our attention. We will create an idea for the development team so they can consider implementing such functionality in future versions of our application.
If you're talking about custom C# code and Script tasks, you can use basic try/catch constructs there to handle exceptions.
To track errors in business processes, you can create a new business process. It is described on the Creatio Community at the following link: https://community.creatio.com/questions/exception-handlng-business-procecss.
Thank You!
Having some form of try/catch or error pathway in BPs would be very helpful, sometimes errors are "expected" especially when using the OOTB steps for things like adding data (e.g. if a unique index is violated due to the non-atomic nature of data operations in BPs) and need to be handled more nicely than just halting the BP and leaving the data in an inconsistent state. It forces many properly implemented pieces of functionality away from being built in no-code and straight back to needing to write C#.