Stop Execution Of A Process For An Attended Robot By Using Hotkeys And Not The Robot Tray

Is it possible to trigger a Stop of the execution of a process on an Attended Robot without using the Robot Tray and on the same time let the robot finish current transaction and then exit?

One of the way to achieve the Stopping of the execution of a process on an Attended Robot without using the Robot Tray, could be by using the Monitor Events activity used with a Hotkey Trigger activity inside a Parallel activity along with a Do While activity, which will execute an Invoke Workflow until the hotkey is not pressed.

Bellow is a small example:

  1. Create a Boolean variable, lets call it ContinueOrNot and assign the value of True
  2. Add a Parallel activity bellow
  3. On one side of the Parallel add a Monitor Event activity, inside it a Hotkey Trigger and in the Event Handler another assign activity where ContinueOrNot gets the value of False (the hotkey was pressed and the workflow should not continue the next loop/transaction) and another Terminate Workflow activity (the "Reason" field can be fill with any type of reason)
  4. On another side add a Do While activity with the condition ContinueOrNot (will execute while the ContinueOrNot is True) and inside an Invoke Workflow activity with the process that needs to be executed.
  5. The activities are in parallel, so even if the hotkeys was pressed it will still finish the last transaction and only after the transaction will be processed it will check the value of ContinueOrNot which is False and will exit the do while, will trigger Terminate workflow and the workflow will stop the next execution/transaction

1.png

A post was split to a new topic: Is there a way to terminate the workflow, with a hotkey, without finishing the transaction in the other branch?