Integrate Dynamics 365 with Azure Service Bus - no code!
Do you want to get data from Dynamics 365 or the CDS to an Azure
The out of the box integration between CRM 2011 and SharePoint 2010 / 2013 is one of those features that has a lot of potential, but it doesn’t fully deliver. It feels like a feature that is on the checklist of every prospective Dynamics CRM customer and so something minimal was thrown in by Microsoft to satisfy marketing needs.
“Hey look, we have CRM 2011 and SharePoint 2010 integration, out of the box!”
Well yes you do, but it’s a bit limited. The functionality it provides is:
Things that I’ve found are commonly requested features in this area of functionality that are not part of the out of the box experience:
This blog post provides a great walkthrough of how you would go about developing a CRM plugin that takes care of the creation of the SharePoint content. It is a great starting point if you want to customise what happens. In a nutshell it still relies on the SharePoint destination still having the CRM List Component installed so that the UI for SharePoint is styled correctly, but it takes control of the SharePoint creation side of things through a server side event in a CRM Plugin. This means that you can control what, where and when things happen in SharePoint. But you get the benefit of the native display of SharePoint content in the CRM without having to come up with your own SharePoint iFrame friendly view.
I would probably take the SharePoint creation logic out of the Plugin and put it into a callable web service, but you’d still have to call this from the Plugin. Within this web service you could then examine the existing number of folders / libraries / sites you’ve decided to create and determine if your container is reaching it’s limits and you need a new container, and also the web service could potentially be called from other systems.
But if you’re looking to enhance the integration between Dynamics CRM 2011 and SharePoint 2010 / 2013 then that blog post is definitely a great starting point for your development team to get their head around.