Creating a knowledge base article using C# plugin

I am writing this post with complete code to help someone in the community who might be having a similar requirement. Please see the code below: Entity ent = new Entity("kbarticle"); ent.Attributes.Add("title", <title>); ent.Attributes.Add("kbarticletemplateid", new EntityReference("kbarticletemplate",new Guid(< Template Id >))); ent.Attributes.Add("subjectid", new EntityReference("subject", new Guid(<Subject Id >))); string articlexml = "<articledata><section id='0'><content><![CDATA[" + <<This is... Continue Reading →

Error 0x8004F016 while importing a managed solution

A managed solution cannot overwrite the SavedQuery component with Id=xxxx-xxx-xxx-xxx-xxxx.. Error Are you getting below error when trying to import managed solution exported from your dev environment. A managed solution cannot overwrite the SavedQuery component with Id=xxxx-xxx-xxx-xxx-xxxx  which has an unmanaged base instance.The most likely scenario for this error is that an unmanaged solution has... Continue Reading →

PROPER Function in SSRS 2008

SSRS does not contain an inbuilt method for making the first letter of each word uppercase. we can write  uppercase(left(field,1)) + lowercase(right(field,len(string)-1) to do the same job but it gets over complicated and it only modifies first letter of a multi word string. We can use the following function to convert string to proper case.... Continue Reading →

Zipcode Lookup for Account/Contact

Recently I was asked by a customer to populate city, county and state depending on the zip code for accounts and contact. It involved lot of research and a simple java script method worth sharing with the community to save lot of time. I implemented this for accounts and contacts but the same method can... Continue Reading →

Conditional Formatting in CRM 2011

Just found a very interesting feature added to CRM 2011 Outlook Client. Users can now perform conditional formatting on views while working from their outlook and share them with other users. This can be useful while analysing large amount of data for auditing. This video will demonstrate the feature.

Reasons to Upgrade from CRM 4.0 to CRM 2011

There are lot of new functionalities added to CRM  2011 which were missing in CRM 4.0. This summary will help technical consultant and pre sales managers to convince their clients to upgrade their Microsoft  Dynamics CRM system. 1.) Dashboards: Previously clients were using 3rd party software like Dundas or ZAP to create dashboards adding extra... Continue Reading →

Create a website or blog at WordPress.com

Up ↑