Any option so we can pick previous day data from queue without mark successful

I have to building reframework workflow so in dispatcher I have added data to queue.
And in performer it take one by one data from queue. So in my process I have to do some send communication, validate task,close case
So I have run the boat today it means Wednesday so it pick data from queue and it doing some send communication part after that it going to validate task and close case so in that we have to pick up the previous day data it means Tuesday data and doing validate task and close the case

So confusion is that every time bot run then it pick up new data item from queue right so send communication part is done but when it goes to validate the task and close case so we have to take previous day data from queue. So how can I do.

Right now I am using switch I have given 3 cases there but every time it goes to send communication part and mark sucessful status in a queue.

So my question is that is there any option after communication part done what we have to do so it take previous day data

We have to validate the task after 24 hrs.

Hi @Monali_Vekariya

Try to use postponed queue transactions. In dispatcher, create two queue items per CaseId: one for Send Communication (no postpone) and one for validate/close with Postpone = Now.AddDays(1).
In performer, use Get Transaction Item and switch on SpecificContent(“Stage”).
Process Communication first and mark Success, and after 24 hours the postponed Validate item is picked automatically and closed.

Happy Automation

@Monali_Vekariya

In dispatcher while adding queue item using Add Queue item activity set the Postpone property to

DateTime.Now.AddDays(1)

@Monali_Vekariya

When you say validate old item …is the same item you are sending communication for is created daily?

So today if you are sending communication then tomorrow for same item you need to validate and close task?

Cheers

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.