Wednesday, May 07, 2008

Integrating CRM using SQL Integration Services (SSIS)

The article that I wrote on integrating CRM using SQL Integration Services (SSIS) is posted on the CRM Team Blog. I hope this will help you in your next CRM integration project. You can click the link below to read the article. http://blogs.msdn.com/crm/archive/2008/05/07/integrating-crm-using-sql-integration-services-ssis.aspx

I would like to thank Darren Hubert, Matt Bonig, and Jeremy Hofmann on showed me the work around and helping me understand how to use SSIS to call web services. Thanks Guys!

Monday, February 25, 2008

Hiding Views in CRM 4.0 Using Plug-in

There are many new moving parts added to CRM 4.0 and I am learning something new every day from the community, the projects that I am working on and the people around me. What I have learned this week by working with Sean McNellis at Microsoft is to hide Views using a simple CRM 4.0 plug-in.

As many of you may already know that Microsoft took off the capabilities of sharing views which many people used in CRM 3.0 to hide unwanted System Views from the user's view list. There have been many posts in the CRM newsgroup community on how to hide the views.

My colleague, Jeremy Hofmann found a clever way of hiding the views by updating a bit field in SavedQueryBase table against the MSCRM database. Unfortunately manipulating with the MSCRM database is not encouraged and also not supported by Microsoft. So what can we do?

What I have learned is that we can manipulate with the SavedQuery entity through a simple plug-in to control what shows up on the user's view drop down list. There are many neat things that you can do through the savedquery class offered by the SDK, you can read about it in the 4.0 SDK.

In this post, I will show you how to hide some Contact System views by writing a simple plug-in. I will intercept the retrieve operation that CRM used for getting the views and then append more condition logics to the its query expression.

Before:

ScreenHunter_01 Feb. 25 22.10

C# Code:

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Crm.Sdk;
using Microsoft.Crm.Sdk.Metadata;
using Microsoft.Crm.Sdk.Query;
using Microsoft.Crm.SdkTypeProxy;
using Microsoft.Crm.SdkTypeProxy.Metadata;

namespace CrmAddon.Crm.Plugin
{
public class HideContactViewsPlugin : IPlugin
{
public void Execute(IPluginExecutionContext context)
{


            // Query the SavedQueryBase table to retrieve the Query Id
Guid[] Views = new Guid[] {
new Guid("9818766E-7172-4D59-9279-013835C3DECD"), //NA-Contacts: No Orders in Last 6 Months
new Guid("9C241A33-CA0B-4E50-AE92-DB780D5B2A12"), //NA-Contacts: Responded to Campaigns in Last 6 Months
};

if (context.InputParameters != null && gHiddenViews.Length > 0)
{
if (context.InputParameters.Properties.Contains(ParameterName.Query))
{
QueryExpression qe = (QueryExpression)context.InputParameters.Properties[ParameterName.Query];

//only apply this action if the query is for 'views' or saved queries
if (qe.EntityName == "savedquery")
{
if (qe.Criteria != null)
{
if (qe.Criteria.Conditions != null)
{


                                //Append more condition logic to the default query that's used by CRM. In this case, I filtered on the savedqueryid to exclude the views from the Ids identified above.


ConditionExpression queryCondition = new ConditionExpression("savedqueryid", ConditionOperator.NotIn, Views);
qe.Criteria.Conditions.Add(queryCondition);
context.InputParameters.Properties[ParameterName.Query] = qe;
}
}
}
}
}
}
}
}


Plug-in Registration:


Message: RetrieveMultiple
Primary Entity: savedquery
Stage of Execution: Pre Stage
Execution Mode: Synchronous


Sample Registration Snapshot:


...


<Step


    CustomConfiguration = ""


    Description = "Hide Contact View Plug-in"


    FilteringAttributes = ""


    ImpersonatingUserId = ""


    InvocationSource = "0"


    MessageName = "RetrieveMultiple"


    Mode = "0"


    PluginTypeFriendlyName = "Hide Contact Views"


   PluginTypeName = "CrmAddon.Crm.Plugin.HideContactViewsPlugin"


    PrimaryEntityName = "savedquery"


    SecondaryEntityName = ""


    Stage = "10"


    SupportedDeployment = "0" >


</Step>

...



After:



image



As you can see that the "Contacts: No Orders in Last 6 Months" and "Contacts: Responded to Campaigns in Last 6 Months" views are removed from the drop down list. The new CRM 4.0 SDK is really powerful and you can definitely do more with it. E.g. hide/show the view based on the user id or team, etc...



I hope this will help you on your next CRM project. :)

Thursday, January 24, 2008

Monday, January 21, 2008

CRM 4.0 MSDN Keys Available

Hi Folks,

If you are MSDN w/ Premium subscribers, the MSDN key for CRM 4.0 is available on the MSDN site.

Monday, January 14, 2008

CRM 3.0 - Set State for Activities

Finally, I got my Windows Live Writer working again on my laptop. Windows Live Writer definitely my favorite blogging tool. :)

I built a Set State callout for my client recently, what I have learned during development was that before setting state of the activity record. It will automatically call the CRM web service to set the Actual End Date of the activity before setting the status. So this means there's two web service calls in the background for changing the state of any activities.

Tuesday, October 16, 2007

CRM 4.0 Plug-In

I posted a blog article about CRM 4.0 Plug-In on our company blog, hope to give CRM developers some ideas on what CRM plug-in is, etc...

click the link below to view the article.

http://crowechizek.typepad.com/crm/2007/10/microsoft-dyn-2.html

Tuesday, October 09, 2007

CRM 4.0 VPC

CRM 4.0 is available for partners to download, you can download the image from the link below:

https://mbs.microsoft.com/partnersource/products/mscrm/

The CRM application expire 11/20/2007 and the VPC image itself expire 11/30/2008.