How to skip "Wait for Document Classification"

I am using Wait for Document Classification activity.

I want to check whther the status is completed or not
If not then I will skip to the next transaction item
How to achieve this?

If you’re doing actions in Action Center you shouldn’t be using a transactional process (looping through queue items). Your process should be linear - get a queue item, create and wait for the action (suspended job), then when the action is completed the job resumes, you do whatever else you need to do, complete the queue item, end.

Then you set up the queue trigger to kick off 1 job per queue item.

@Ritaman_Baral

If you are talking about action center then use parallel for each and wait for them…so that the task are created paralley and wait will be paralle as and when a task is completed the job will resume for that particular task

Cheers

after creating I want to wait for 45 sec…if the staus is other than completed we want to postpone the activity and then process further

@Ritaman_Baral

Then dont use wait for resume…create the form…then use delay of 45 seconds

Then use get form activity…and check if it is completed if not postpone else move forward

https://docs.uipath.com/activities/docs/get-form-tasks

Cheers

Hope the below steps would help you resolve this

  1. Use the Wait for Document Classification Action and Resume activity to suspend the execution of the workflow until the document classification action is completed.
  1. In the Wait for Document Classification Action and Resume activity, set the Action Object property to the output of the Create Document Classification Action activity.
  2. After the document classification action is completed, the Action Object property will contain the status of the classification.
  3. Use an If statement to check the status of the classification. If the status is not Completed, then skip to the next transaction item.

Let us know if u r facing any challenge on this

Cheers @Ritaman_Baral

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