Hi Forum,
we have a plugin which is triggered by updating a contact record.
The configuration for that plugin looks like (via PluginRegistrationTool)
The Plugin was developed with crm 2011 dev tools for visual studio. So you can find the following code for registration of the plugin:
public PostSyncUpdatePerson() : base(typeof(PostSyncUpdatePerson)) { base.RegisteredEvents.Add(new Tuple<int, string, string, Action<LocalPluginContext>>(40, "Update", "contact", new Action<LocalPluginContext>(ExecutePostSyncUpdatePerson))); }
Everything works fine so far. But if I do an export of contacts (makred as reimport). Change some values and start reimporting, the plugin is not triggered by that reimport.
Maybe someone has an idea why ?
Thanks in advance
Chris