<?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>Jarrett&#039;s Expert CRM</title>
	<atom:link href="http://jarrettexpertcrm.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jarrettexpertcrm.wordpress.com</link>
	<description>Microsoft CRM Solutions</description>
	<lastBuildDate>Wed, 28 Dec 2011 05:07:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jarrettexpertcrm.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jarrett&#039;s Expert CRM</title>
		<link>http://jarrettexpertcrm.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jarrettexpertcrm.wordpress.com/osd.xml" title="Jarrett&#039;s Expert CRM" />
	<atom:link rel='hub' href='http://jarrettexpertcrm.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Microsoft CRM 2011 Disable Fields From Picklist</title>
		<link>http://jarrettexpertcrm.wordpress.com/2011/05/24/microsoft-crm-2011-disable-fields-from-picklist/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2011/05/24/microsoft-crm-2011-disable-fields-from-picklist/#comments</comments>
		<pubDate>Tue, 24 May 2011 15:12:59 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[CRM 5]]></category>
		<category><![CDATA[CRM 5.0]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[microsoft crm 2011 picklist]]></category>
		<category><![CDATA[Picklist Disable]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=392</guid>
		<description><![CDATA[In some cases you need to disable fields based of the value of a picklist. Below is the code to achieve this. function disableToggle() { var value = Xrm.Page.getAttribute(&#8220;PICKLISTFIELD&#8221;).getValue() // First Picklist value if (value == &#8220;100000000&#8243;) { Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(false); Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(false); Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true); } // Second picklist value else if (value == &#8220;100000001&#8243;) { Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true); Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true); Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(false); [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=392&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a><br />
In some cases you need to disable fields based of the value of a picklist. Below is the code to achieve this.</p>
<p>function disableToggle()<br />
{</p>
<p>var value = Xrm.Page.getAttribute(&#8220;PICKLISTFIELD&#8221;).getValue()<br />
// First Picklist value<br />
if (value == &#8220;100000000&#8243;)<br />
{<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(false);<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(false);<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true);</p>
<p>}<br />
// Second picklist value<br />
else if (value == &#8220;100000001&#8243;)<br />
{<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true);<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true);<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(false);</p>
<p>}<br />
// Third picklist value<br />
else if (value == &#8220;100000002&#8243;)<br />
{<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true);<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true);<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(false);</p>
<p>}<br />
// Fourth picklist value<br />
else if (value == &#8220;100000003&#8243;)<br />
{<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true);<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(true);<br />
Xrm.Page.ui.controls.get(&#8220;FIELD&#8221;).setDisabled(false);</p>
<p>}<br />
}</p>
<p>Enjoy!!</p>
<p>- JC</p>
<p>For more information about Dynamics Four you can contact us at <a href="http://www.dynamics4.com">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/392/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=392&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2011/05/24/microsoft-crm-2011-disable-fields-from-picklist/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting a default value on a lookup field in Microsoft Dynamics CRM 2011</title>
		<link>http://jarrettexpertcrm.wordpress.com/2011/05/23/setting-a-default-value-on-a-lookup-field-in-microsoft-dynamics-crm-2011/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2011/05/23/setting-a-default-value-on-a-lookup-field-in-microsoft-dynamics-crm-2011/#comments</comments>
		<pubDate>Mon, 23 May 2011 20:21:55 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[CRM 2011 Video]]></category>
		<category><![CDATA[CRM 5]]></category>
		<category><![CDATA[CRM 5.0]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[default look up microsoft crm 2011]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[filtered lookups]]></category>
		<category><![CDATA[jscript]]></category>
		<category><![CDATA[look up field 2011]]></category>
		<category><![CDATA[lookup filters]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft crm]]></category>
		<category><![CDATA[Microsoft CRM 4.0]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=384</guid>
		<description><![CDATA[In previous a post i posted how to default a value on a lookup field in 4.0. Here is the solution for CRM 2011 function priceList() { //Create an array to set as the DataValue for the lookup control. var lookupData = new Array(); //Create an Object add to the array. var lookupItem= new Object(); [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=384&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a><br />
In previous a post i posted how to default a value on a lookup field in 4.0. Here is the solution for CRM 2011<br />
function priceList()<br />
{<br />
//Create an array to set as the DataValue for the lookup control.<br />
var lookupData = new Array();<br />
//Create an Object add to the array.<br />
   var lookupItem= new Object();<br />
//Set the id, typename, and name properties to the object.<br />
   lookupItem.id = &#8216;{27457CD-3C7C-E011-8E52-1CC1DE7983EB%257d}&#8217;;<br />
   lookupItem.typename = &#8216;pricelevel&#8217;;<br />
   lookupItem.name = &#8216;test&#8217;;<br />
// Add the object to the array.<br />
   lookupData[0] = lookupItem;<br />
// Set the value of the lookup field to the value of the array.<br />
   Xrm.Page.getAttribute(&#8220;pricelevelid&#8221;).setValue(lookupData);<br />
}</p>
<p>In my example i am getting the pricelist &#8220;test&#8221; and defaulting it in the pricelist field on the Opportunity entity. Below is the template you can use to utilize the code for a different look up and values.<br />
function priceList()<br />
{<br />
//Create an array to set as the DataValue for the lookup control.<br />
var lookupData = new Array();<br />
//Create an Object add to the array.<br />
   var lookupItem= new Object();<br />
//Set the id, typename, and name properties to the object.<br />
   lookupItem.id = ‘{Fields Guid}’;<br />
   lookupItem.typename = ‘Entity Name’;<br />
   lookupItem.name = Lookup Value;<br />
// Add the object to the array.<br />
   lookupData[0] = lookupItem;<br />
// Set the value of the lookup field to the value of the array.<br />
Xrm.Page.getAttribute(&#8220;FieldName&#8221;).setValue(lookupData);</p>
<p>}</p>
<p>Enjoy!!</p>
<p>For more information about Dynamics Four you can contact us at <a href="http://www.dynamics4.com">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/384/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=384&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2011/05/23/setting-a-default-value-on-a-lookup-field-in-microsoft-dynamics-crm-2011/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics CRM 2011 Show Originating Lead Notes After Converting</title>
		<link>http://jarrettexpertcrm.wordpress.com/2011/05/01/microsoft-dynamics-crm-2011-show-originating-lead-notes-after-converting/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2011/05/01/microsoft-dynamics-crm-2011-show-originating-lead-notes-after-converting/#comments</comments>
		<pubDate>Sun, 01 May 2011 02:34:05 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[jscript]]></category>
		<category><![CDATA[Lead Notes]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft crm]]></category>
		<category><![CDATA[Microsoft CRM 4.0]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=375</guid>
		<description><![CDATA[In a previous post i showed how to display originating leads notes in an iframe after converting. In Microsoft CRM 2011 that code no longer works. Here is the updated code. function originatingLeadNotes() { var Parent = Xrm.Page.data.entity.attributes.get(&#8220;originatingleadid&#8221;); var IFrame = Xrm.Page.ui.controls.get(&#8220;IFRAME_originatingLeadNotes&#8221;); if (Parent.getValue() != null) { var GUIDvalue = Parent.getValue()[0].id; IFrame.setSrc(&#8220;/_controls/notes/notesdata.aspx?id=&#8221;+ GUIDvalue + &#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=375&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a><br />
In a previous post i showed how to display originating leads notes in an iframe after converting. In Microsoft CRM 2011 that code no longer works. Here is the updated code.<br />
function originatingLeadNotes()<br />
{<br />
var Parent = Xrm.Page.data.entity.attributes.get(&#8220;originatingleadid&#8221;);<br />
    var IFrame = Xrm.Page.ui.controls.get(&#8220;IFRAME_originatingLeadNotes&#8221;);</p>
<p>    if (Parent.getValue() != null) {</p>
<p>        var GUIDvalue = Parent.getValue()[0].id;</p>
<p>        IFrame.setSrc(&#8220;/_controls/notes/notesdata.aspx?id=&#8221;+ GUIDvalue + &#8221; &amp;ParentEntity=3&amp;EnableInlineEdit=false&amp;EnableInsert=false&#8221;);<br />
       }<br />
    else<br />
{<br />
          IFrame.setSrc(&#8220;about:blank&#8221;);<br />
        }</p>
<p>}</p>
<p>Enjoy!<br />
-JC</p>
<p>For more information about Dynamics Four or to contact us please visit <a href="http://dynamics4.com/">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/375/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=375&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2011/05/01/microsoft-dynamics-crm-2011-show-originating-lead-notes-after-converting/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics CRM 4.0 / 2011 Tech Tuesdays and Webinars</title>
		<link>http://jarrettexpertcrm.wordpress.com/2011/01/11/microsoft-dynamics-crm-4-0-2011-tech-tuesdays-and-webinars/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2011/01/11/microsoft-dynamics-crm-4-0-2011-tech-tuesdays-and-webinars/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 05:41:03 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[CRM 2011 Video]]></category>
		<category><![CDATA[CRM 5]]></category>
		<category><![CDATA[CRM 5.0]]></category>
		<category><![CDATA[CRM 5.0 Video]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[hiding tabs at runtime]]></category>
		<category><![CDATA[jscript]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft CRM 4.0]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=357</guid>
		<description><![CDATA[CRM 2011 Preview &#8211; the Power of Productivity. Join this free webinar to learn more about the newest release of Microsoft Dynamics CRM. Sessions are held on the 2nd Thursday of each month. Tech Tuesdays &#8211; Get practical answers and proven solutions from the CRM experts. Dynamics Four offers a free one session designed to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=357&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a></p>
<p>CRM 2011 Preview &#8211; the Power of Productivity.<br />
 Join this free webinar to learn more about the newest release of Microsoft Dynamics CRM.<br />
 Sessions are held on the 2nd Thursday of each month.</p>
<p>Tech Tuesdays &#8211; Get practical answers and proven solutions from the CRM experts.  Dynamics Four offers a free one session designed to explore new concepts, capabilities, and general discussion covering the sales, marketing, and service modules within Dynamics CRM.  Sessions are held on the 2nd Tuesday of each month.</p>
<p><a href="http://www.clicktoattend.com/?id=153046">http://www.clicktoattend.com/?id=153046</a>     This is link to sign up for Tech Tuesday</p>
<p><a href="http://www.clicktoattend.com/?id=153074">http://www.clicktoattend.com/?id=153074</a> – Link to sign up for CRM2011 preview</p>
<p>Enjoy!</p>
<p>-JC</p>
<p>For more information about Dynamics Four or to contact us please visit <a href="http://dynamics4.com/">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/357/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=357&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2011/01/11/microsoft-dynamics-crm-4-0-2011-tech-tuesdays-and-webinars/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics CRM 4.0 Bit field Onchange instant response Jscript</title>
		<link>http://jarrettexpertcrm.wordpress.com/2010/11/27/microsoft-dynamics-crm-4-0-bit-field-onchange-instant-response-jscript/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2010/11/27/microsoft-dynamics-crm-4-0-bit-field-onchange-instant-response-jscript/#comments</comments>
		<pubDate>Sat, 27 Nov 2010 22:21:08 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[bit field]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[jscript]]></category>
		<category><![CDATA[jscript bitfield onchange]]></category>
		<category><![CDATA[microsoft crm]]></category>
		<category><![CDATA[Microsoft CRM 4.0]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=346</guid>
		<description><![CDATA[In many situations you need the instant reaction when a user clicks a bit field, not the delay it normally does. By using the below code, you will now be able to click the bit field and have instant results. Not having to click off screen for the onchange to fire. The following code will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=346&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a><br />
In many situations you need the instant reaction when a user clicks a bit field, not the delay it normally does. By using the below code, you will now be able to click the bit field and have instant results. Not having to click off screen for the onchange to fire.</p>
<p>The following code will be placed Onload. Replace &#8220;bitfield&#8221; with your actual bit field, and place your onchange code inside the &#8220;{}&#8221;</p>
<p>crmForm.all.bitfield.onclick = function()<br />
{<br />
    //Existing onChange() code<br />
}</p>
<p>Enjoy!</p>
<p>-JC</p>
<p>For more information about Dynamics Four or to contact us please visit <a href="http://dynamics4.com/">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/346/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=346&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2010/11/27/microsoft-dynamics-crm-4-0-bit-field-onchange-instant-response-jscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics CRM 2011 vs Salesforce</title>
		<link>http://jarrettexpertcrm.wordpress.com/2010/10/05/microsoft-dynamics-crm-2011-vs-salesforce/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2010/10/05/microsoft-dynamics-crm-2011-vs-salesforce/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 15:56:48 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[CRM 5]]></category>
		<category><![CDATA[CRM 5.0]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[microsoft crm 2011 vs salesforce]]></category>
		<category><![CDATA[salesforce]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=311</guid>
		<description><![CDATA[Not happy with Salesforce.com? On the fence between Microsoft Dynamics CRM 2011 or Salesforce? Let Dynamics Four show you why Microsoft Dynamics CRM 2011 is the right choice. Sign up for the October promotion today! https://dynamicsfour.leads.dynamicssite.com/SFoffer.aspx -JC<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=311&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/10/finish21.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/10/finish21.png?w=460&#038;h=166" alt="" title="finish2" width="460" height="166" class="aligncenter size-full wp-image-330" /></a> Not happy with Salesforce.com? On the fence between Microsoft Dynamics CRM 2011 or Salesforce? Let Dynamics Four show you why Microsoft Dynamics CRM 2011 is the right choice. Sign up for the October promotion today!<br />
<a href="https://dynamicsfour.leads.dynamicssite.com/SFoffer.aspx">https://dynamicsfour.leads.dynamicssite.com/SFoffer.aspx</a></p>
<p>-JC</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/311/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=311&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2010/10/05/microsoft-dynamics-crm-2011-vs-salesforce/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/10/finish21.png" medium="image">
			<media:title type="html">finish2</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics CRM 2011 Edit Site Map</title>
		<link>http://jarrettexpertcrm.wordpress.com/2010/09/27/microsoft-dynamics-crm-2011-edit-site-map/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2010/09/27/microsoft-dynamics-crm-2011-edit-site-map/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 16:14:17 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[CRM 5]]></category>
		<category><![CDATA[CRM 5.0]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[edit site map]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft crm]]></category>
		<category><![CDATA[Microsoft CRM 4.0]]></category>
		<category><![CDATA[Site Map]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=291</guid>
		<description><![CDATA[For those that are exploring the new beta CRM 2011 know that a lot has changed. One of the things I wanted to play around with was Site Map editing to see what was different from CRM 4.0. CRM 2011 now has a new feature called &#8220;Solutions&#8221; which pretty much took over the role of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=291&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a></p>
<p>For those that are exploring the new beta CRM 2011 know that a lot has changed. One of the things I wanted to play around with was Site Map editing to see what was different from CRM 4.0. CRM 2011 now has a new feature called &#8220;Solutions&#8221; which pretty much took over the role of import/export customizations in 4.0. My first efforts were to create a &#8220;Solution&#8221; and add the Site Map client extension to it. Then, export the Solution, unzip the folder, open Site Map in notepad, make changes, and import back in. Failed. Hmmm ok, let me try and import the original zipped export i did. Success. Ok so basically I could import the original zip file just not one I unzipped. So then i right clicked on zipped folder, selected open with Winzip, modified the sitemap, save and close. Imported successfully. Basically what I see is it needed the orginal export, not a duplicate copy. Im sure there are multiple other ways of doing this so please post to this with other options.</p>
<p>Hope this helps!<br />
- JC</p>
<p>For more information about Dynamics Four or to contact us please visit <a href="http://dynamics4.com/">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/291/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=291&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2010/09/27/microsoft-dynamics-crm-2011-edit-site-map/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics CRM 2011 Quick Video Tour #1</title>
		<link>http://jarrettexpertcrm.wordpress.com/2010/09/16/microsoft-dynamics-crm-2011-quick-video-tour-1/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2010/09/16/microsoft-dynamics-crm-2011-quick-video-tour-1/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 02:58:07 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[CRM 2011 Video]]></category>
		<category><![CDATA[CRM 5]]></category>
		<category><![CDATA[CRM 5.0]]></category>
		<category><![CDATA[CRM 5.0 Video]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[microsoft crm]]></category>
		<category><![CDATA[Microsoft CRM 4.0]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=281</guid>
		<description><![CDATA[Here is a quick video inside CRM 2011, more videos to come. Please feel free to post comments and if there are certain areas you would like me to go over. For more information about Dynamics Four or to contact us please visit http://www.dynamics4.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=281&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a><br />
Here is a quick video inside CRM 2011, more videos to come. Please feel free to post comments and if there are certain areas you would like me to go over.</p>
<span style="text-align:center; display: block;"><a href="http://jarrettexpertcrm.wordpress.com/2010/09/16/microsoft-dynamics-crm-2011-quick-video-tour-1/"><img src="http://img.youtube.com/vi/Be5S6VNVUGM/2.jpg" alt="" /></a></span>
<p>For more information about Dynamics Four or to contact us please visit <a href="http://dynamics4.com/">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=281&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2010/09/16/microsoft-dynamics-crm-2011-quick-video-tour-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics CRM 2011</title>
		<link>http://jarrettexpertcrm.wordpress.com/2010/09/14/microsoft-dynamics-crm-2011/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2010/09/14/microsoft-dynamics-crm-2011/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 19:00:57 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[CRM 5]]></category>
		<category><![CDATA[CRM 5.0]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft crm]]></category>
		<category><![CDATA[Microsoft CRM 4.0]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=251</guid>
		<description><![CDATA[For those that are interested in what CRM 5.0 looks like, here are some screen shots. As you can see a lot has changed. CRM 2011 has a ton of new features that i will be showing in an upcoming video. For more information about Dynamics Four or to contact us please visit http://www.dynamics4.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=251&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a></p>
<p>For those that are interested in what CRM 5.0 looks like, here are some screen shots.<br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/image15.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/image15.png?w=460&#038;h=238" alt="" title="image1" width="460" height="238" class="alignleft size-full wp-image-265" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/account1.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/account1.png?w=460&#038;h=341" alt="" title="account" width="460" height="341" class="alignleft size-full wp-image-266" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/lead.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/lead.png?w=460&#038;h=342" alt="" title="lead" width="460" height="342" class="alignleft size-full wp-image-267" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/image3.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/image3.png?w=460&#038;h=258" alt="" title="image3" width="460" height="258" class="alignleft size-full wp-image-268" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/image4.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/image4.png?w=460&#038;h=208" alt="" title="image4" width="460" height="208" class="alignleft size-full wp-image-269" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/image5.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/image5.png?w=460&#038;h=211" alt="" title="image5" width="460" height="211" class="alignleft size-full wp-image-270" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/image6.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/image6.png?w=460&#038;h=258" alt="" title="image6" width="460" height="258" class="alignleft size-full wp-image-271" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/image7.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/image7.png?w=460&#038;h=258" alt="" title="image7" width="460" height="258" class="alignleft size-full wp-image-272" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/image8.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/image8.png?w=460&#038;h=258" alt="" title="image8" width="460" height="258" class="alignleft size-full wp-image-273" /></a><br />
<a href="http://jarrettexpertcrm.files.wordpress.com/2010/09/image9.png"><img src="http://jarrettexpertcrm.files.wordpress.com/2010/09/image9.png?w=460&#038;h=258" alt="" title="image9" width="460" height="258" class="alignleft size-full wp-image-274" /></a></p>
<p>As you can see a lot has changed. CRM 2011 has a ton of new features that i will be showing in an upcoming video.</p>
<p>For more information about Dynamics Four or to contact us please visit <a href="http://dynamics4.com/">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=251&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2010/09/14/microsoft-dynamics-crm-2011/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/image15.png" medium="image">
			<media:title type="html">image1</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/account1.png" medium="image">
			<media:title type="html">account</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/lead.png" medium="image">
			<media:title type="html">lead</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/image3.png" medium="image">
			<media:title type="html">image3</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/image4.png" medium="image">
			<media:title type="html">image4</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/image5.png" medium="image">
			<media:title type="html">image5</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/image6.png" medium="image">
			<media:title type="html">image6</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/image7.png" medium="image">
			<media:title type="html">image7</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/image8.png" medium="image">
			<media:title type="html">image8</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2010/09/image9.png" medium="image">
			<media:title type="html">image9</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics CRM 4.0 Removing commas in integer field</title>
		<link>http://jarrettexpertcrm.wordpress.com/2010/09/02/microsoft-dynamics-crm-4-0-removing-commas-in-integer-field/</link>
		<comments>http://jarrettexpertcrm.wordpress.com/2010/09/02/microsoft-dynamics-crm-4-0-removing-commas-in-integer-field/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 14:30:14 +0000</pubDate>
		<dc:creator>jarrettexpertcrm</dc:creator>
				<category><![CDATA[Microsoft CRM General]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[crm tips]]></category>
		<category><![CDATA[Dynamics Four]]></category>
		<category><![CDATA[Dynamics4]]></category>
		<category><![CDATA[jscript]]></category>
		<category><![CDATA[microsoft crm]]></category>
		<category><![CDATA[Microsoft CRM 4.0]]></category>
		<category><![CDATA[Removing Commas]]></category>
		<category><![CDATA[Removing commas jscript]]></category>

		<guid isPermaLink="false">http://jarrettexpertcrm.wordpress.com/?p=242</guid>
		<description><![CDATA[Sometimes it is necessary to have int fields without the commas. Place the following code onload: if(crmForm.all.fieldname != null &#38;&#38; crmForm.all.fieldname.DataValue != null) { crmForm.all.fieldname.value = crmForm.all.fieldname.DataValue; } Thats all it takes. Enjoy! For more information about Dynamics Four or to contact us please visit http://www.dynamics4.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=242&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png"><img title="d4 logo" src="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png?w=460&#038;h=99" alt="" width="460" height="99" /></a><br />
Sometimes it is necessary to have int fields without the commas. Place the following code onload:<br />
if(crmForm.all.fieldname != null &amp;&amp; crmForm.all.fieldname.DataValue != null)<br />
{<br />
 crmForm.all.fieldname.value = crmForm.all.fieldname.DataValue;<br />
}</p>
<p>Thats all it takes. Enjoy!</p>
<p>For more information about Dynamics Four or to contact us please visit <a href="http://dynamics4.com/">http://www.dynamics4.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrettexpertcrm.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrettexpertcrm.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrettexpertcrm.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrettexpertcrm.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrettexpertcrm.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrettexpertcrm.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrettexpertcrm.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrettexpertcrm.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrettexpertcrm.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrettexpertcrm.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrettexpertcrm.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrettexpertcrm.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrettexpertcrm.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrettexpertcrm.wordpress.com/242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrettexpertcrm.wordpress.com&amp;blog=8558373&amp;post=242&amp;subd=jarrettexpertcrm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrettexpertcrm.wordpress.com/2010/09/02/microsoft-dynamics-crm-4-0-removing-commas-in-integer-field/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/64a73de5e17d5f10c80d337a986021a8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jarrettexpertcrm</media:title>
		</media:content>

		<media:content url="http://jarrettexpertcrm.files.wordpress.com/2009/12/d4-logo.png" medium="image">
			<media:title type="html">d4 logo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
