<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>MayankP&#039;s Blog</title>
	<atom:link href="http://mayankp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mayankp.wordpress.com</link>
	<description>Thoughts and Ideas for Microsoft Technologies (Dynamics CRM,C#.Net,ASP.Net)</description>
	<lastBuildDate>Mon, 30 Jan 2012 03:43:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mayankp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>MayankP&#039;s Blog</title>
		<link>http://mayankp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mayankp.wordpress.com/osd.xml" title="MayankP&#039;s Blog" />
	<atom:link rel='hub' href='http://mayankp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>CRM 2011: Removing Email from queue</title>
		<link>http://mayankp.wordpress.com/2011/10/08/crm-2011-removing-email-from-queue/</link>
		<comments>http://mayankp.wordpress.com/2011/10/08/crm-2011-removing-email-from-queue/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 16:43:52 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[Custom Workflow]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=372</guid>
		<description><![CDATA[Last year I blogged about this on CRM 4.0 but since last few months lots of users queried about similar solution for CRM 2011. This blog entry hopefully will provide solution for this. Well solution logic is same as CRM 4.0, we will create custom workflow which will take email id and source queue id [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=372&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last year I blogged <a href="http://mayankp.wordpress.com/2010/03/02/removing-email-from-crm-queue/" title="this" target="_blank">about this on CRM 4.0</a> but since last few months lots of users queried about similar solution for CRM 2011.  This blog entry hopefully will provide solution for this. </p>
<p>Well solution logic is same as CRM 4.0, we will create custom workflow which will take email id and source queue id as input parameter and then custom will removed this email from relevant queue.</p>
<p>I have done following are steps to achieve this in CRM 2011.</p>
<p><strong>Step 1</strong>:<br />
Create new VS studio project and add necessary reference (i.e. Microsoft.Xrm.Sdk , Microsoft.Xrm.Sdk.Workflow etc.). for more information on how to create custom workflow activity for 2011 refer following article<br />
<a href="http://technet.microsoft.com/en-us/library/gg328515.aspx">http://technet.microsoft.com/en-us/library/gg328515.aspx</a></p>
<p><strong>Step 2 </strong>:<br />
Add new class called RemoveEmail.cs and I have provided full source code for this class at end of this article.  (or it can be downloaded from <a href="http://snipt.org/xoGi" title="http://snipt.org/xoGi" target="_blank">http://snipt.org/xoGi</a>)</p>
<p><strong>Step 3 </strong>:<br />
Register custom workflow assembly on 2011 dynamics server using Plug in Registration Tool.<br />
for more information on how to register custom workflow activity for 2011 refer following article <a href="http://technet.microsoft.com/en-us/library/gg328515.aspx" title="http://technet.microsoft.com/en-us/library/gg328515.aspx" target="_blank">http://technet.microsoft.com/en-us/library/gg328515.aspx</a></p>
<p><strong>Step 4</strong>:<br />
following screen print of on demand workflow I have created for this in CRM 2011 for testing purpose.<br />
<a href="http://mayankp.files.wordpress.com/2011/10/b453333.jpg"><img src="http://mayankp.files.wordpress.com/2011/10/b453333.jpg?w=600&#038;h=435" alt="" title="B453333" width="600" height="435" class="aligncenter size-full wp-image-386" /></a></p>
<p><strong>That&#8217;s it, Done.</strong> if you need more information or got any more queries regarding this please drop comment below.<br />
Hope this helps..</p>
<p>Cheers,<br />
MayankP:)</p>
<p><strong>Source Code</strong></p>
<blockquote>
<p><code><br />
using System;<br />
using System.Activities;<br />
using Microsoft.Xrm.Sdk.Workflow;<br />
using Microsoft.Xrm.Sdk;<br />
using Microsoft.Xrm.Sdk.Query;<br />
using Microsoft.Xrm.Sdk.Messages;<br />
using Microsoft.Xrm.Sdk.Discovery;<br />
using Microsoft.Xrm.Sdk.Client;</p>
<p>namespace CRM2011WorkflowUtilities<br />
{<br />
    public class RemoveEmail : CodeActivity<br />
    {<br />
        protected override void Execute(CodeActivityContext executionContext)<br />
        {<br />
            try<br />
            {<br />
                //Create the context and tracing service<br />
                IExecutionContext context = executionContext.GetExtension();<br />
                IOrganizationServiceFactory serviceFactory = executionContext.GetExtension();<br />
                IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);<br />
                ITracingService tracer = executionContext.GetExtension();</p>
<p>                EntityReference incomingEmail = activityId.Get(executionContext);<br />
                string emailID = incomingEmail.Id.ToString();</p>
<p>                EntityReference incomingQueue = queueId.Get(executionContext);<br />
                string queueID = incomingQueue.Id.ToString();   </p>
<p>                //Get the QueueItemID<br />
                Guid queueItemId = GetQueueItem(service,emailID,queueID);</p>
<p>                //delete relevant queue item record and it will remmoved email from queue<br />
                if (queueItemId != Guid.Empty)<br />
                {<br />
                    service.Delete("queueitem", queueItemId);<br />
                }<br />
            }<br />
            catch (Exception ex)<br />
            {<br />
               Helpers.Throw(String.Format("An error occurred in the {0} plug-in.",<br />
                       this.GetType().ToString()),<br />
                     ex);<br />
            }</p>
<p>            return;<br />
        }</p>
<p>        ///<br />
<summary>
        /// Retrieve Queue Item for this email and queue<br />
        /// </summary>
<p>        ///<br />
        ///<br />
        ///<br />
        ///<br />
        private Guid GetQueueItem(IOrganizationService service,string emailGUID,string QueueGUID)<br />
        {<br />
            Guid queueItemId = Guid.Empty;</p>
<p>            // Share the same access rights as the user, so we must retrieve the user's access rights to the record<br />
            QueryExpression qe = new QueryExpression();<br />
            qe.EntityName = "queueitem";<br />
            qe.ColumnSet = new ColumnSet();<br />
            qe.ColumnSet.AllColumns = true;</p>
<p>            FilterExpression filter = new FilterExpression(); </p>
<p>            ConditionExpression hasEmailId = new ConditionExpression();<br />
            hasEmailId.AttributeName = "objectid";<br />
            hasEmailId.Operator = ConditionOperator.Equal;<br />
            hasEmailId.Values.Add(emailGUID) ;</p>
<p>            ConditionExpression hasQueueId = new ConditionExpression();<br />
            hasQueueId.AttributeName = "queueid";<br />
            hasQueueId.Operator = ConditionOperator.Equal;<br />
            hasQueueId.Values.Add(QueueGUID);</p>
<p>            filter.Conditions.Add(hasEmailId);<br />
            filter.Conditions.Add(hasQueueId);</p>
<p>            qe.Criteria = filter;</p>
<p>            EntityCollection ec = service.RetrieveMultiple(qe);</p>
<p>            if (ec != null &amp;&amp; ec.Entities.Count &gt; 0)<br />
            {<br />
                queueItemId = ec.Entities[0].Id;<br />
            }</p>
<p>            return queueItemId;</p>
<p>        }</p>
<p>        #region Input Parameters</p>
<p>        [RequiredArgument]<br />
        [Input("Source Email Id")]<br />
        [ReferenceTarget("email")]<br />
        public InArgument activityId { get; set; }</p>
<p>        [Input("queue Id")]<br />
        [ReferenceTarget("queue")]<br />
        public InArgument queueId { get; set; }</p>
<p>        #endregion</p>
<p>        #region Output Parameters</p>
<p>        #endregion<br />
    }<br />
}<br />
</code></p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/372/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=372&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/10/08/crm-2011-removing-email-from-queue/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/10/b453333.jpg" medium="image">
			<media:title type="html">B453333</media:title>
		</media:content>
	</item>
		<item>
		<title>Funny error messages</title>
		<link>http://mayankp.wordpress.com/2011/10/07/funny-error-messages/</link>
		<comments>http://mayankp.wordpress.com/2011/10/07/funny-error-messages/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 08:40:41 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[off-topic]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=363</guid>
		<description><![CDATA[Last week, I encountered following funny error messages. Youtube Microsoft Cheers, MayankP<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=363&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week, I encountered following funny error messages.</p>
<p><strong>Youtube</strong></p>
<p><a href="http://mayankp.files.wordpress.com/2011/10/b451.jpg"><img src="http://mayankp.files.wordpress.com/2011/10/b451.jpg?w=600&#038;h=273" alt="" title="B451" width="600" height="273" class="aligncenter size-full wp-image-364" /></a></p>
<p><strong>Microsoft</strong></p>
<p><a href="http://mayankp.files.wordpress.com/2011/10/b452.jpg"><img src="http://mayankp.files.wordpress.com/2011/10/b452.jpg?w=600&#038;h=229" alt="" title="B452" width="600" height="229" class="aligncenter size-full wp-image-365" /></a></p>
<p>Cheers,<br />
MayankP <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/363/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=363&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/10/07/funny-error-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/10/b451.jpg" medium="image">
			<media:title type="html">B451</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/10/b452.jpg" medium="image">
			<media:title type="html">B452</media:title>
		</media:content>
	</item>
		<item>
		<title>CRM 2011 Tip: hiding start pane on CRM entities</title>
		<link>http://mayankp.wordpress.com/2011/09/02/crm-2011-tip-hiding-start-pane-on-crm-entities/</link>
		<comments>http://mayankp.wordpress.com/2011/09/02/crm-2011-tip-hiding-start-pane-on-crm-entities/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 09:16:47 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=356</guid>
		<description><![CDATA[Few of our users did not like this started pane in CRM 2011 and asking us if we disable this. User settings Following steps individual user can do to remove this started pane Step 1: Go to File -&#62; Options -&#62; General tab Step 2: un- tick “Show Get started panes on all lists” and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=356&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Few of our users did not like this started pane in CRM 2011 and asking us if we disable this.</p>
<p><a href="http://mayankp.files.wordpress.com/2011/09/b444-1.jpg"><img src="http://mayankp.files.wordpress.com/2011/09/b444-1.jpg?w=1024&#038;h=456" alt="" title="B444-1" width="1024" height="456" class="aligncenter size-large wp-image-357" /></a></p>
<p><strong>User settings</strong></p>
<p>Following steps individual user can do to remove this started pane<br />
Step 1:  Go to File -&gt; Options -&gt; General tab<br />
Step 2: un- tick “Show Get started panes on all lists” and click ok</p>
<p><a href="http://mayankp.files.wordpress.com/2011/09/b444-2.jpg"><img src="http://mayankp.files.wordpress.com/2011/09/b444-2.jpg?w=600&#038;h=147" alt="" title="B444-2" width="600" height="147" class="aligncenter size-full wp-image-358" /></a></p>
<p><strong>System settings</strong></p>
<p>System admin can switch this setting off for all users by doing following steps.<br />
Step 1:  go to Settings -&gt; Administration -&gt; system settings &#8211; &gt; General tab<br />
Step 2:  set “Show Get Started panes on all lists of all users “ to “NO” and click ok</p>
<p><a href="http://mayankp.files.wordpress.com/2011/09/b444-3.jpg"><img src="http://mayankp.files.wordpress.com/2011/09/b444-3.jpg?w=600&#038;h=120" alt="" title="B444-3" width="600" height="120" class="aligncenter size-full wp-image-359" /></a></p>
<p>Hope this helps..</p>
<p>Cheers,<br />
MayankP:)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=356&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/09/02/crm-2011-tip-hiding-start-pane-on-crm-entities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/09/b444-1.jpg?w=1024" medium="image">
			<media:title type="html">B444-1</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/09/b444-2.jpg" medium="image">
			<media:title type="html">B444-2</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/09/b444-3.jpg" medium="image">
			<media:title type="html">B444-3</media:title>
		</media:content>
	</item>
		<item>
		<title>CRM Outlook client Installation issue</title>
		<link>http://mayankp.wordpress.com/2011/08/02/crm-outlook-client-installation-issue/</link>
		<comments>http://mayankp.wordpress.com/2011/08/02/crm-outlook-client-installation-issue/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 09:45:31 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 4.0]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[CRM Plugin]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=352</guid>
		<description><![CDATA[One of my colleagues had following issue while installing latest CRM roll up for outlook client. Installation cannot proceed: Setup cannot continue because a pending restart is required. Restart the computer and then try running Setup again Please read this article for the solution regarding this. Hope this helps&#8230; Regards, MayankP<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=352&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of my colleagues had following issue while installing latest CRM roll up for outlook client. </p>
<p><code>Installation cannot proceed: Setup cannot continue because a pending restart is required.  Restart the computer and then try running Setup again</code></p>
<p>Please read <a href="http://support.microsoft.com/kb/2004114" title="this article " target="_blank">this article</a> for the solution regarding this.</p>
<p>Hope this helps&#8230;</p>
<p>Regards,<br />
MayankP <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/352/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=352&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/08/02/crm-outlook-client-installation-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>
	</item>
		<item>
		<title>CRM 4.0 Printing Error &#8211; This form has been changed and must be saved before printing.</title>
		<link>http://mayankp.wordpress.com/2011/05/19/crm-4-0-printing-error-this-form-has-been-changed-and-must-be-saved-before-printing/</link>
		<comments>http://mayankp.wordpress.com/2011/05/19/crm-4-0-printing-error-this-form-has-been-changed-and-must-be-saved-before-printing/#comments</comments>
		<pubDate>Thu, 19 May 2011 10:54:53 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 4.0]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Java Script]]></category>
		<category><![CDATA[Unsupported]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=345</guid>
		<description><![CDATA[One of user posted this error in this CRM thread, we had similar issue some time back and one of my colleagues had resolved this issue. Problem This error comes if you got java script code which is constantly updating some variables in the back ground. This makes CRM Form engine believes that form has [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=345&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of user posted this error in this <a href="http://social.microsoft.com/Forums/en-US/crm/thread/37fe5055-bddf-4561-9c90-23a663a469ff" title="CRM thread " target="_blank">CRM thread</a>, we had similar issue some time back and one of my colleagues had resolved this issue.  </p>
<p><strong>Problem</strong><br />
This error comes if you got java script code which is constantly updating some variables in the back ground. This makes CRM Form engine believes that form has been changed so CRM print function will not allow you print CRM form.</p>
<p><strong>Solution</strong><br />
The solution for this is that we over ride existing CRM print on click event and write function to run this print job manually.<br />
Following is example script for Phone call entity. This script needs to put in to the Form On Load Event.</p>
<p><a href="http://mayankp.files.wordpress.com/2011/05/b422.jpg"><img src="http://mayankp.files.wordpress.com/2011/05/b422.jpg?w=600&#038;h=116" alt="" title="B422" width="600" height="116" class="aligncenter size-full wp-image-347" /></a></p>
<p>Following text version of above code, change the object type code as per your requirement.</p>
<p><code>if (document.getElementById('_MBcrmFormPrint') != null)<br />
{<br />
document.getElementById('_MBcrmFormPrint').action = ' openStdWin(prependOrgName("/_forms/print/print.aspx?objectType=4210&amp;id=" + crmForm.ObjectId + "&amp;title=" + CrmEncodeDecode.CrmUrlEncode(parent.document.title))); ';<br />
}</code></p>
<p>Hope this helps!!</p>
<p><strong>Note: -</strong> This is <strong>unsupported change</strong> so please make sure you take necessary back up before doing this change.</p>
<p>Cheers,<br />
MayankP <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/345/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=345&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/05/19/crm-4-0-printing-error-this-form-has-been-changed-and-must-be-saved-before-printing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/05/b422.jpg" medium="image">
			<media:title type="html">B422</media:title>
		</media:content>
	</item>
		<item>
		<title>CRM 4.0 Email Tracking Issues</title>
		<link>http://mayankp.wordpress.com/2011/05/17/crm-4-0-email-tracking-issues/</link>
		<comments>http://mayankp.wordpress.com/2011/05/17/crm-4-0-email-tracking-issues/#comments</comments>
		<pubDate>Tue, 17 May 2011 15:36:47 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 4.0]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=338</guid>
		<description><![CDATA[Recently we started getting following errors in CRM 4.0 outlook client while tracking any email or setting regarding for any email in outlook. Error 1 “An error occurred promoting this item to Microsoft Dynamics CRM. The Microsoft Dynamics CRM server count not be contacted or the user has insufficient permission to perform this action” Error [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=338&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently we started getting following errors in CRM 4.0 outlook client while tracking any email or setting regarding for any email in outlook.</p>
<p><strong>Error 1 </strong><br />
“An error occurred promoting this item to Microsoft Dynamics CRM. The Microsoft Dynamics CRM server count not be contacted or the user has insufficient permission to perform this action”</p>
<p><strong>Error 2</strong><br />
“The Requested record was not found or you do not have sufficient permission to view it”</p>
<p><strong>Solution</strong></p>
<p>Based on <a href="http://support.microsoft.com/kb/933234/" title="this KB Articles" target="_blank">this KB Articles</a> , following are steps to resolve this issue.</p>
<p><strong>Step 1:</strong> Clear the outlook cache as specified in following screen print.<br />
<a href="http://mayankp.files.wordpress.com/2011/05/b41.jpg"><img src="http://mayankp.files.wordpress.com/2011/05/b41.jpg?w=600&#038;h=347" alt="" title="B41" width="600" height="347" class="aligncenter size-full wp-image-341" /></a><br />
       Note: these steps are for outlook 2010.</p>
<p><strong>Step 2:</strong>  clear down IE Temporary files as mentioned in following steps.<br />
1.Open IE- &gt; go to Tools -&gt; Click Internet Options<br />
2. On Browsing history section, click on Delete and then delete all the IE temporary data.</p>
<p>Once above steps are done, close your outlook and then start again.</p>
<p>Hope this helps!!!</p>
<p>Cheers,<br />
MayankP <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/338/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=338&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/05/17/crm-4-0-email-tracking-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/05/b41.jpg" medium="image">
			<media:title type="html">B41</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Community Contributor Award</title>
		<link>http://mayankp.wordpress.com/2011/04/19/microsoft-community-contributor-award/</link>
		<comments>http://mayankp.wordpress.com/2011/04/19/microsoft-community-contributor-award/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 19:39:25 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 4.0]]></category>
		<category><![CDATA[Presentation]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=333</guid>
		<description><![CDATA[Last Month, I was honoured to receive recognition by Microsoft for contributions to the Microsoft online technical communities with the Microsoft Community Contributor Award. Thanks Microsoft and to you who nominated me! Additional information about the Microsoft Community Contributor Award Program can be found at http://www.microsoftcommunitycontributor.com Cheers, MayankP<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=333&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last Month, I was honoured to receive recognition by Microsoft for contributions to the Microsoft online technical communities with the <strong>Microsoft Community Contributor Award</strong>.  </p>
<p><a href="http://mayankp.files.wordpress.com/2011/04/mcc11_logo_horizontal_green.jpg"><img src="http://mayankp.files.wordpress.com/2011/04/mcc11_logo_horizontal_green.jpg?w=600" alt="" title="MCC11_Logo_Horizontal_Green"   class="aligncenter size-full wp-image-334" /></a></p>
<p>Thanks Microsoft and to you who nominated me!</p>
<p>Additional information about the Microsoft Community Contributor Award Program can be found at<br />
<a href="http://www.microsoftcommunitycontributor.com">http://www.microsoftcommunitycontributor.com</a></p>
<p>Cheers,<br />
MayankP <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=333&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/04/19/microsoft-community-contributor-award/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>

		<media:content url="http://mayankp.files.wordpress.com/2011/04/mcc11_logo_horizontal_green.jpg" medium="image">
			<media:title type="html">MCC11_Logo_Horizontal_Green</media:title>
		</media:content>
	</item>
		<item>
		<title>CRM 4.0 Issue:  IE window display full path in Title bar</title>
		<link>http://mayankp.wordpress.com/2011/03/10/crm-4-0-issue-ie-window-display-full-path-in-title-bar/</link>
		<comments>http://mayankp.wordpress.com/2011/03/10/crm-4-0-issue-ie-window-display-full-path-in-title-bar/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 10:39:38 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 4.0]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=325</guid>
		<description><![CDATA[Suddenly few of our CRM user started seeing full path in CRM IE Title bar. After little trial and error method we found that issue was cause by change in Domain Policy and to fix this issue on individual users system we did following steps&#8230; Step 1: open IE -&#62; Tools -&#62; Internet Options Step [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=325&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Suddenly few of our CRM user started seeing full path in CRM IE Title bar.</p>
<p>After little trial and error method we found that issue was cause by change in Domain Policy and to fix this issue on individual users system we did following steps&#8230;</p>
<p><strong>Step 1:</strong> open IE -&gt; Tools -&gt; Internet Options</p>
<p><strong>Step 2:</strong> go to security tab</p>
<p><strong>Step 3:</strong> select Local intranet/trusted sites deepening upon where your CRM sites are added</p>
<p><strong>Step 4:</strong> Click on Custom Level</p>
<p><strong>Step 5:</strong> and the go to the Miscellaneous section and find option called &#8220;Allow script-initiated windows without size or position constraints&#8221; </p>
<p><strong>Step 6:</strong> Select Enabled and click Ok</p>
<p><strong>Step 7:</strong> Restart all IE Sessions and this issue will be fixed.</p>
<p>Hope this helps,</p>
<p>Cheers,<br />
MayankP <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/325/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=325&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/03/10/crm-4-0-issue-ie-window-display-full-path-in-title-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>
	</item>
		<item>
		<title>CRM 2011 Vidoes</title>
		<link>http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/</link>
		<comments>http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 15:16:55 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[Presentation]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=304</guid>
		<description><![CDATA[Following are top 10 videos to kick start on CRM 2011. 1. Conditional Formatting in the Outlook CRM Client 2. User Experience Demo 3. CRM 2011 &#8211; Teams, Queues, Sales Literature 4. CRM 2011 Workflows: Dialogs 5. Goal Metrics and Goals 6. Charts and Dashboards 7. CRM 2011 &#8211; Sharepoint Integration 8. CRM 2011 &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=304&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Following are top 10 videos to kick start on CRM 2011.</p>
<p><strong>1. Conditional Formatting in the Outlook CRM Client </strong></p>
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/IjnhuwUKj20/2.jpg" alt="" /></a></span>
<p><strong>2. User Experience Demo </strong></p>
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/kanjo2x9WY8/2.jpg" alt="" /></a></span>
<p><strong>3. CRM 2011 &#8211; Teams, Queues, Sales Literature </strong></p>
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/0XBIzZ7I508/2.jpg" alt="" /></a></span>
<p><strong>4. CRM 2011 Workflows: Dialogs  </strong></p>
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/hwJ0J6HFlGc/2.jpg" alt="" /></a></span>
<p><strong>5. Goal Metrics and Goals  </strong><br />
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/mlrv3tqZYu0/2.jpg" alt="" /></a></span></p>
<p><strong>6. Charts and Dashboards  </strong><br />
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/CEPzxO0hZ2Y/2.jpg" alt="" /></a></span></p>
<p><strong>7. CRM 2011 &#8211;  Sharepoint Integration </strong></p>
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/030Ooxen188/2.jpg" alt="" /></a></span>
<p><strong>8. CRM 2011 &#8211;  solution management </strong><br />
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/X6KzOSIYAwg/2.jpg" alt="" /></a></span></p>
<p><strong>9. CRM 2011 &#8211;  Connections </strong><br />
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/0ODFmWKzbn4/2.jpg" alt="" /></a></span></p>
<p><strong>10. CRM 2011 &#8211;  Auditing </strong><br />
<span style="text-align:center; display: block;"><a href="http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/"><img src="http://img.youtube.com/vi/DslWIcbspAI/2.jpg" alt="" /></a></span></p>
<p>Hope this helps..</p>
<p>Cheers,<br />
MayankP <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/304/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=304&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2011/03/09/crm-2011-vidoes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamics CRM 2011 update</title>
		<link>http://mayankp.wordpress.com/2010/12/15/dynamics-crm-2011-update/</link>
		<comments>http://mayankp.wordpress.com/2010/12/15/dynamics-crm-2011-update/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 13:58:11 +0000</pubDate>
		<dc:creator>mayankp</dc:creator>
				<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[Dynamics]]></category>

		<guid isPermaLink="false">http://mayankp.wordpress.com/?p=300</guid>
		<description><![CDATA[As you aware CRM dynamics 2011 beta was released in September 2010, now following is link to register for global launch of Dynamics CRM 2011 on 20th January 2011. http://crm.dynamics.com/2011launch/ Also Dynamics CRM 2011 Release Candidate (RC) is now available for download in the Microsoft Download Centre. Following is details for the same from Dynamics [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=300&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As you aware CRM dynamics 2011 beta was released in September 2010, now following is link to register for global launch of Dynamics CRM 2011 on 20th January 2011.</p>
<p><a href="http://crm.dynamics.com/2011launch/">http://crm.dynamics.com/2011launch/</a></p>
<p>Also Dynamics CRM 2011 Release Candidate (RC) is now available for download in the Microsoft Download Centre. Following is details for the same from <a href="http://blogs.msdn.com/b/crm/archive/2010/12/14/microsoft-dynamics-crm-2011-release-candidate-rc-announcement.aspx">Dynamics CRM Team Blog</a>.</p>
<p><strong>Microsoft Dynamics CRM 2011 Server Release Candidate</strong></p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c3f82c6f-c123-4e80-b9b2-ee422a16b91d">http://www.microsoft.com/downloads/details.aspx?FamilyID=c3f82c6f-c123-4e80-b9b2-ee422a16b91d</a><br />
Available in English only  </p>
<p>Microsoft Dynamics CRM 2011 for Microsoft Office Outlook<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=22dc423a-7194-491e-a169-6ace16bfdd36">http://www.microsoft.com/downloads/details.aspx?FamilyID=22dc423a-7194-491e-a169-6ace16bfdd36</a><br />
Available in 25 languages</p>
<p>Microsoft Dynamics CRM 2011 Language Pack<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=db44c564-2338-407e-980a-c9c83ad37729">http://www.microsoft.com/downloads/details.aspx?FamilyID=db44c564-2338-407e-980a-c9c83ad37729</a>Available in 41 languages</p>
<p>Microsoft Dynamics CRM 2011 E-mail Router<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a995f6ad-0099-42fd-9b22-cf7b3d40a2bf">http://www.microsoft.com/downloads/details.aspx?FamilyID=a995f6ad-0099-42fd-9b22-cf7b3d40a2bf</a><br />
Available in 25 languages</p>
<p>Microsoft Dynamics CRM 2011 Report Authoring Extension<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=64a09b75-8376-4b9d-aea3-8a83a1837c4d">http://www.microsoft.com/downloads/details.aspx?FamilyID=64a09b75-8376-4b9d-aea3-8a83a1837c4d</a><br />
Available in 25 languages</p>
<p>Microsoft Dynamics CRM 2011 List Component for Microsoft SharePoint Server 2010<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=23c0f351-8694-4d92-9ddf-34a949aec6a7">http://www.microsoft.com/downloads/details.aspx?FamilyID=23c0f351-8694-4d92-9ddf-34a949aec6a7</a><br />
Available in 41 languages</p>
<p>Cheers,<br />
MayankP:)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayankp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayankp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayankp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayankp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayankp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayankp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayankp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayankp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayankp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayankp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayankp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayankp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayankp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayankp.wordpress.com/300/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayankp.wordpress.com&amp;blog=11733722&amp;post=300&amp;subd=mayankp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayankp.wordpress.com/2010/12/15/dynamics-crm-2011-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42db32b36575ec61f8711554d0fee059?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mayankp</media:title>
		</media:content>
	</item>
	</channel>
</rss>
