I have a file with multiple users that a task needs to be created for each user. The number of users is dynamic.
I want to create one task per user to fill a form and submit it but I don’t want to put the activity “Wait for Form Task and Resume” in a for each loop, because one user can submit the form earlier than another user and I want to process each task separately.
I’m not sure how and when to use Wait for Form Task and Resume activity.
I tried a different approach and it worked for me.
I created two processes, a Dispatser and a Performer, so the Dispatser is reading the file and filtering the rows per Owner that I wanted and for each User I used a start job activity to trigger the Performer process to create a task in Action Center for each User.
So if i have 10 Users, it create 10 jobs, one per user.