Page 1 of 1

Error notification

Posted: Tue Oct 07, 2008 4:22 am
by fruitloopy
Is it possible that if a task fails to complete and produces an error it can perform an action?
I cant see how I can acheive this using the tools available.

Error notification

Posted: Mon Oct 13, 2008 6:11 am
by Oleg
Go to "Advanced" tab of task editor.
Set the parameter "If error occurred" to "continue execution"

Now you can use {IsError} system variable.
Put after critical step the following steps

if {IsError} = true then
   ...
   do something
   ...
end if