Is there any solution to create record in other DBs from the CRM 2011 records? When a record such as "cost" was created in CRM 2011, we want a record would be created in out Oracle DB. Could it be done through a plugin? Or a service should be created for this? Could you please provide me references or solutions for this. Any helps would be greatly appreciated.
|
|
We had a similar request from a customer a while ago. They claimed that CRM's database wasn't to be trusted and wanted to securely store a copy of the records created in - guess what - SQL Server too. (Yes, we do understand the irony. They didn't.) The way we've resolved it was to create a plugin. However, bear in mind that simply reacting to the message of Create won't really do. You need to set up a listener for three of the CRUD operations (retrieval doesn't affect the external database so it's rather C_UD operations, then). Here's the skeleton of the main Execute method.
After this dispatcher, you can implement the actual calls to the other database. There are three gotchas I'd like to give you head-up on.
Walk-through for plugin construction |
|||||||
|
|
You could use a plugin to create a record in another system, although you would need to think about syncing and ensure you don't get duplicates, but it certainly can be done. Tutorial on plugins can be found here. You need to write a plugin that runs on As an example:
That should give you enough to get going |
||||
|
|
