Before it was possible for us to change the status of queue item from failed/successful to new using postpone transition item activity. recently am facing an issue while changing transaction status. any assistance is much appreciated.
May be it was working before not sureâŚbut with the current functionality or ideally a postone time can be set only when we add it as new or by using postpone transaction item while the queue item is in in progress stateâŚand when you use postpone it would set the status of queue item back to new
If you want to postpone already processed items then instead use get queue items and add new queue item with postponed time as needed again to the queue
The âPostpone Transitionâ activity in UiPath Orchestrator is used to change the status of a queue item from âFailedâ or âSuccessfulâ back to âNewâ, which allows it to be processed again by a robot.
The error message you are seeing (âInvalid transaction from final stateâ) typically occurs when you try to change the status of a queue item that is in a final state. Final states include âSuccessfulâ, âFailedâ, âAbandonedâ, and âRetriedâ. Once a queue item is in a final state, it cannot be changed.
To resolve this error, you should check the status of the queue item before attempting to change it. If the queue item is in a final state, you should not try to change its status.
If you want to reprocess a queue item that is in a final state, you can create a new queue item with the same data and set its status to âNewâ. Alternatively, you can use the âRetryâ or âAbandon and Retryâ option in Orchestrator to automatically create a new queue item when a queue item fails.
I apologize for any confusion my previous response may have caused. Thanks for You are correct that my response contained a contradiction.
The âPostpone Transitionâ activity can be used to change the status of a queue item from âFailedâ or âSuccessfulâ back to âNewâ, which allows it to be processed again by a robot. However, as you correctly pointed out, once a queue item is in a final state (i.e. âSuccessfulâ, âFailedâ, âAbandonedâ, or âRetriedâ), it cannot be changed. Therefore, the error message âInvalid transaction from final stateâ may occur if you try to change the status of a queue item that is already in a final state.