Who customize what and when?
Indeed, it is impossible to know who does what in terms of customization and above what customizations were published.
With plugins and the famous capabilities of customization, it is relatively simple to set up an event log of customizations in Microsoft Dynamics CRM 4.0.
What you need is Plugins and one Custom Entity (let say “Customization Log”)
Plugins
Microsoft Dynamics CRM 4.0 provides us with several messages that allow us to track what is happening in terms of customizations the application.
There are two types of messages:
- Import Messages
- Publish Messages
Import Messages
They can give you two pieces of information:
- The customization file that was imported (CompressedCustomizationXml property)
- The entities or parameters that have been imported (ParameterXml property)
The messages are:
- ImportCompressedAll
- ImportCompressedWithProgress
- ImportAll
- Import
- ImportWithProgress
Catch all these messages to be sure to monitor every import event.
In the case of imports, you can retrieve the customization file in the incoming properties (CompressedCustomizationXml) of the plugin context. So you can get the customization file during PRE stage (context.Stage == 10).
Publish Messages
They provide us with the list of entities that have been published (through the property ParameterXml of the plugin context).
The messages are:
- PublishAll
- Publish
Knowing this information, it is possible to export published entities customizations.
In the publish case, we only know the names of entities that are published. So, we must therefore export customization during POST stage to retrieve the customization file for the published items.
The plugin Process
In both cases (Import and Publish), we saw that we have the list of imported/published entities and the associated customization file.
So, our plugin has only one thing to do: create a record of "Log customizations" entity type that will contain the following information:
- The type of operation: Import or Publish (which can be displayed as a picklist)
- Entities involved stored in a memo field (because you can potentially have many imported/ published entities - Beware the maximum field size, therefore)
- The customization file as an attachment
To make all this easier to use, we will take care of:
- Bringing the notes section on the form first tab
- Displaying the columns “type of operation”, “Actor”, “transaction date” and “entities involved” in the "Active Customization Logs” view.
Here it is! You have a monitoring feature for your customization !
BE AWARE of handling all exceptions because your imports will not work anymore if the plugin throw an exception
NOTE : To compare two customization files and know what have been updated, you can use the CRM Customization Comparison Utility provided by Microsoft on the CRM Team Blog
Comments
Did you ever get a chance to build this tool?
It seems not pissible to track user and role changes in a supported manner.
And yes, I have build this "tool" (a plugin) and it works like a charm...
I just can't provide the build plugin, sorry.