I've a real-time workflow that updates an integer field. The problem I have is when multiple instances of the workflow run at same time.
The first instance of the worklfow increments by 1 the integer field, but the second and later instnaces take the non updated value, i.e
First instance: Days = 1 -> workflow sets it to 2
Second instance: Days = 1 -> workflow sets it to 2 (Initial value should be 2 and updated value 3)
Third instance: Days = 1 -> workflow sets it to 2
*This post is locked for comments
I have the same question (0)