A managed solution cannot overwrite a Saved Query component on the target system that has unmanaged base instance error while importing a managed solution in CRM 2011


Hi,

While trying to import a managed solution I was getting the below error.

The reason being the SavedQuery component created by the Activity Feeds Solution in source and target environment has the same id. And it is unmanaged component in the target environment and the managed solution that we were trying to import has the same component as managed.

http://social.microsoft.com/Forums/br/crm/thread/83f66edd-0ec3-45f0-bc82-b63122d1ff7f

Commenting out all the savedquery from the customizations.xml and importing the solution back solved the issue

Hope it helps.

Cleared MB5 858 Managing Microsoft Dynamics CRM Implementations Exam


I took and cleared the MB5 858 exam today. It had 70 questions divided into 3 sections with 140 minutes to answer them.

I used following resources for preparation

The questions were more or less intuitive. Someone who implemented Sure Step methodology in the project and have gone through the above resources would be able to answer them easily.

Bye.

NotSupportedException : Security settings for this service require ‘Anonymous’ Authentication but it is not enabled for the IIS application that hosts this service while trying to access OrganizationService.svc in CRM 2011


Hi,

One of my colleagues was facing the above issue while trying to access the OrganizationService.svc in CRM 2011. The issue as indicated by the exception message was because of the Anonymous Authentication being disabled for the Microsoft Dynamics CRM web application. Enabling it resolved the issue.

Bye.

Microsoft Dynamics CRM Compatibility List


Hi,

Found this article that lists the minimum version of products compatible with Microsoft Dynamics CRM 4.0 and 2011.

Do check it out

http://support.microsoft.com/kb/2669061

Bye.

 

 

Open Report in a new window from Action in SSRS


Hi,

While developing a SSRS report, initially we set the Action property of the text box with the following value that will open the CRM’s Account record

=Parameters!CRM_URL.Value & “?ID={“&Fields!accountid.Value.ToString()&”}&OTC=1″

It was working fine however when we were using the same report inside the Dashboard, the report was not showing up properly as it was inside the IFrame.

So we had to use window.open for the Action’s Expression to open the report properly in a new window from inside Dashboard’s iframe.

=“javascript:void(window.open(‘”+ Parameters!CRM_URL.Value + “?ID={“ + Fields!accountid.Value.ToString() +“}&OTC=1′ ,’_blank’))”

Hope it helps.

System.NotSupportedException: An attempt was made to load an assembly from a network location which would have caused the assembly to be sandboxed in previous versions of the .NET Framework while registering plugin in CRM 2011


Hi,

One of my colleagues was getting the above error while trying to register the plugin using plugin registration tool. This was because the plugin was copied from a network location and hence blocked. Right clicking the plugin assembly, selecting properties and then selecting unblock in the Security section of the General tab resolved the issue.


http://blogs.msdn.com/b/drew/archive/2009/12/24/xunit-and-td-net-fixing-the-attempt-was-made-to-load-an-assembly-from-a-network-location-problem.aspx

Hope it helps.