Author Archives: admin

Update Rollup 1 for Microsoft Dynamics CRM 2013 Service Pack 1 has been released

The Microsoft Dynamics CRM 2013 Update Rollup 1 for Microsoft Dynamics CRM 2013 Service Pack 1 (SP1) is available on the download center. UR 1 for Microsoft Dynamics CRM 2013 Service Pack 1 (SP1): http://www.microsoft.com/en-us/download/details.aspx?id=44262. Information on Update Rollup 1 … Continue reading

Posted in MS CRM 2013 | Tagged , | 1 Comment

Data encryption in Microsoft Dynamics CRM 2013

I was trying to add an email for the User account on one of the imported organization and getting the error seen below. I tried to resolve this and found information on this. Microsoft Dynamics CRM 2013 uses standard SQL … Continue reading

Posted in MS CRM 2013 | Tagged , | Leave a comment

How to Change the ReportServer Url for Microsoft Dynamics CRM 2013 / 2011

Below are the steps to modify the Report Server URL and SQL Server for an Organization in Microsoft Dynamics CRM 2013 / 2011. This assumes that the report server is already installed and configured. 1. Open CRM Dynamics Deployment Manager … Continue reading

Posted in MS CRM 2011, MS CRM 2013 | Tagged , , | 1 Comment

Update Rollup 2 for Microsoft Dynamics CRM 2013 has been released

The Microsoft Dynamics CRM 2013 Update Rollup 2 is now available on the download center. UR 2:  http://www.microsoft.com/en-us/download/details.aspx?id=42272. Information on CRM 2013 Update Rollup 2 The KB is located at http://support.microsoft.com/kb/2919956. UR 2 is fully deployed to all CRM 2013 … Continue reading

Posted in MS CRM 2013 | Tagged , | 1 Comment

How to call Web Service from HTML page using Jquery

Below are the steps to call web service from html page using jquery 1. Create a Web Service with marked as ScriptService [System.Web.Script.Services.ScriptService] public class TestService : System.Web.Services.WebService { This will allow the Web Service to be called from script, … Continue reading

Posted in General | 1 Comment

How to handle Auto Save Mode in Dynamics CRM 2013

Please make your plugin and workflow design as per below suggestion for Auto Save mode in Dynamics CRM 2013: Plug-in design Your plug-in design should take into account a web form feature known as auto-save. In the web application entity … Continue reading

Posted in MS CRM 2013 | Leave a comment

Error: Unable to load plug-in Assembly for offline plugin in Dynamics CRM 2011

I am getting weird error “Unable to load plug-in Assembly” for offline plugin in Dynamics CRM 2011. And after downloading log file the error details is as “Public key token af134b872b327f03 is not found in allow list”. I have searched … Continue reading

Posted in MS CRM 2011 | Tagged , , | 1 Comment

How to disable a form control in Dynamics CRM 2011 using Javascript

To disable a form control in Dynamics CRM 2011 using Javascript try below code: var control = Xrm.Page.ui.controls.get(“fieldname”);// like new_age control.setDisabled(true);

Posted in MS CRM 2011 | Tagged , , | 1 Comment

Write a common plugin for Create/Update/Delete events in Dynamics CRM 2011

If you want to write a common plugin for Create/Update/Delete events in Dynamics CRM 2011 then only you need to take care of “context.InputParameters[“Target”]”. In case of Create/Update event “context.InputParameters[“Target”] is Entity” and in case of Delete event “context.InputParameters[“Target”] is … Continue reading

Posted in MS CRM 2011 | Tagged , | 2 Comments

How to retrieve dynamic marketing list member in Dynamics CRM 2011

To retrieve dynamic marketing list member in Dynamics CRM 2011 follow below steps: Pass list Guid as string and it will return dynamic marketing list member private EntityCollection RetrieveDynamicMemberList(IOrganizationService service, string strList) { ColumnSet cols = new ColumnSet(new string[] { … Continue reading

Posted in MS CRM 2011 | Tagged , | Leave a comment