A developer designed a process in the REFramework using Orchestrator queues.
In which state(s) will be the status updated for each Transaction Item in the queue?
A developer designed a process in the REFramework using Orchestrator queues.
In which state(s) will be the status updated for each Transaction Item in the queue?
Settransactionstatus.xaml or process transaction state - here the status is either set to failed or successful
And in gettransactiondata.xaml or get trasaction state the status moves to in progress from new
Cheers
The status of the queue is updated in Set Transaction Status.xaml.
Hope it helps!!
Set Transaction Status
state after processing.Incorrect.
Get transactionitem in the get transaction item state indeed fetches an item from the queue. Thus its status is changed from ‘new’ to ‘in progress’.
Here question is about the State of the REFramework so it get’s updated in two states.
Get Transaction Data - It uses Get Transaction Data activity which changes the status of the fetched to process queue item from New
to In Progress
Process Transaction - In this state, transaction gets process and it could result in success or failure. So here transaction status of the transaction will get updated to Successful
or Failed
Thanks,
Ashok
@Kanu_priya_Munja1 so the answer it goes in the Set Transaction xaml and the set trans xaml is inside the process state
here the screenshot
and inside the set tran there are three stages if your process is success then it goes in the success state and if you are getting business Exception then it goes in the BE state and if your process having any system Exception then it goes in the System Exception
cheers Happy Automation