i have a process that extracts data from multiple documents, for each result i check if the OCR confidence. If too low i send the document to action center
i use create document validation action to create an action center form for user to validate document
After that im using the wait for document validation action and resume to wait for user to submit the form.
Is there a way where i dont have to wait for the user to submit the form? I want to push the action object to a queue, then when the process starts i check the queue to see if any form is completed. Is this possible?
I also thought of using start job activity to start a separate process containing the create document validation action and wait for document validation action and resume activities. I.e. let a background process do the waiting. However start job activity arguments must be serializable so i cant pass variables e.g. extractedResults / dom/ taxonomy over…