Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : yPk9tzuLT5A3EvGSEOCmB5

Workflow or Plugin: which one will run first?

ashlega Profile Picture ashlega 34,477

With all those customization options we have in Dynamics, we can do a lot, but, sometimes, it may get a little confusing. For example, we can use worklfows and plugins. Not only that, though.. Both workflows and plugins can be real-time/synchronous or background/asynchronous.

Earlier today I was observing a very interesting behavior. There was a synchronous plugin and there was a real-time workflow in my solution. Actually, I added them to the solution at different times. The plugin had been there long before that workflow was added, so, while adding the workflow, I just assumed that the plugin was working. And it was, but, as it turned out, when there were two of them, the workflow would run first. So, where I was expecting some data to be updated by the plugin before the workflow would start, it was not, actually, happening.

Which contradicts this article:

https://community.dynamics.com/crm/b/workandstudybook/archive/2014/10/14/real-time-workflow-and-plugin-which-one-is-executed-first

However, keep in mind that the article above may have been written for CRM 2013, and I was having this issue with CRM 2015.

So, I had to do some digging (and I did it with 365 online)..

As you probably know, we can define Sdk Message Processing Step execution step order when working with the plugin registration utility. Really what it does, it just sets the “rank” attribute of the SdkMessageProcessingStep record:

https://msdn.microsoft.com/en-ca/library/mt622430.aspx

Plugins should not be that different from workflows, so I figured there would be an sdkmessageprocessingstep record for each workflow as well. And, indeed, there is. Actually, if you use Advanced Find, you can see all Sdk Message Processing Steps, including those associated with the workflows.

Unfortunately, we can’t add “rank” attribute to the columns there, and that’s what I really wanted to see.

When it comes to 365, we can use this kind of link to display all those message processing steps:

https://<ORG_URL>/api/data/v8.0/sdkmessageprocessingsteps?$select=createdon,rank&$orderby=createdon%20desc

This will display createdon & rank attributes for the sdk message processing steps, and all those records will be ordered by createdon (the most recent record will show up on top of the list).

Here is what I got for a background workflow:

And here is what I got for a real-time workflow:

Those results were the same for create/update messages.

If you are wondering what’s that 2147483647 rank on the first screenshot, it’s, actually, the biggest integer (int32) number you may have. In other words, you can’t push it any farther in the execution order.

However, when the rank is 0, you can certainly use negative ranks, but, normally, you wouldn’t. So, normally, all those steps having rank 0 will run before anything else.

And, by default, plugin registration tool will set execution order to 1 when adding a new message processing step.

Therefore, to summarize all this, it seems that default workflow/plugin execution order is, actually, different in 2015+ versions:

  • Real-time workflows will, normally, run before synchronous plugins
  • Background workflows will, normally, run after asynchronous plugins

 

 


This was originally posted here.

Comments

*This post is locked for comments