Hi,
Got to know about this wonderful CRM Wiki page today, so just thought of sharing it.
Thanks George Doubinski and Ben Hosking for publishing it.
Bye.
Hi,
Got to know about this wonderful CRM Wiki page today, so just thought of sharing it.
Thanks George Doubinski and Ben Hosking for publishing it.
Bye.
Hi,
These are the steps we followed to install Microsoft Dynamics CRM 4.0 in Windows Server 2008 R2 machine (Here we had the Microsoft SQL Server 2008 installed on a different server)
Before running the setup, first we added the .NET Framework 3.5.1 Features from Server Manager.

After running the installer we got the following error in the Environment Diagnostics Wizard.
ERROR : (provider: Named Pipes Provider, error: 40 – Could not open a connection to SQL Server) (Microsoft SQL Server, Error: )
We followed the step mentioned in this article to resolve this issue.
On running the installer again, we got this issue
Error : Service msftesql was not found on computer …… The specified service does not exist as an installed service.

We followed the below mentioned steps to resolve the issue
http://social.microsoft.com/Forums/eu/crm/thread/d8dda562-aae6-47b7-9c81-86f98d2b77f6
Bye.
Hi,
Just sharing two useful posts which would help us to identify the update rollup version installed in our CRM environment.
For CRM 2011
http://crmdynamo.com/2011/09/crm-2011-update-rollup-release-build-numbers-and-how-to-find-them/
For CRM 4.0
Bye.
Hi,
Today i came across this new tool for Ribbon editing in CRM 2011.
http://www.develop1.net/public/page/Ribbon-Workbench-for-Dynamics-CRM-2011.aspx
The tools looks really wonderful.
Will try it out soon.
Bye.
Hi,
To get the id of the case record which is getting resolved in the plugin, we need to make use of IncidentResolution inputparameters of the context.
Entity incRes = this.Context.InputParameters["IncidentResolution"] as Entity; Guid caseId = ((EntityReference)incRes.Attributes["incidentid"]).Id;
Bye.
We had one plugin which was registered against “SetState” and “SetStateDynamic” message. It used to run when we were doing “Cancel Case” from the ribbon.
We thought the same message will work in case of “Resolve Case“.
However in case of Resolve Case, we need to use or register our plugin against the “Close” message.

InputParametersà

Hope it helps.