How to delete previous queue transactions if count is more e.g 400 489 650 etc

Hi.

How to delete previous queue transactions if count is more e.g 400 489 650 etc

New transactions
Simple I know get queue items and for each loop to set status

TIA.

If this previous transaction are in any status like failed success you can use get queue item and on get queue item along with the status you can apply filter of time as in date based filter.

Than for the retrieved item you can set status to removed / delete like this you can handle
@Shruthika_r

Thanks :grinning:

Thanks @jast1631
And now can I get total transaction count who’s status is new ??

Count can be 20 or 800 etc more than 100.
.

TIA!

Using this live get all New state transactions.

If you want to delete transactions after 400 or whatever number use LINQ to skip first desired number of transactions.

Iterate through these transactions using For each activity.

Inside it use Delete Queue Items activity.

Thanks,
Ashok :slightly_smiling_face:

@Shruthika_r,

To get more than 100 transaction follow this tutorial.

Same you can use get queue items activity and there you can set status property
For the retriever items you can get count using count function

@Shruthika_r

Thanks

It gives only 100 even if transactions more.

You can use the video shared by @ashokkarale

It will solve this @Shruthika_r !

Thanks !

@Shruthika_r

Here is an explanation of how to get when items are more than 100

Cheers

1 Like

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