-
Continue reading →: Fix – Unable to add custom Report to the Solution in CRM 2011
I have a custom SSRS report “ABC Report” in my CRM application. And, I wanted to include this report in my solution “My Reports” and export to another CRM organization But to my surprise, I did not find “ABC Report” when I choose “Solution -> Reports -> Add existing” Fix :-…
-
Continue reading →: Object doesn’t support this property or method XMLHttpRequest error – FIX
Hi, I was getting “object doesn’t support this property or method jquery” error when I was initializing var request = new XMLHttpRequest(); Reason :- This is a problem with Internet Explorer browser (ActiveX to be precise) Fix :- If the browser is detected as Internet Explorer, load ActiveX instead of…
-
Continue reading →: Address entity in CRM 2011
Below are few useful points about “Address“ in CRM In CRM, “Account” and “Contact” entities have built-in fields to capture two sets of addresses. These fields are address1_street1, address1_city, address1_stateorprovince, etc., as well as another whole set for address2 fields. We normally assume that 2 default set of address fields…
-
Continue reading →: Checking whether user part of team using jscript CRM 2011
Hi, We can verify whether the User is part of particular Team using jscript. Below is the jscript function function isUserPartOfTeam(userId, teamId) { var oDataEndpointUrl = serverUrl + “/XRMServices/2011/OrganizationData.svc/”; oDataEndpointUrl += “TeamMembershipSet?$select=BusinessUnitId&$filter=TeamId eq guid’” + teamId + “‘ SystemUserId eq guid’” + userId + “‘”; var service = GetRequestObject(); if…
-
Continue reading →: Reading WCF client binding configurations from plug-in
In one of my requirement I have to call my custom WCF service method from plug-in. In this scenario my plug-in is WCF client and I have to read client binding configuration from plug-in. Below are the ways you can read the binding configuration details from plug-in Synchronous plug-in In case…
-
Continue reading →: Database ‘Org_MSCRM’ cannot be started in this edition of SQL Server because it contains a partition function ‘AuditPFN’ – Error while restoring organization
Hi, I got below error, when I was trying to restore an organization database from SQL server enterprise edition to SQL server developer / Data center editions Database ‘Org_MSCRM’ cannot be started in this edition of SQL Server because it contains a partition function ‘AuditPFN’. Only Enterprise edition of SQL…


