OK, here's the Part 2 of the solution I proposed here . We will develop a custom Web part which will display number of application forms in CRM posted from SharePoint Web site in the form of Key Performance Indicator – assume there is a target for number of application forms. We will also assume for this sample that the application form in our case will be the task which we create in CRM when new application is submitted from the SharePoint Web site. Solution 1. Create a Web part and add the Web Reference to point to the CRM Server Web Service. For CRM 3.0 it will be http://your_server:5555/mscrmservices/2006/crmservice.asmx, for CRM 4.0 it will be http://your_server:5555/mscrmservices/2007/crmservice.asmx 2. Add the following properties to the Web part class: private string _sCrmWebUrl = ...; [Personalizable(PersonalizationScope.Shared), WebBrowsable(true), WebDisplayName("CRM Web Server URL"), Category("Custom Properties")] public string CrmWebUrl { get
This blog is about SharePoint and related technologies.