<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Improve the Outlook Experience with CRM, part three</title><link>http://blogs.msdn.com/crm/archive/2007/09/04/improve-the-outlook-experience-with-crm-part-three.aspx</link><description>Part One Part Two Reduce Exchange Traffic by Modifying your Outlook Rule I typically get a number of questions from customers about how email really works in CRM and what roles the Sink mailbox and Exchange Router play in the process. The two work hand-in-hand</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>MSDN Blog Postings  &amp;raquo; Improve the Outlook Experience with CRM, part three</title><link>http://blogs.msdn.com/crm/archive/2007/09/04/improve-the-outlook-experience-with-crm-part-three.aspx#4744609</link><pubDate>Tue, 04 Sep 2007 20:56:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4744609</guid><dc:creator>MSDN Blog Postings  » Improve the Outlook Experience with CRM, part three</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://msdnrss.thecoderblogs.com/2007/09/04/improve-the-outlook-experience-with-crm-part-three/"&gt;http://msdnrss.thecoderblogs.com/2007/09/04/improve-the-outlook-experience-with-crm-part-three/&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: Improve the Outlook Experience with CRM, part three</title><link>http://blogs.msdn.com/crm/archive/2007/09/04/improve-the-outlook-experience-with-crm-part-three.aspx#4774465</link><pubDate>Thu, 06 Sep 2007 03:42:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4774465</guid><dc:creator>esandstrand</dc:creator><description>&lt;p&gt;I know this isn't directly related, but I wanted to share this with the group as I haven't seen a solution elsewhere yet.&lt;/p&gt;
&lt;p&gt;If someone could move this to an appropriate article, I'd be grateful.&lt;/p&gt;
&lt;p&gt;The problem is described in the comments for this article: &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/crm/archive/2006/07/03/655714.aspx"&gt;http://blogs.msdn.com/crm/archive/2006/07/03/655714.aspx&lt;/a&gt; and I wasn't able to find a macro script that didn't error out in Outlook 2007. &amp;nbsp;Although I'm not a programmer by any stretch, I was able to modify it and get it to work ok as follows:&lt;/p&gt;
&lt;p&gt;Sub SyncCRMCompanyName()&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Dim objApp As Application&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Dim objNS As NameSpace&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Dim objContacts As MAPIFolder&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Dim colItems As Items&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Dim objContact As ContactItem&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Dim strParentAcct As String&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Dim i As Integer&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Set objApp = CreateObject(&amp;quot;Outlook.Application&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Set objNS = objApp.GetNamespace(&amp;quot;MAPI&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Set objContacts = objNS.GetDefaultFolder(olFolderContacts)&lt;/p&gt;
&lt;p&gt; &amp;nbsp;i = 0&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Set colItems = objContacts.Items&lt;/p&gt;
&lt;p&gt; &amp;nbsp;For Each objContact In colItems&lt;/p&gt;
&lt;p&gt; &amp;nbsp; strParentAcct = &amp;quot;&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; If objContact.CompanyName = &amp;quot;&amp;quot; Then&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If objContact.UserProperties.Count &amp;gt; 0 Then&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;strParentAcct = objContact.UserProperties.Item(&amp;quot;Parent Account&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If strParentAcct &amp;lt;&amp;gt; &amp;quot;&amp;quot; Or objContact.CompanyName &amp;lt;&amp;gt; strParentAcct Then&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Rem Answer = MsgBox(strParentAcct, vbOKCancel)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;objContact.CompanyName = strParentAcct&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;objContact.Save&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;i = i + 1&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;End If&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Next&lt;/p&gt;
&lt;p&gt; &amp;nbsp;MsgBox (&amp;quot;All done: &amp;quot; &amp;amp; i &amp;amp; &amp;quot; records updated&amp;quot;)&lt;/p&gt;
&lt;p&gt;End Sub&lt;/p&gt;
&lt;p&gt;Hopefully this will help someone&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Eivind&lt;/p&gt;
</description></item><item><title>Improve the Outlook Experience with CRM, part four</title><link>http://blogs.msdn.com/crm/archive/2007/09/04/improve-the-outlook-experience-with-crm-part-three.aspx#4881351</link><pubDate>Wed, 12 Sep 2007 19:04:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4881351</guid><dc:creator>Microsoft Dynamics CRM Team Blog</dc:creator><description>&lt;p&gt;Modify your Internet Explorer Settings to Reduce Potential Issues Inside and Outside Outlook Part One&lt;/p&gt;
</description></item><item><title>Improve the Outlook Experience with CRM, part four</title><link>http://blogs.msdn.com/crm/archive/2007/09/04/improve-the-outlook-experience-with-crm-part-three.aspx#4881661</link><pubDate>Wed, 12 Sep 2007 19:28:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4881661</guid><dc:creator>Noticias externas</dc:creator><description>&lt;p&gt;Modify your Internet Explorer Settings to Reduce Potential Issues Inside and Outside Outlook Part One&lt;/p&gt;
</description></item><item><title>re: Improve the Outlook Experience with CRM, part three</title><link>http://blogs.msdn.com/crm/archive/2007/09/04/improve-the-outlook-experience-with-crm-part-three.aspx#5508155</link><pubDate>Thu, 18 Oct 2007 16:03:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5508155</guid><dc:creator>Pablo Gómez</dc:creator><description>&lt;p&gt;Hello everybody!!&lt;/p&gt;
&lt;p&gt;I&amp;#180;m using the Deploy Rule Wizard from MS CRM 3.0 and I would like to know how to distribute the CRM rule with the modification of the rule with the specify words in the subject condition. Do you know how to do this??? &lt;/p&gt;
&lt;p&gt;Kindest regards,&lt;/p&gt;
&lt;p&gt;Pablo&lt;/p&gt;</description></item></channel></rss>