In Progress

I want to make inprogress item to new without any hardcoding in my workflow for specific queueitem can you suggestt

Hi @MEGHA_BACHAR,

Welcome to the UiPath community!

You can follow these steps:

  1. Use the Get Queue Items activity to retrieve the in-progress queue items from your specific queue.

  2. Filter the queue items based on their status, selecting only those with the status β€œIn Progress”.

  3. Loop through the filtered queue items.

  4. Inside the loop, use the Postpone activity to postpone each item. Set the β€œNewDueDate” property to DateTime.Now (to mark it for immediate processing) and the β€œNewPriority” property to β€œNormal” or your desired priority.

Here’s how you can implement this in UiPath:

Sequence
β”œβ”€β”€ Get Queue Items // Get Queue Items activity
β”‚   β”œβ”€β”€ Queue: YourQueueName
β”œβ”€β”€ Filter Data Table // Filter Data Table activity
β”‚   β”œβ”€β”€ Input DataTable: Output from Get Queue Items
β”‚   └── Filter Wizard: Status = "In Progress"
β”œβ”€β”€ For Each Row // For Each Row activity
β”‚   β”œβ”€β”€ Input: Output from Filter Data Table
β”‚   └── Postpone // Postpone activity
β”‚       β”œβ”€β”€ ItemInformation: CurrentRow
β”‚       β”œβ”€β”€ NewDueDate: DateTime.Now
β”‚       └── NewPriority: "Normal"
└── End Sequence

This workflow will postpone all in-progress queue items, essentially marking them as β€œNew” for immediate processing without hardcoding any specific item IDs or statuses. Make sure to replace β€œYourQueueName” with the name of your specific queue.

Thanks,
Ashok :slightly_smiling_face:

1 Like