Help needed - Migrating process from BP to UiPath

Hi,

We have project in BP that migrating into UiPath. In BP we are using tags in queue is there anything available something like BP tags in UiPath.
In BP our project is splits into 4 sub processes and they run independently for same queue.Our process is designed something like below.

first process will fetch the data from sql and add the data to queue and setting the tag as OCR.

Second process will pick the OCR tagged items extracts the ocr data then it will appends the extracted data to queue then change the tag from OCR to WIP.

Third process will pick the WIP tagged items and process the data then it will change the tag as WSC if process is completed or else WSE.

Fourth process will pick WSC and WSE tagged items and update the status back to sql then it will mark item as completed if the tag is WSC or else marked as exception.

Note: all queue items in pending state only until third process.

@Naveen_Surya

You do not have a concept like this in UiPath.

But what you can do is instead of changing tag you can add a new item and change the reference of that item if you want to use same queue and in get transaction items you can get using reference

other way would be to use different queues

cheers

Hi @Naveen_Surya

You will not get the exactly same feature but A similar feature can be achieved by adding a new Transaction Item with a reference to the Queue , as Anil demonstrated.