<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments for Unitek Microsoft CRM Blog</title>
	<atom:link href="http://www.unitek.com/training/microsoft/crm/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unitek.com/training/microsoft/crm/blog</link>
	<description>Train • Certify • Succeed</description>
	<pubDate>Wed, 17 Mar 2010 00:24:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Outlook Integration With Microsoft CRM 4.0 by Jerry Mollis</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2008/01/30/outlook-integration-with-microsoft-crm-40/comment-page-1/#comment-519</link>
		<dc:creator>Jerry Mollis</dc:creator>
		<pubDate>Tue, 16 Feb 2010 15:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/2008/01/30/outlook-integration-with-microsoft-crm-40/#comment-519</guid>
		<description>I'm new to CRM and have been given the job of exploring its capabilities. Is there a way to incorporate a calendar that contains the appointments of all of the salespeople for a sales director? He wants to be able to look at a central calendar and know what everyone has scheduled in CRM for any given date and time. Does this sound like something that CRM can do?

Thanks,

Jerry</description>
		<content:encoded><![CDATA[<p>I&#8217;m new to CRM and have been given the job of exploring its capabilities. Is there a way to incorporate a calendar that contains the appointments of all of the salespeople for a sales director? He wants to be able to look at a central calendar and know what everyone has scheduled in CRM for any given date and time. Does this sound like something that CRM can do?</p>
<p>Thanks,</p>
<p>Jerry</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Changing The Default Views In CRM 3.0 &amp; CRM 4.0 by Klaus</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2008/01/18/changing-the-default-views-in-crm-30-crm-40/comment-page-1/#comment-509</link>
		<dc:creator>Klaus</dc:creator>
		<pubDate>Wed, 03 Feb 2010 13:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/2008/01/18/changing-the-default-views-in-crm-30-crm-40/#comment-509</guid>
		<description>I have tried the trick of Stunnware: http://www.stunnware.com/crm2/topic.aspx?id=js33 with success, but I can't find the trick to make it work for the Activities too.

I tried to add this piece of modified code in the onload event of the Account form:

areaActivitiesFrame_OnReadyStateChange = function() {

    /* Waiting until the frame has finished loading */
    if (this.readyState == "complete") {

        /* This is the frame we're interested in */
        var frame = document.frames("areaActivitiesFrame");

        /* And this is the view combo box */
        var viewCombo = frame.document.getElementById("actualend");

        /* This is the AppGridFilterContainer control we need to refresh the view */
        var appGrid = frame.document.getElementById("AppGridFilterContainer");

        /* The view combo box uses a style sheet that references a HTML
         * control. We have to wait until the htc file is loaded,
         * otherwise the call to FireOnChange in the SetDefaultView
         * method will fail. */
        if (viewCombo.readyState == "complete") {

            /* If the control already has finished loading, we can
             * directly set the new view. */
            SetDefaultView(viewCombo, "All", appGrid);
        }

        else {
            /* Otherwise we have to register another event handler
            * waiting until all of the include files used by the
            * combo box are loaded as well. */
            viewCombo.onreadystatechange = function() {
                if (this.readyState == "complete") {
                    SetDefaultView(this, "All", appGrid);
                }
            }
        }
    }
}



if (document.getElementById('navActivities') != null) {
    document.getElementById('navActivities').onclick = function() {
        loadArea('areaActivities');
        document.frames('areaActivitiesFrame').document.onreadystatechange = areaActivitiesFrame_OnReadyStateChange;
    }
}


But unfortunately it doesn't work and it fails when closing the Account form.

Do anybody have a working Onload script that works for both activities and history ?</description>
		<content:encoded><![CDATA[<p>I have tried the trick of Stunnware: <a href="http://www.stunnware.com/crm2/topic.aspx?id=js33" rel="nofollow">http://www.stunnware.com/crm2/topic.aspx?id=js33</a> with success, but I can&#8217;t find the trick to make it work for the Activities too.</p>
<p>I tried to add this piece of modified code in the onload event of the Account form:</p>
<p>areaActivitiesFrame_OnReadyStateChange = function() {</p>
<p>    /* Waiting until the frame has finished loading */<br />
    if (this.readyState == &#8220;complete&#8221;) {</p>
<p>        /* This is the frame we&#8217;re interested in */<br />
        var frame = document.frames(&#8221;areaActivitiesFrame&#8221;);</p>
<p>        /* And this is the view combo box */<br />
        var viewCombo = frame.document.getElementById(&#8221;actualend&#8221;);</p>
<p>        /* This is the AppGridFilterContainer control we need to refresh the view */<br />
        var appGrid = frame.document.getElementById(&#8221;AppGridFilterContainer&#8221;);</p>
<p>        /* The view combo box uses a style sheet that references a HTML<br />
         * control. We have to wait until the htc file is loaded,<br />
         * otherwise the call to FireOnChange in the SetDefaultView<br />
         * method will fail. */<br />
        if (viewCombo.readyState == &#8220;complete&#8221;) {</p>
<p>            /* If the control already has finished loading, we can<br />
             * directly set the new view. */<br />
            SetDefaultView(viewCombo, &#8220;All&#8221;, appGrid);<br />
        }</p>
<p>        else {<br />
            /* Otherwise we have to register another event handler<br />
            * waiting until all of the include files used by the<br />
            * combo box are loaded as well. */<br />
            viewCombo.onreadystatechange = function() {<br />
                if (this.readyState == &#8220;complete&#8221;) {<br />
                    SetDefaultView(this, &#8220;All&#8221;, appGrid);<br />
                }<br />
            }<br />
        }<br />
    }<br />
}</p>
<p>if (document.getElementById(&#8217;navActivities&#8217;) != null) {<br />
    document.getElementById(&#8217;navActivities&#8217;).onclick = function() {<br />
        loadArea(&#8217;areaActivities&#8217;);<br />
        document.frames(&#8217;areaActivitiesFrame&#8217;).document.onreadystatechange = areaActivitiesFrame_OnReadyStateChange;<br />
    }<br />
}</p>
<p>But unfortunately it doesn&#8217;t work and it fails when closing the Account form.</p>
<p>Do anybody have a working Onload script that works for both activities and history ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 0&#215;80040201 Sending e-Mail From Outlook by Jeffrey W Pooley</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2009/08/10/error-0x80040201-sending-email-outlook/comment-page-1/#comment-471</link>
		<dc:creator>Jeffrey W Pooley</dc:creator>
		<pubDate>Wed, 09 Dec 2009 16:18:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/?p=164#comment-471</guid>
		<description>Thank you ! I had looked at the message, html, signatures ... but never caught on to the old now invalid addresses. Saved me some bigger headaches.</description>
		<content:encoded><![CDATA[<p>Thank you ! I had looked at the message, html, signatures &#8230; but never caught on to the old now invalid addresses. Saved me some bigger headaches.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 0&#215;80040201 Sending e-Mail From Outlook by Jorge Tavares</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2009/08/10/error-0x80040201-sending-email-outlook/comment-page-1/#comment-462</link>
		<dc:creator>Jorge Tavares</dc:creator>
		<pubDate>Fri, 27 Nov 2009 20:57:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/?p=164#comment-462</guid>
		<description>You saved my day, thanks a lot.
While reading your article, I was getting more and more identified with the issue which I wasted hours today.
I had my Outlook 2007 configured for the Exchange Server of my company, from where I left recently, but still keep receive/send e-mails using my old account so, I swap that account from Exchange to POP3 and add all my new e-mail accounts.
The problem was that I was replying to e-mails sent by people which was cached as exchange addresses.
Following your tip, I just deleted those addresses from the auto-complete list and retyped them, after what, "voilá", all sent w/o any problems.

Many thanks for sharing your experience.</description>
		<content:encoded><![CDATA[<p>You saved my day, thanks a lot.<br />
While reading your article, I was getting more and more identified with the issue which I wasted hours today.<br />
I had my Outlook 2007 configured for the Exchange Server of my company, from where I left recently, but still keep receive/send e-mails using my old account so, I swap that account from Exchange to POP3 and add all my new e-mail accounts.<br />
The problem was that I was replying to e-mails sent by people which was cached as exchange addresses.<br />
Following your tip, I just deleted those addresses from the auto-complete list and retyped them, after what, &#8220;voilá&#8221;, all sent w/o any problems.</p>
<p>Many thanks for sharing your experience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 0&#215;80040201 Sending e-Mail From Outlook by Martin Mucha</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2009/08/10/error-0x80040201-sending-email-outlook/comment-page-1/#comment-458</link>
		<dc:creator>Martin Mucha</dc:creator>
		<pubDate>Wed, 25 Nov 2009 21:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/?p=164#comment-458</guid>
		<description>Great hint! Thank you.
I had the same problem - error occurred only when sending to exchange addresses through POP3 account.
Resolved simply by retyping full email addresses manually without autocomplete that would include exchange addresses.

Thanks again.

Martin</description>
		<content:encoded><![CDATA[<p>Great hint! Thank you.<br />
I had the same problem - error occurred only when sending to exchange addresses through POP3 account.<br />
Resolved simply by retyping full email addresses manually without autocomplete that would include exchange addresses.</p>
<p>Thanks again.</p>
<p>Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 0&#215;80040201 Sending e-Mail From Outlook by Rachel Clarke</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2009/08/10/error-0x80040201-sending-email-outlook/comment-page-1/#comment-453</link>
		<dc:creator>Rachel Clarke</dc:creator>
		<pubDate>Fri, 13 Nov 2009 10:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/?p=164#comment-453</guid>
		<description>I had the exact problem with someone who has two mail profiles, one on our Excahnge server the other connected to a POP3 account. I copied over the NK2 file associated with the Exchange profile so the cahed addresses could be used on the POP3 profile.

Only messages that were being sent to people built from the Exchange address book were failing to be sent with the 80040201 error. Once the addresses were deleted from the cached address book and entered again they were sent successfully.

Thanks :)</description>
		<content:encoded><![CDATA[<p>I had the exact problem with someone who has two mail profiles, one on our Excahnge server the other connected to a POP3 account. I copied over the NK2 file associated with the Exchange profile so the cahed addresses could be used on the POP3 profile.</p>
<p>Only messages that were being sent to people built from the Exchange address book were failing to be sent with the 80040201 error. Once the addresses were deleted from the cached address book and entered again they were sent successfully.</p>
<p>Thanks <img src='http://www.unitek.com/training/microsoft/crm/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resolving Multiple Default Public Views In Microsoft CRM 4.0 Using A Supported Method by Anne Stanton</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2008/03/17/resolving-multiple-default-public-views-in-microsoft-crm-40-using-a-supported-method/comment-page-1/#comment-451</link>
		<dc:creator>Anne Stanton</dc:creator>
		<pubDate>Mon, 09 Nov 2009 20:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/2008/03/17/resolving-multiple-default-public-views-in-microsoft-crm-40-using-a-supported-method/#comment-451</guid>
		<description>Thanks! Very helpful</description>
		<content:encoded><![CDATA[<p>Thanks! Very helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Changing The Default Views In CRM 3.0 &amp; CRM 4.0 by Shannon</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2008/01/18/changing-the-default-views-in-crm-30-crm-40/comment-page-1/#comment-443</link>
		<dc:creator>Shannon</dc:creator>
		<pubDate>Thu, 29 Oct 2009 18:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/2008/01/18/changing-the-default-views-in-crm-30-crm-40/#comment-443</guid>
		<description>I am a 3.0 user.  And first, thanks for the extremely useful code!  We added the code, corrected the quotation marks and changed the areaOppsFrame to areaQuotesFrame to show all quotes instead of all opportunities.  We are now getting an error when we use quick create for contacts.  Has anyone else experienced that?  Is there a fix?

"There was an error with this field's customized event.
Field: crmForm
Event: onload
Error: 'tdAreas' is undefined"</description>
		<content:encoded><![CDATA[<p>I am a 3.0 user.  And first, thanks for the extremely useful code!  We added the code, corrected the quotation marks and changed the areaOppsFrame to areaQuotesFrame to show all quotes instead of all opportunities.  We are now getting an error when we use quick create for contacts.  Has anyone else experienced that?  Is there a fix?</p>
<p>&#8220;There was an error with this field&#8217;s customized event.<br />
Field: crmForm<br />
Event: onload<br />
Error: &#8216;tdAreas&#8217; is undefined&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resolving Multiple Default Public Views In Microsoft CRM 4.0 Using A Supported Method by Anderson Luna</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2008/03/17/resolving-multiple-default-public-views-in-microsoft-crm-40-using-a-supported-method/comment-page-1/#comment-442</link>
		<dc:creator>Anderson Luna</dc:creator>
		<pubDate>Wed, 28 Oct 2009 00:01:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/2008/03/17/resolving-multiple-default-public-views-in-microsoft-crm-40-using-a-supported-method/#comment-442</guid>
		<description>Hey Guys, 

it also only worked for me when I renamed the view name from "temp" to "zzz", Mark you really did magic on finding this!

Thank you very much for the great solution!</description>
		<content:encoded><![CDATA[<p>Hey Guys, </p>
<p>it also only worked for me when I renamed the view name from &#8220;temp&#8221; to &#8220;zzz&#8221;, Mark you really did magic on finding this!</p>
<p>Thank you very much for the great solution!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resolving Multiple Default Public Views In Microsoft CRM 4.0 Using A Supported Method by Was</title>
		<link>http://www.unitek.com/training/microsoft/crm/blog/2008/03/17/resolving-multiple-default-public-views-in-microsoft-crm-40-using-a-supported-method/comment-page-1/#comment-441</link>
		<dc:creator>Was</dc:creator>
		<pubDate>Fri, 09 Oct 2009 14:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.unitek.com/training/microsoft/crm/blog/2008/03/17/resolving-multiple-default-public-views-in-microsoft-crm-40-using-a-supported-method/#comment-441</guid>
		<description>Thx for useful post ! it works for me.........</description>
		<content:encoded><![CDATA[<p>Thx for useful post ! it works for me&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
