<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://community.dynamics.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Jamie Miley -  Life and Technology </title><subtitle type="html">This blog focuses mostly on technical aspects of Microsoft Dynamics CRM.  I like to highlight SDK features and other programming tips</subtitle><id>http://community.dynamics.com/crm/b/mileyja/atom.aspx</id><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/default.aspx" /><link rel="self" type="application/atom+xml" href="http://community.dynamics.com/crm/b/mileyja/atom.aspx" /><generator uri="http://telligent.com" version="6.1.9.30500">Telligent Community 6.1.9.30500 (Build: 6.1.9.30500)</generator><updated>2012-12-26T02:05:03Z</updated><entry><title>Format of Jscript SOAP Responses in Microsoft Dynamics CRM 2011 Organization Service has Changed in UR 12!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/06/11/format-of-jscript-soap-responses-in-microsoft-dynamics-crm-2011-organization-service-has-changed-in-ur-12.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/06/11/format-of-jscript-soap-responses-in-microsoft-dynamics-crm-2011-organization-service-has-changed-in-ur-12.aspx</id><published>2013-06-11T08:24:00Z</published><updated>2013-06-11T08:24:00Z</updated><content type="html">You used to be able to pass in your response.responseXML.xml into a function like the one below to parse out a response and pull individual attributes. 
 
 function parseResponse(responseXML, attributename) {

 debugger;
 xmlDoc=new ActiveXObject(&amp;quot;Microsoft.XMLDOM&amp;quot;);
 xmlDoc.async=&amp;quot;false&amp;quot;;
 xmlDoc.loadXML(responseXML);
 x=xmlDoc.getElementsByTagName(&amp;quot;a:KeyValuePairOfstringanyType&amp;quot;);
 for (i=0;i&amp;lt;x.length;i++)
 {
 if (x[i].childNodes[0].text == attributename...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/06/11/format-of-jscript-soap-responses-in-microsoft-dynamics-crm-2011-organization-service-has-changed-in-ur-12.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=199218&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="jscript" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/jscript/default.aspx" /><category term="Microsoft CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+CRM/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="SDK" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SDK/default.aspx" /></entry><entry><title>Arrrggghhh!!  Mind Blown!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/22/arrrggghhh-mind-blown.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/05/22/arrrggghhh-mind-blown.aspx</id><published>2013-05-22T12:03:00Z</published><updated>2013-05-22T12:03:00Z</updated><content type="html">Pretty sure my mind just blew. Guess it&amp;#39;s time to restart Visual Studio. Errors get really funky when you have .xaml files open sometimes. WOW!! 
 
 
 
Name of client is blacked out. 
 
 
 
 
 
 
 
 
Hope this gets a laugh or two!...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/22/arrrggghhh-mind-blown.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=198692&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="SDK" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SDK/default.aspx" /><category term="XAML" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/XAML/default.aspx" /></entry><entry><title>Using RetrieveAttribute Request in CRM 2011 To Get the Label Value for an OptionSet </title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/17/using-retrieveattribute-request-in-crm-2011-to-get-the-label-value-for-an-optionset.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/05/17/using-retrieveattribute-request-in-crm-2011-to-get-the-label-value-for-an-optionset.aspx</id><published>2013-05-17T07:47:04Z</published><updated>2013-05-17T07:47:04Z</updated><content type="html">Here is a quick way to get a label for an OptionSet value in Microsoft Dynamics CRM 2011 using RetrieveAttributeRequest. 
 
 
private string GetCRMOptionSetLabel(IOrganizationService service, string entityname, string optionsetname, int value)
{
 
 RetrieveAttributeRequest reqOptionSet = new RetrieveAttributeRequest();
 reqOptionSet.EntityLogicalName = entityname;
 reqOptionSet.LogicalName = optionsetname;
 RetrieveAttributeResponse resp = (RetrieveAttributeResponse)service.Execute(reqOptionSet...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/17/using-retrieveattribute-request-in-crm-2011-to-get-the-label-value-for-an-optionset.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=198511&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+CRM/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="SDK" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SDK/default.aspx" /></entry><entry><title>I Will Presenting CRM and SharePoint Integration at the Denver CRMUG May 15th!!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/10/i-will-presenting-crm-and-sharepoint-integration-at-the-denver-crmug-may-15th.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/05/10/i-will-presenting-crm-and-sharepoint-integration-at-the-denver-crmug-may-15th.aspx</id><published>2013-05-10T07:28:04Z</published><updated>2013-05-10T07:28:04Z</updated><content type="html">My colleagues from RBA Consulting and I will be in Denver on May 15th at the Denver CRMUG. We will be presenting on the topic of CRM and SharePoint integration and will go well beyond what you can do out of the box. 
 
Date: May 15th 
Time: 4:00 pm - 6:00 pm 
Location: 
 
 Microsoft 
 7595 Technology Way Denver CO 80237 
Some topics we will be covering: 
 
 
 Document Management 
 Contextually appropriate templating using content types 
 Portals 
 BI Dashboards 
 
 
 
Learn more...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/10/i-will-presenting-crm-and-sharepoint-integration-at-the-denver-crmug-may-15th.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=198331&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="Community" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Community/default.aspx" /><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRMUG" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRMUG/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="SharePoint" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SharePoint/default.aspx" /></entry><entry><title>CRM MVP Developers Doing the Google Hangout Thing!!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/08/crm-mvp-developers-doing-the-google-hangout-thing.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/05/08/crm-mvp-developers-doing-the-google-hangout-thing.aspx</id><published>2013-05-08T10:52:05Z</published><updated>2013-05-08T10:52:05Z</updated><content type="html">Today I participated in a Google Hangout for the first time along with some fellow CRM MVP&amp;#39;s (Donna Edwards, Daniel Cai, and Dave Berry). The top of the conversation was development where we went through our thoughts on HTML5 vs Silverlight, JSON, JQuery, Jscript, Polaris, Orion, etc.. from a developer standpoint. 
 
You should watch the video here: 
 https://www.youtube.com/watch?feature=player_embedded&amp;amp;v=i82l7ENifBk 
 
 


 
 
 
BONUS: at 53:40, I decide to go FULL PIRATE! :...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/08/crm-mvp-developers-doing-the-google-hangout-thing.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=198247&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="Community" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Community/default.aspx" /><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Development" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Development/default.aspx" /><category term="MVP" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/MVP/default.aspx" /></entry><entry><title>The Current State of the WinRT Connection Code for CRM 2011 </title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/02/the-current-state-of-the-winrt-connection-code-for-crm-2011.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/05/02/the-current-state-of-the-winrt-connection-code-for-crm-2011.aspx</id><published>2013-05-02T07:30:00Z</published><updated>2013-05-02T07:30:00Z</updated><content type="html">So, for the last week I have been working with the CRM 2011 connection code for WinRT released here: 
 
 http://blogs.msdn.com/b/crm/archive/2012/11/02/building-clients-for-windows-phone-and-windows-8-rt.aspx 
 
Below are some general observations: 
 
 PROS: 
 
 
 It appears that they have covered their bases and things are pretty well set up Office 365 Online orgs and IFD on-premise orgs. It seems like this would be workable in those particular scenarios. 
 Easy connection methodology...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/05/02/the-current-state-of-the-winrt-connection-code-for-crm-2011.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=198039&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="Windows Live" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Windows+Live/default.aspx" /><category term="WinRT" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/WinRT/default.aspx" /></entry><entry><title>Strange Address Behavior On Account and Contact in CRM 2011</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/25/strange-address-behavior-on-account-and-contact-in-crm-2011.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/04/25/strange-address-behavior-on-account-and-contact-in-crm-2011.aspx</id><published>2013-04-25T08:17:03Z</published><updated>2013-04-25T08:17:03Z</updated><content type="html">I have noticed that if you put a customer address sub-grid on an account or contact form you can see the two out of the box addresses that are created when you create the record. 
 
Just a note about these. Do not delete them. If you do the record won&amp;#39;t work right and you will not be able to update your record until you re-create them. 
 
:) 
 
-Happy Thursday....(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/25/strange-address-behavior-on-account-and-contact-in-crm-2011.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=197807&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Customization" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Customization/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /></entry><entry><title>CRM Gamified Can Help You Boost Your User Adoption for CRM 2011!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/15/crm-gamified-can-help-you-boost-your-user-adoption-for-crm-2011.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/04/15/crm-gamified-can-help-you-boost-your-user-adoption-for-crm-2011.aspx</id><published>2013-04-15T18:23:29Z</published><updated>2013-04-15T18:23:29Z</updated><content type="html">The topic of gamification is not new, but CRM Gamified just released a great solution that allows you to apply it to Microsoft Dynamics CRM. Gamification plays on ones natural competitive instincts (like playing a game), but in a non-game context. 
 
Gamification can be useful in the CRM context as user-adoption can be lackluster when users aren&amp;#39;t incentivised properly to use the new system. By turning it into a game of sorts you can improve the drive towards full-adoption. 
 
Here is a terrible...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/15/crm-gamified-can-help-you-boost-your-user-adoption-for-crm-2011.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=197331&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Gamification" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Gamification/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /></entry><entry><title>Azure Service Bus Changes to CRM 2011 Integration Changes (ACTION REQUIRED!!)</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/03/azure-service-bus-changes-to-crm-2011-integration-changes-action-required.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/04/03/azure-service-bus-changes-to-crm-2011-integration-changes-action-required.aspx</id><published>2013-04-03T19:40:38Z</published><updated>2013-04-03T19:40:38Z</updated><content type="html">Azure Service Bus Changes to CRM 2011 Integration Changes (ACTION REQUIRED!!) 
 
Word was just released today about impending changes to some Security around the CRM 2011 to Azure Service bus integration capabilities in CRM 
 
 This means that you need to make some configuration changes on your end or your Azure Service Bus integrations WILL STOP WORKING. 
 
Follow the steps below to make sure your Azure Service Bus integration continues to work in the future. 
 
 http://support.microsoft...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/03/azure-service-bus-changes-to-crm-2011-integration-changes-action-required.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=196856&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="Azure" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Azure/default.aspx" /><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /></entry><entry><title>Microsoft Dynamics CRM 2011 Data Import Wizard Appears to be Broken in Google Chrome</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/03/microsoft-dynamics-crm-2011-data-import-wizard-appears-to-be-broken-in-google-chrome.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/04/03/microsoft-dynamics-crm-2011-data-import-wizard-appears-to-be-broken-in-google-chrome.aspx</id><published>2013-04-03T19:14:43Z</published><updated>2013-04-03T19:14:43Z</updated><content type="html">Thanks to a blog reader it has come to my attention that the data import wizard seems to be broken if used from Google Chrome. The &amp;quot;Choose File&amp;quot; button does not product a dialog. It currently isn&amp;#39;t doing anything. 
 
I have tested this in versions 25.0.1364.172 m and version 26.0.1410.43 m 
 
For now, if you want to use the Data Import wizard, use IE or FireFox. 
 
This has been reported to Microsoft. 
 
-Have a great day!...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/03/microsoft-dynamics-crm-2011-data-import-wizard-appears-to-be-broken-in-google-chrome.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=196857&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /></entry><entry><title>CRM 2013 Release Date will be Q1 of 2015</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/01/crm-2013-release-date-will-be-q1-of-2015.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/04/01/crm-2013-release-date-will-be-q1-of-2015.aspx</id><published>2013-04-01T18:02:31Z</published><updated>2013-04-01T18:02:31Z</updated><content type="html">CRM 2013 Release Date will be Q1 of 2015! 
 
More details to come.... 
 
 
 Maybe... ;)...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/04/01/crm-2013-release-date-will-be-q1-of-2015.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=196729&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author></entry><entry><title>Successful Downgrade of a Dynamics CRM 2011 Database from SQL 2012 to SQL 2008 R2</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/03/29/successful-downgrade-of-a-dynamics-crm-2011-database-from-sql-2012-to-sql-2008-r2.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/03/29/successful-downgrade-of-a-dynamics-crm-2011-database-from-sql-2012-to-sql-2008-r2.aspx</id><published>2013-03-29T15:56:04Z</published><updated>2013-03-29T15:56:04Z</updated><content type="html">DISCLAIMER: I do not take any responsibility for any damage done by using this process. I do not think it would be considered &amp;quot;supported&amp;quot; by Microsoft either. This post is for education use only. My scenario was creating an organization for UAT only. The real production org during our migration is not going to go through this process. 
 
Let me start by saying that this is not a normal scenario. Usually you are only going the other way. But we took a copy of a client org out of a SQL...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/03/29/successful-downgrade-of-a-dynamics-crm-2011-database-from-sql-2012-to-sql-2008-r2.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=196658&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+CRM/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="Upgrade" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Upgrade/default.aspx" /></entry><entry><title>Dynamics XRM Application Speed Builder Now Supports Access and Relationships</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/03/11/dynamics-xrm-application-speed-builder-now-supports-access-and-relationships.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/03/11/dynamics-xrm-application-speed-builder-now-supports-access-and-relationships.aspx</id><published>2013-03-11T15:28:20Z</published><updated>2013-03-11T15:28:20Z</updated><content type="html">Jason Lattimer and I have released the next version of the Dynamics XRM Application Speed Builder. The new version adds support for: 
 
 - Microsoft ACCESS as a datasource (previously only supported SQL Server) 
 
 - Full Relationship Support (allows you to explicitly specify relationships, but will also optionally build them based on relationships that already exist in your data source. 
 
Overview from the CodePlex Page: 
 
 The Dynamics Xrm Application Speed Builder will analyze databases...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/03/11/dynamics-xrm-application-speed-builder-now-supports-access-and-relationships.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=195708&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="Microsoft CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+CRM/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="SDK" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SDK/default.aspx" /><category term="Xrm" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Xrm/default.aspx" /><category term="XrmSpeedy" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/XrmSpeedy/default.aspx" /></entry><entry><title>Dynamics CRM 2011 SDK 5.0.14 is Out, Contains Solution Downleveling Tool</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/22/dynamics-crm-2011-sdk-5-0-14-is-out-contains-solution-downleveling-tool.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/02/22/dynamics-crm-2011-sdk-5-0-14-is-out-contains-solution-downleveling-tool.aspx</id><published>2013-02-22T16:02:54Z</published><updated>2013-02-22T16:02:54Z</updated><content type="html">Yesterday, Microsoft released the newest version of the Microsoft Dynamics CRM SDK and it contains a much needed feature called a solution down-leveling tool. 
 
This allows you to take exported Polaris release solutions and import them into UR 6+ environments. The problem is that the new entities that contain the new forms have new system entities attached to them that older systems don&amp;#39;t have. This tool will strip out those dependencies so you can import the solution successfully into older...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/22/dynamics-crm-2011-sdk-5-0-14-is-out-contains-solution-downleveling-tool.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=195084&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="Polaris" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Polaris/default.aspx" /><category term="SDK" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SDK/default.aspx" /></entry><entry><title>CRM 4 Client Side SDK Will Not Work In Orion Release</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/19/crm-4-client-side-sdk-will-not-work-in-orion-release.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/02/19/crm-4-client-side-sdk-will-not-work-in-orion-release.aspx</id><published>2013-02-19T10:29:03Z</published><updated>2013-02-19T10:29:03Z</updated><content type="html">Heads up, if you still use the 4.0 client-side SDK you won&amp;#39;t be able to in Orion. It&amp;#39;s not supported and it won&amp;#39;t work. You might want to start migrating those customizations over if you are going to be planning an upgrade to the Orion release. 
 
-Happy Tuesday!...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/19/crm-4-client-side-sdk-will-not-work-in-orion-release.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=194522&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="jscript" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/jscript/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="Orion" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Orion/default.aspx" /><category term="SDK" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SDK/default.aspx" /></entry><entry><title>If You Have Trouble Connecting up to CRM Online (O365) Using the Outlook Client</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/16/if-you-have-trouble-connecting-up-to-crm-online-o365-using-the-outlook-client.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/02/16/if-you-have-trouble-connecting-up-to-crm-online-o365-using-the-outlook-client.aspx</id><published>2013-02-16T09:59:01Z</published><updated>2013-02-16T09:59:01Z</updated><content type="html">I don&amp;#39;t know why but it seems like lately using the old &amp;quot;CRM Online&amp;quot; in the server URL doesn&amp;#39;t work anymore. I seem to have to use &amp;quot; https://disco.crm.dynamics.com &amp;quot; now. 
 
I know Chris Cognetta from Tribridge has also blogged this, I haven&amp;#39;t seen the article, but I am not the only one that this has caught off guard. 
 
-Happy Saturday!...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/16/if-you-have-trouble-connecting-up-to-crm-online-o365-using-the-outlook-client.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=194114&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM For Outlook" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+For+Outlook/default.aspx" /><category term="CRM Online" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+Online/default.aspx" /><category term="Microsoft CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+CRM/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /></entry><entry><title>Cross Browser Compatibility is Here for Microsoft Dynamics CRM 2011!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/12/cross-browser-compatibility-is-here-for-microsoft-dynamics-crm-2011.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/02/12/cross-browser-compatibility-is-here-for-microsoft-dynamics-crm-2011.aspx</id><published>2013-02-12T12:12:03Z</published><updated>2013-02-12T12:12:03Z</updated><content type="html">I know I am not the first person to drop this bit of information, but just in case any of my readers missed it you can now access CRM 2011 with other browsers besides IE now that UR-12 is here. 
 
The additional browsers are: 
- Chrome 
- Firefox 
- Safari (on OS-X) 
 
Still coming are: 
- Safari (IOS) 
 
Have a great Tuesday!...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/12/cross-browser-compatibility-is-here-for-microsoft-dynamics-crm-2011.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=193270&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /></entry><entry><title>Is Surface Pro a Virtualized Environment on the Tablet?</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/09/is-surface-pro-a-virtualized-environment-on-the-tablet.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/02/09/is-surface-pro-a-virtualized-environment-on-the-tablet.aspx</id><published>2013-02-09T20:51:05Z</published><updated>2013-02-09T20:51:05Z</updated><content type="html">On this inaugural day of the Surface Pro I got the 128 Gb version with the Type Cover (blogging on it right now). 
 
I tried to see what kind of serious chops it had and I thought I would try to install Battlefield 3 to test out the processor and graphics power vs my 3 year old machine that drives Battlefield 3 pretty well. 
 
It wouldn&amp;#39;t run after the install and gave an error saying that &amp;quot;This game will not run on a virtualized environment&amp;quot;. So there isn&amp;#39;t anything out there...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/09/is-surface-pro-a-virtualized-environment-on-the-tablet.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=192844&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="Off-Topic" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Off_2D00_Topic/default.aspx" /><category term="Surface" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Surface/default.aspx" /></entry><entry><title /><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/05/192132.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/02/05/192132.aspx</id><published>2013-02-05T21:27:00Z</published><updated>2013-02-05T21:27:00Z</updated><content type="html">Arg... I tried to install Win 8 and CRM for Outlook on an old Pentium 4 I had lying around. Got a lot of this. 
 
 
 
 
Gosh that darn spinner runs well, even on crappy computers. 
 
 
- Jamie :)...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/05/192132.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=192132&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="Off-Topic" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Off_2D00_Topic/default.aspx" /></entry><entry><title>I Will Be Presenting at the CRMUG This Thursday!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/05/i-will-be-presenting-at-the-crmug-this-thursday.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/02/05/i-will-be-presenting-at-the-crmug-this-thursday.aspx</id><published>2013-02-05T10:50:04Z</published><updated>2013-02-05T10:50:04Z</updated><content type="html">Hello Everyone, I will be demoing some more advanced Sharepoint and CRM integration concepts at the CRMUG on Thursday February 7th at the MTC (Microsoft) at Centennial Lakes in Edina. Come check it out if you are in the Twin Cities area. 
 
 Register here: 
 http://www.crmug.com/events/crmugMinnesota020713 

 
 
-Jamie...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/02/05/i-will-be-presenting-at-the-crmug-this-thursday.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=192047&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="Community" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Community/default.aspx" /><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="CRMUG" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRMUG/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="SDK" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SDK/default.aspx" /><category term="SharePoint" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/SharePoint/default.aspx" /></entry><entry><title>New Kid, Changed Jobs, WOW!!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/01/28/new-kid-changed-jobs-wow.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/01/28/new-kid-changed-jobs-wow.aspx</id><published>2013-01-29T07:21:03Z</published><updated>2013-01-29T07:21:03Z</updated><content type="html">So much going on these days. William was born earlier this month and I have also just started with a new employer. I promise to get back into the swing on things soon but so much has been changing. In the mean time you should take a look at our my new company RBA, Inc . 
 
I will also be presenting on their behalf at the CRMUG in Minneapolis in February....(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/01/28/new-kid-changed-jobs-wow.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=190569&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author></entry><entry><title>Check Out This Great Article About Being a CRM MVP From Gus Gonzalez!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/01/12/check-out-this-great-article-about-being-a-crm-mvp-from-gus-gonzalez.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/01/12/check-out-this-great-article-about-being-a-crm-mvp-from-gus-gonzalez.aspx</id><published>2013-01-12T17:05:05Z</published><updated>2013-01-12T17:05:05Z</updated><content type="html">Check out this great article about what it&amp;#39;s like being a CRM MVP from Gus Gonzalez. It features many prominant MVP&amp;#39;s in the Microsoft Dynamics CRM community. Including myself ;) 
 
Bonus: Scott Sewell evindently is an aspiring cat juggler. 
 
 
 Check it out: https://community.dynamics.com/product/crm/crmnontechnical/b/adopt2win/archive/2013/01/08/so-you-want-to-be-a-crm-superstar.aspx 
 
-...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/01/12/check-out-this-great-article-about-being-a-crm-mvp-from-gus-gonzalez.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=187132&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="Microsoft CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+CRM/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="MVP" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/MVP/default.aspx" /></entry><entry><title>Welcome William Theodore Miley!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/01/09/welcome-william-theodore-miley.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/01/09/welcome-william-theodore-miley.aspx</id><published>2013-01-09T14:28:03Z</published><updated>2013-01-09T14:28:03Z</updated><content type="html">We are pleased to welcome our third (and probably final) child into this world, William Theodore Miley. 
 
Mom and baby Will are doing great! 
 
 
 
 
 
-Jamie...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/01/09/welcome-william-theodore-miley.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=186424&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="Life" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Life/default.aspx" /><category term="Off-Topic" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Off_2D00_Topic/default.aspx" /></entry><entry><title>I Have Been Re-Awarded MVP for 2013!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2013/01/01/i-have-been-re-awarded-mvp-for-2013.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2013/01/01/i-have-been-re-awarded-mvp-for-2013.aspx</id><published>2013-01-01T11:42:02Z</published><updated>2013-01-01T11:42:02Z</updated><content type="html">I am ecstatic to say that I have been re-awarded MVP for 2013. This is a great honor and I am very glad to to have received it. I will admit that I didn&amp;#39;t think I had been renewed because I didn&amp;#39;t see my email and everyone else was shouting from the rooftops about their renewal. 
 
Turns out the darn thing was in my spam folder. 
 
:) 
 
Happy New Years!...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2013/01/01/i-have-been-re-awarded-mvp-for-2013.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=184766&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="MVP" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/MVP/default.aspx" /></entry><entry><title>XRM Speed Builder for Microsoft Dynamics CRM is Here!!</title><link rel="alternate" type="text/html" href="http://community.dynamics.com/crm/b/mileyja/archive/2012/12/26/xrm-speed-builder-for-microsoft-dynamics-crm-is-here.aspx" /><id>http://community.dynamics.com/crm/b/mileyja/archive/2012/12/26/xrm-speed-builder-for-microsoft-dynamics-crm-is-here.aspx</id><published>2012-12-26T10:05:03Z</published><updated>2012-12-26T10:05:03Z</updated><content type="html">First off, before I say anything, I would like to thank Jason Lattimer for all of the hard work he did helping develop this application. I would not have reached my goal of having it out this year without him. 
 
If you haven&amp;#39;t been following, this new tool is designed to take existing applications and speed up the process of moving them into Microsoft Dynamics CRM as XRM applications. 
 
 Check it out and Download it here: http://xrmspeedy.codeplex.com/ 
 
 What It Currently Does: 
 ...(&lt;a href="http://community.dynamics.com/crm/b/mileyja/archive/2012/12/26/xrm-speed-builder-for-microsoft-dynamics-crm-is-here.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://community.dynamics.com/aggbug.aspx?PostID=184208&amp;AppID=561&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</content><author><name>Jamie Miley</name><uri>http://community.dynamics.com/members/Jamie-Miley/default.aspx</uri></author><category term="CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM/default.aspx" /><category term="CRM 2011" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/CRM+2011/default.aspx" /><category term="Microsoft Dynamics CRM" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Microsoft+Dynamics+CRM/default.aspx" /><category term="Xrm" scheme="http://community.dynamics.com/crm/b/mileyja/archive/tags/Xrm/default.aspx" /></entry></feed>