Process where multiple user can save the form

Hi, can a process initiated by one user can be branched to multiple user parallelly and after each user has completed their respective task it comes back to original user created in flowable.

i have tried with parallel gateway but the problem with it is that i have to provide the assignee manually to each task and second problem is if some user complete his/her respective task than the filled data is reflected to other user in his/her task which should not be the case all user data should be isolated from one another.

how can we achieve the above scenario ?

Because each task can be done by different people. If you want to have the same assignee: store the assignee in a variable and use an expression ${myAssigneeVariable} for the assignee.

That’s how it works, yes. Can you describe where you don’t see that?