I have created a UiPath flow using DU of AI center to extract data from pdfs, for testing purpose, I was using local folder to read list of files. My question is, should I use get queue item activity for this purpose. And yes, how can I use it, coz, I could not find any reference for this purpose.
First, get the list of all files from the folder and then upload them into the queue (Bulk Add queue Item Activity). After that, you can use ‘get transaction activity’ to proceed with further processing. @akashjariwala
→ Then use For each file in folder activity to iterate the each file in the folder. output of For each file in folder is CurrentFile.
→ Inside for each insert the Add queue item activity to add each file to the queue item.
→ In add queue item activity give the queue name in the Queue name field and Click on Item information, Give TargetFile as key and value as CurrentFile.toString as below image,
This is how we have to add the file paths as queue items to the queues in Document understanding framework. For each Transaction item it will take the each file path and do the Extraction process.
If you want to add the queue items means dispatcher in Documet understanding framework, you can use this sequence in Intialization state itself.
If I am not wrong this additional process is involved due to manual validation on action center. Because due to manual validation, process will stop until document will not validate manually.