Can I call a Appian process model if one robot fails?

Hi, I'm trying to register the robot fail on my Appian Application, there is a way to call a process when robot fail, eg. whe start managedExecption method?

Thank you very much!

Antonio

  Discussion posts and replies are publicly visible

Parents
  • Hi Antonio,

    ManagedException method could be use.  Even though this method ends throwing an exception, and hence, indicating that we want our robot to end, the methods cleanUp could be another option.

    The Appian RPA platform will always call this method, regardless of the result of the robot's execution, that is, whether it has ended without errors or it has failed throwing some exception. It is a good moment to perform operations such as closing the applications that the robot has opened or, above all, sending the files that have been generated during the execution to the server.

    I Hope this help...

    Jesus

Reply
  • Hi Antonio,

    ManagedException method could be use.  Even though this method ends throwing an exception, and hence, indicating that we want our robot to end, the methods cleanUp could be another option.

    The Appian RPA platform will always call this method, regardless of the result of the robot's execution, that is, whether it has ended without errors or it has failed throwing some exception. It is a good moment to perform operations such as closing the applications that the robot has opened or, above all, sending the files that have been generated during the execution to the server.

    I Hope this help...

    Jesus

Children