Reputation: 71
If there is more than one workflow that runs when a Record is Created or Updated in Dynamics CRM, is there any precedence on which workflows runs first over others?
For eg: if WF-A, WF-B, WF-C start when a attribute 'AAA' is updated on a Record, which one runs first? Do they run in same order every time?
Thanks for your answer!!
Upvotes: 1
Views: 83
Reputation: 6578
Although it is documented that you can control the order of operation of asynchronous workflows, this information is not correct as you can see here:
Since you are on CRM 2011, you have a few options:
Option 1 is most likely the best fit.
Upvotes: 1
Reputation: 846
The Async proccess just call the three when it has the resources. Any WF could be the first, if you need the workflows run in order, then One should call the others inside its steps.
Upvotes: 1