Has anyone noticed that running simultaneous (yet distinct) "Generate Unique Value" activities (in two separate workflows) on the same object causes the UniquenessKey to be updated on one of them? For example, if I try to generate an AccountName and an Email for Luke Landlubber at the same time, in two distinct, parallel workflows, the outcomes will look inconsistent:
AccountName: LLandlubber
Email: Luke.Landlubber1@example.com
or
AccountName: LLandlubber1
Email: Luke.Landlubber@example.com
After some initial confusion, I noticed the pattern and made the email workflow wait on account name, and it produced the desired result:
AccountName: LLandlubber
Email: Luke.Landlubber@example.com