-
Continue reading →: Machine hangs up when you put a ‘debugger;’ in jScript “OnChange” event
Hi, While debugging a Jscript file ,Sometimes you may come across the situation where your machine gets hanged and it won’t even allow you start ‘Task Manager’ to kill the process. It happens, if you have the similar scenario If you put a ‘debugger;’ command in ‘onChange’ event of Dropdown…
-
Continue reading →: Sitemap “Settings groups” display as “Unknown” after an upgrade from CRM 4.0 to CRM 2011
Hi, Recently when i did an upgrade from CRM 4.0 to CRM 2011 by restoring CRM 4.0 DB, I got “Settings groups” display as “Unknown” (Refer image above) – To fix this issue we have to modify the “Sitemap” by exporting it in a solution, and follow below steps Open the…
-
Continue reading →: Adding “Notes” to the “Quote” progrmatically in CRM 2011
//Instantiate ‘Entity’ and set the ‘LogicalName’ to “annotation” Entity objNotes = new Entity(); objNotes.LogicalName = “annotation”; //Set ‘Subject’ and ‘notetext (i.e.,Body)’ properties objNotes.Attributes.Add(“subject”, ”—-Your Subject—”); objNotes.Attributes.Add(“notetext”, “—Your notes text—”); //Relate the note with ‘Quote’ using ‘EntityReference’ EntityReference refQuote = new EntityReference(); refQuote.LogicalName = “quote”; refQuote.Id = quoteID; //Quote GUID objNotes.Attributes.Add(“objectid”, refQuote); //Set…
-
Continue reading →: How to verify the log files for CRM installation issues
Open “Run” window (Ctrl+R) Type “%APPDATA%\Microsoft\MSCRM\Logs\“ You find the list of generated logs Sort by “Last Modified Time” to get the latest .log file
-
Continue reading →: Issues while installing CRM 4.0 on Windows Server 2008 R2
While installing CRM 4.0 on Windows Server 2008 R2 server we will get errors mentioned in above screen 1) To fix the issue “Service cisvc was not found on computer XYZ” Reason:- This is because CRM 4.0 requires the old “Indexing Service (CISVC)” , which was part of Windows Server 2003…


