Appian Community and Appian Academy are being upgraded. From July 24–August 3, the Appian Community will be in read-only mode. During this time, the site will be read-only and user registration will be disabled. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
Is there any way to catch the exception thrown during execution by the Bot in Appian RPA?
I need to take some action in case exception occurs via any component of low code. For example Bot is performing Click on Element action on 10 -15 buttons in web page and No Such Element thrown for one of the element on agent, so I want to send customize email with exception trace. In java code we can achieve this by using try catch but need to see how appian catches low code component exception.
Regards,
Mukesh
Discussion posts and replies are publicly visible
Mukesh,
You have a couple of options here with low-code when a robotic process execution has an unexpected failure. These options expect that one execution of your robotic process correlates to one item. We recommend using this pattern and using Appian process models to orchestrate the executions.
1. You can use our OOTB exception handling capabilities with RWM. You can configure who is assigned a case upon failure in a decision table. That person or group would automatically receive an email notification shortly after the failure occurs. When they open up the task in Appian, they would see the details of the execution, and be provided a link to the execution log.
2. You can build custom logic into your process model to orchestrate the RPA work. Use the following design pattern:
Frank