<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>PowerObjects Microsoft CRM Blog</title>
	<link>http://blog.powerobjects.com</link>
	<description>PowerObjects - Microsoft CRM Simply</description>
	<pubDate>Fri, 27 Jun 2008 12:25:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Filtered Views in CRM Reporting</title>
		<link>http://blog.powerobjects.com/2008/06/27/53/</link>
		<comments>http://blog.powerobjects.com/2008/06/27/53/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 12:22:01 +0000</pubDate>
		<dc:creator>Mev</dc:creator>
		
		<category><![CDATA[Dynamic CRM 3.0]]></category>

		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/06/27/53/</guid>
		<description><![CDATA[While working with CRM Reports, we faced a scenario where data was not getting retrieved from FilteredViews in our IDE. Interestingly same queries were returning data from CRM tables but nothing from FilteredViews.
E.g. &#8220;Select * from SalesOrderDetail&#8221; table retrieved rows
&#8220;Select * from FilteredSalesOrderDetail&#8221; retrieved no rows
We made several checks including:

Report connection/data sources
User rights in CRM
Using the right DB [...]]]></description>
			<content:encoded><![CDATA[<p>While working with CRM Reports, we faced a scenario where data was not getting retrieved from FilteredViews in our IDE. Interestingly same queries were returning data from CRM tables but nothing from FilteredViews.</p>
<p>E.g. &#8220;Select * from SalesOrderDetail&#8221; table retrieved rows<br />
&#8220;Select * from FilteredSalesOrderDetail&#8221; retrieved no rows</p>
<p>We made several checks including:</p>
<ul>
<li>Report connection/data sources</li>
<li>User rights in CRM</li>
<li>Using the right DB and Organization</li>
</ul>
<p>These checks yielded no luck. Eventually we found the actual cause.</p>
<p><strong>Filtered views will never return records from a connection string using SQL authentication</strong></p>
<p><a href="http://blog.powerobjects.com/wp-content/uploads/2008/06/untitled.bmp" title="Authentication" ><img src="http://blog.powerobjects.com/wp-content/uploads/2008/06/untitled.bmp" alt="Authentication" /></a></p>
<p>Use Windows authentication in connection string properties for all CRM reports.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/06/27/53/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Programmatically attaching file to Note - CRM 4.0</title>
		<link>http://blog.powerobjects.com/2008/06/26/programmatically-attaching-file-to-note-crm-40/</link>
		<comments>http://blog.powerobjects.com/2008/06/26/programmatically-attaching-file-to-note-crm-40/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 08:36:54 +0000</pubDate>
		<dc:creator>pkadmin</dc:creator>
		
		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/06/26/programmatically-attaching-file-to-note-crm-40/</guid>
		<description><![CDATA[In Dynamics CRM 4.0, file attachment to entities is pretty simple as compared to CRM 3.0. UploadFromBase64DataAnnotationRequest and UploadFromBase64DataAnnotationResponse object are both deprecated. Instead a new attribute has been introduces in annotation object with documentbody that accepts string in base64 encoding. Please find the below sample:
Reading file data into Byte array and then converting it [...]]]></description>
			<content:encoded><![CDATA[<p>In Dynamics CRM 4.0, file attachment to entities is pretty simple as compared to CRM 3.0. UploadFromBase64DataAnnotationRequest and UploadFromBase64DataAnnotationResponse object are both deprecated. Instead a new attribute has been introduces in annotation object with documentbody that accepts string in base64 encoding. Please find the below sample:</p>
<p>Reading file data into Byte array and then converting it to base64. Since I am using in memory object of StringBuilder class so I have just used str.ToString() to return string.</p>
<p><strong><em>Byte[] data;<br />
ASCIIEncoding encode = new ASCIIEncoding();<br />
data = encode.GetBytes(str.ToString());<br />
string b64 = Convert.ToBase64String(data);</em></strong></p>
<p>Next, simply create the annotation entity and set the attributes as below:</p>
<p><strong><em>annotation note = new annotation();</em></strong> </p>
<p><strong><em>note.subject = “Test Export”;<br />
note.filename = “exported.txt”;<br />
note.mimetype = “text/html”;<br />
note.documentbody = b64;</em></strong><strong><em>note.objectid = new Lookup();<br />
note.objectid.type = “new_export”;<br />
note.objectid.Value = entityid;<br />
note.objecttypecode = new EntityNameReference();<br />
note.objecttypecode.Value = “new_export”;<br />
                     �<br />
Guid annotationId = service.Create(note);</p>
<p></em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/06/26/programmatically-attaching-file-to-note-crm-40/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dr. Strangelove Or: How I Learned To Stop Worrying and Love The AutoUpdate Tool</title>
		<link>http://blog.powerobjects.com/2008/06/19/dr-strangelove-or-how-i-learned-to-stop-worrying-and-love-the-autoupdate-tool/</link>
		<comments>http://blog.powerobjects.com/2008/06/19/dr-strangelove-or-how-i-learned-to-stop-worrying-and-love-the-autoupdate-tool/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 03:50:56 +0000</pubDate>
		<dc:creator>dougg</dc:creator>
		
		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/06/19/dr-strangelove-or-how-i-learned-to-stop-worrying-and-love-the-autoupdate-tool/</guid>
		<description><![CDATA[Greetings,
Eric Newell from the Microsoft CRM Development Team recently posted a blog article outlining the procedures for setting up and configuring the AutoUpdate feature for Microsoft Dynamics 4.0 for Office Outlook. While Mike did a fine job with his post, it left a lot to be desired in terms of overall clarity and cohesion. Recently, I [...]]]></description>
			<content:encoded><![CDATA[<p>Greetings,</p>
<p>Eric Newell from the Microsoft CRM Development Team recently posted a blog article <a href="http://blogs.msdn.com/crm/archive/2008/05/08/crm-client-autoupdate.aspx" title="AutoUpdate" onclick="javascript:pageTracker._trackPageview('/outbound/article/blogs.msdn.com');">outlining the procedures for setting up and configuring the AutoUpdate feature </a>for Microsoft Dynamics 4.0 for Office Outlook. While Mike did a fine job with his post, it left a lot to be desired in terms of overall clarity and cohesion. Recently, I was assigned the task of setting up the AutoUpdate feature for one of our implementations and as I stared at the instructions written by Mr. Newell, eyes glazed over in confusion with a pounding headache from trying to pull my hair out for the fifth time in 1 hour, I had a revelation: Boy, wouldn&#8217;t it be nice if someone was able to present these instructions in a semi-nonsensical manner? So world, this is my gift to you: AutoUpdate Installation and Configuration steps that your mum could understand!</p>
<p>How many times have you started a troublshooting call with a client with: &#8220;Do you have all the latest updates installed?&#8221; This is the go-to questions for troubleshooters the world over. Wouldn&#8217;t it be great to have a mechanism in place, ensuring that each user updates his or her client with the latest patches and hotfixes? That is the intent of the AutoUpdate tool. So how does it work? Read on&#8230;</p>
<p> When you install the CRM Outlook Client, one of the new features is a program simple called &#8220;Update.&#8221; Perhaps you have seen this icon in your Outlook Client folder and wondered what is was. Maybe you were really adventurous and double-clicked it to see what it did. Update is the client-side piece of the AutoUpdate process and honestly, is mostly worthless unless your CRM Admin (whom you should bring gift-wrapped sweets and/or cash bribes to every day) sets everything up properly. However, when everything IS in place, AutoUpdate will prompt the user to install available patches as they sign into the Outlook Client. During, sign on a window will pop up for the user and are given a &#8220;choice&#8221;: Install the patches or disable their access to CRM. The update tool can be launched manually from the client (and remember, without proper server side set up, it does NOTHING), ran as a scheduled task or (as we are discussing) prompted for the user on each time they log into the system. (Don&#8217;t worry&#8230;as soon as the update is installed, you no longer see the scary &#8220;install or die!!!&#8221; screen)</p>
<p> 1. You will need to create a folder to hold these downloaded patches. Eric Newell recommends going to [ServerInstalDirectory]\Server\CRMWeb and then creating a folder in that location called CRMPatches. My organization frequently takes advantage of the multi-tenancy design of CRM 4.0 so we really don&#8217;t have 1 org on 1 server. I looked around for awhile to determine where this location was in our implementation. We do not have a directory structure like this (and you probably don&#8217;t either) so you will need to create this folder where the root IIS folder is. In our case, I made this folder at C:\inetpub\wwwroot\. If you are unsure of where to create this file, open IIS Manager on your CRM server (start&gt;Programs&gt;Administrative Tools), select &#8220;Websites&#8221; from the Left Nav Column, and then right-click on &#8220;Microsoft Dynamics CRM&#8221; when it appears in the &#8220;tree&#8221; and select properties. By selecting the Home Directory Tab in the Properties Form you can determine what the root folder is.</p>
<p>NOTE: It is *not* required to place this folder in the CRM Server.  My organization created a &#8220;dummy&#8221; website we called &#8220;patches&#8221; that would simply point to the CRMPatches location. The creation of this dummy site allows us to store all patches in one location which is convenient when we must deploy patches to multiple organizations. Rather than needing to upload different patches to each each organizations server, we simply point their Update tools to our dummy site to download the new patches. This site eliminates the need for keeping track of what patches have been uploaded where&#8230;</p>
<p><img src="http://i59.photobucket.com/albums/g295/grdo0301/iis-really-small.jpg" /><br />
2. Next, you will need to change a few things on each <strong><em>client. </em></strong>In the client&#8217;s registry we will need to add a value to ensure the AutoUpdater points to the patches in our CRMPatches Folder, as opposed to a website (which is the default). If you are unsure how to access the Registry Editor tool you can either open a command prompt and type &#8220;regedit&#8221; or navigate to C:\Windows\ and located the &#8220;Regedit&#8221; application file. Once we are in the editor we need to add a string value to HKEY_LOCAL_MACHINE\Software\Microsoft\MSCRMClient. To create a new value simply right click anywhere to the right of the &#8220;tree&#8221; in the RegEdit window.<br />
<img src="http://i59.photobucket.com/albums/g295/grdo0301/registry.jpg" /></p>
<p>We will want to call this new string value &#8220;AutoUpdateDownloadUrl&#8221; and we will give it the value of our CRMPatches folder (or dummy site) from step 1&#8230;DO NOT FORGET THE CLOSING SLASH!!! /<br />
<img src="http://i59.photobucket.com/albums/g295/grdo0301/Registry2.jpg" /></p>
<p>3. Now that we have the folder created and the registry changes completed, now we must download the patches and extract the contents to our CRMPatches folder from step 1.</p>
<p>4. Now that we have the patches in our CRMPatches folder, we must do a little work to determine the PatchId value of each patch. We need this PatchId for the next step when we create our config.xml file. You may be thinking to yourself, &#8220;Hey, how do I unzip a .exe file? Is that even possible?&#8221; I didn&#8217;t think it was possible either, but with some help from our friend Command Prompt, we can unzip this file and figure out what it&#8217;s PatchId is&#8230;</p>
<p>a. On your CRM Server, open a command prompt and type [DownloadLocation]/CRMv4.0-KB[KB # here]-i386-Client-INTL.exe /x</p>
<p>b. The system will prompt you to create a location for the unzipped files. Choose one to your liking, as it does not matter too much where this location is.</p>
<p>c. Once extraction is complete, navigate to the folder where you unzipped the contents and look for a file called &#8220;config.xml.&#8221;</p>
<p>d. Open the config.xml file and look for a node called &lt;PatchId&gt;. Write this number down. We will need it in Step 5 when we create a NEW config.xml file for the patch.</p>
<p>e. You should delete the unzipped contents of the file from your system at this point. The CRM AutoUpdate tool will not know how to work with unzipped contents; it only recognizes the CRMv4.0-KB1234-i386-Client-INTL.exe file. If you need to, redownload the .exe file to your CRMPatches folder. After this step we should once again only have a .exe file in our CRMPatches folder&#8230;Nothing Else.</p>
<p>5. Now for the fun part: XML File Creation! There are a whole host of options when it comes to creation of this XML file. There are some pretty powerful abilities at your disposal here so I recommend checking out the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1ceb5e01-de9f-48c0-8ce2-51633ebf4714&amp;displaylang=en" title="CRM 4.0 Implementation Guide" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.microsoft.com');">CRM 4.0 Implementation Guide </a>which explain these abilties in much more detail. For our purposes we are going to create a plain Jane config file. No bells and whistles. What you see below is a fully functional file that was made for the KB949086 fix. You can use this XML file as a template for each subsequent patch you intend to deploy&#8230;As a general rule, each patch should have it&#8217;s own config file (although it is possible to include multiple patches per file, this is a more &#8220;advanced&#8221; technique and goes beyond the scope of this blog) </p>
<blockquote><p><font face="Courier New">&lt;ClientPatches&gt;</font></p>
<p><font face="Courier New">&lt;Create&gt;</font></p>
<p><font face="Courier New">    &lt;ClientPatchInfo&gt;</font></p></blockquote>
<blockquote><p><font face="Courier New">        </font><font face="Courier New">&lt;PatchId&gt;{85F5616A-F266-4E0B-BB4C-39B5B3AECE5C}&lt;/PatchId&gt;</font></p>
<p><font face="Courier New">        </font><font face="Courier New">&lt;Title&gt;Duplicates in Outlook with Shared Calendars, Tasks or Contacts&lt;/Title&gt;</font></p>
<p><font face="Courier New">        </font><font face="Courier New">&lt;Description&gt;Sharing calendar, contacts or tasks can allow editors to clear all custom crm information resulting in duplicates when synching&lt;/Description&gt;</font></p>
<p><font face="Courier New">        </font><font face="Courier New">&lt;IsMandatory&gt;true&lt;/IsMandatory&gt;</font></p>
<p><font face="Courier New">        &lt;IsEnabled&gt;true&lt;/IsEnabled&gt;</font></p>
<p><font face="Courier New">        </font><font face="Courier New">&lt;ClientType&gt;OutlookDesktop,OutlookLaptop&lt;/ClientType&gt;</font></p>
<p><font face="Courier New">        </font><font face="Courier New">&lt;LinkId&gt;CRMv4.0-KB949086-i386-Client-INTL.exe&lt;/LinkId&gt;</font></p></blockquote>
<blockquote><p><font face="Courier New">    </font><font face="Courier New">&lt;/ClientPatchInfo&gt;</font></p>
<p><font face="Courier New">&lt;/Create&gt;</font></p>
<p><font face="Courier New">&lt;/ClientPatches&gt;</font></p>
<p><font face="Courier New">You may call the XML file whatever you desire&#8230;Just be sure to save it in the CRMPatches directory!</font></p></blockquote>
<p>6. We are getting close to completion now! There should only be one more step to complete now that we have our config file created. We must locate the directory where clientpatchconfigurator.exe is located (Best accomplished by using &#8220;search&#8221; if you do not know the location off the top of your head). Once you have this located the directory, open the Command Prompt and change the directory to that location. The shot below indicates the default location for this file as well as the &#8220;cd&#8221; command to Change Directory in command prompt.</p>
<p><img src="http://i59.photobucket.com/albums/g295/grdo0301/cmd.jpg" /></p>
<p>Now that the directory has been changed in the prompt, we are finally ready to run! Type microsoft.crm.tools.clientpatchconfigurator.exe [configFile].xml (The config file you are referencing will the the file that we created in Step 5). For my implemenation this command was as follows:</p>
<p><strong>microsoft.crm.tools.clientpatchconfigurator.exe c:\inetpub\wwwroot\crmpatches\config.xml<br />
</strong></p>
<p>If all went according to plan you should see&#8230;nothing. The process should run and you will not receive any type of message of successful completion.</p>
<p>7. Once the patch has been uploaded to the server, navigate back to your client and launch Outlook. If all is well in the world, you will see this screen:</p>
<p><img src="http://blogs.msdn.com/blogfiles/crm/WindowsLiveWriter/CRMClientAutoUpdate_8569/clip_image002_2.jpg" /></p>
<p>Just click the Update Now button and you are now completed! Now, each time a user starts their Outlook Client they will be prompted with the above screen before being allowed to log on. The hotfix installs will show in the Installed Updates area within Programs and Features in the Windows Vista Control Panel or in Add/Remove Programs on Windows XP. That should be it!</p>
<p>A FEW CLOSING THOUGHTS:</p>
<p>1. The AutoUpdate Tool, while needing a little work to get set up, can greatly improve your operating environment by ensuring that all users are running the same client version. Support calls and e-mails shouldn&#8217;t have to be answered with the generic &#8220;Do you have all the updates installed?&#8221; question. For new patches that become available, follow the same process from Step 3 to the end. Each new patch will need their own config XML file which then needs to be ran through the clientpatchconfigurator tool. After this tool is run, the patches will be available for download to your users.</p>
<p>2. I initially had some hesitations about this tool, mostly due to the fact that it appeared as thought it would require the system admin to go in and manually change EACH AND EVERY user&#8217;s registry. After doing some more research I came across a tool know as Group Policy which can be used to set global registry values. Rather than going through the horror of tracking down all of your users, Group Policy can be used to make sure that each user has the appropriate registry values. While the Group Policy Management Console may not have this ability by default (to my knowledge) there is a free extension available <a href="http://technet2.microsoft.com/windowsserver/en/technologies/featured/gp/desktopstandard.mspx" onclick="javascript:pageTracker._trackPageview('/outbound/article/technet2.microsoft.com');">here</a> that can make the organization wide registry changes we desire.</p>
<p> Hope this article has expanded and clarified a lot of <a href="http://blogs.msdn.com/crm/archive/2008/05/08/crm-client-autoupdate.aspx" onclick="javascript:pageTracker._trackPageview('/outbound/article/blogs.msdn.com');">Eric Newell&#8217;s original blog entry</a>. While this may seem like a lot of leg work to get going, once properly configured and running, the AutoUpdate tool is an unbeatable addition to CRM 4.0. It has made a believer out of me!</p>
<p><img src="http://grumpasaurus.com/gallery/albums/userpics/10001/normal_dr_strangelove.01.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/06/19/dr-strangelove-or-how-i-learned-to-stop-worrying-and-love-the-autoupdate-tool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dynamics CRM in Firefox? You Betcha!</title>
		<link>http://blog.powerobjects.com/2008/06/02/dynamics-crm-in-firefox-you-betcha/</link>
		<comments>http://blog.powerobjects.com/2008/06/02/dynamics-crm-in-firefox-you-betcha/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 16:43:55 +0000</pubDate>
		<dc:creator>dougg</dc:creator>
		
		<category><![CDATA[Dynamic CRM 3.0]]></category>

		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/06/02/dynamics-crm-in-firefox-you-betcha/</guid>
		<description><![CDATA[Have you ever tried to use the Microsoft Dynamics CRM 4.0 web client in Firefox and received a scary screen that looked something like this?

After witnessing such a horrific screen did you immediately resign yourself to the fact that you would be forced into using IE? Did you shed a tear when you had to [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever tried to use the Microsoft Dynamics CRM 4.0 web client in Firefox and received a scary screen that looked something like this?</p>
<p><img src="http://i59.photobucket.com/albums/g295/grdo0301/Ugly.jpg" alt="null" /></p>
<p>After witnessing such a horrific screen did you immediately resign yourself to the fact that you would be <em>forced</em> into using IE? Did you shed a tear when you had to put away your trusted Firefox friend? While that may have previously been the case, the fine folks over at <a href="http://www.mozdev.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.mozdev.org');">Mozdev</a> have developed  handy plug in extension for Firefox that makes use of the IE rendering engine, making it possible to run Dynamics CRM in the Firefox browser. Madness you say? Believe it!</p>
<p> So, intrepid navigator of the blogosphere, how can <em>you</em> experience Dynamics CRM on your Firefox browser? <strong>First you will need to install the <a href="http://ietab.mozdev.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/ietab.mozdev.org');">IE Tab </a>extension</strong>. Mozdev is a trusted, open source developer/hoster of Mozilla extensions and plug-ins so do not fear you are installing unknown and potentially malicious software. The download will contain an XPI file. To install the extension, simply drag the file into your Firefox browser window.</p>
<p>After downloading and installing the IE Tab extension, open your Firefox browser and point it towards your CRM site du-jour. You will see that nasty, &#8220;broken&#8221; screen again, but fear not! You are only a right-click away from salvation! Simply select the <em>View Page in IE Tab</em> option. Alternatively, you can click the small Firefox icon in the lower-right side of the page.</p>
<p><img src="http://i59.photobucket.com/albums/g295/grdo0301/Menu.jpg" alt="null" /></p>
<p>After selecting that option, the <a href="http://ietab.mozdev.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/ietab.mozdev.org');">IE Tab </a>extension will go to work, displaying the page in question through the IE Rendering Engine. Do not adjust your monitors. The image below truly is Dynamics CRM 4.0 running in Firefox!</p>
<p><img src="http://i59.photobucket.com/albums/g295/grdo0301/good.jpg" /></p>
<p>The IE Tab Extension also allows you to set a list of websites that will automatically display using the IE rendering engine. This eliminates the need to right click and select &#8220;View Page In IE Tab&#8221; each time you visit a website. You can add your CRM web address to this list of websites along with Windows Updates Sites and other sites that are not Firefox Friendly. To access this saved list of websites, right click the Firefox button in the lower-right hand corner of the browser window and add away using the supplied menu!</p>
<p><img src="http://i59.photobucket.com/albums/g295/grdo0301/AddMenu.jpg" /></p>
<p>The IE Tab really is a wonderful extension that will allow you to experience the amazing abilities of Microsoft Dyanmics CRM 4.0 in the browser of your choice. This extension, as you may have guessed, is not only a CRM tool. The IE Tab extension can be used to display any webpages that natively run on the IE Rendering Engine. Imagine performing Windows Updates through your Firefox Browser! What once was considered impossible is now reality thanks to this handy extension!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/06/02/dynamics-crm-in-firefox-you-betcha/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Entity Navigator</title>
		<link>http://blog.powerobjects.com/2008/05/30/entity-navigator/</link>
		<comments>http://blog.powerobjects.com/2008/05/30/entity-navigator/#comments</comments>
		<pubDate>Fri, 30 May 2008 13:13:24 +0000</pubDate>
		<dc:creator>CRMTeamPk</dc:creator>
		
		<category><![CDATA[Dynamic CRM 3.0]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/05/30/entity-navigator/</guid>
		<description><![CDATA[If you are working on different entities at the same time and you need to quickly navigate to schema details for each entity you can use the following link to see the list which contains all entities in your metadata which have an object type code.
https://&#60;your_host_name&#62;/sdk/list.aspx
for example
https://powerobjectscrm.com/sdk/list.aspx
Also, if you need to see the schema detail [...]]]></description>
			<content:encoded><![CDATA[<p>If you are working on different entities at the same time and you need to quickly navigate to schema details for each entity you can use the following link to see the list which contains all entities in your metadata which have an object type code.</p>
<p>https://&lt;your_host_name&gt;/sdk/list.aspx</p>
<p>for example</p>
<p>https://powerobjectscrm.com/sdk/list.aspx</p>
<p>Also, if you need to see the schema detail you can use the following link.</p>
<p>https://&lt;your_host_name&gt;/sdk/mdbrowser/entity.aspx?entity=&lt;entity_name&gt;</p>
<p>for example:</p>
<p>https://powerobjectscrm.com/sdk/mdbrowser/entity.aspx?entity=new_policydetail<br />
<font color="#0000ff">By Muhammad Usman Arshad</font></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/05/30/entity-navigator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Plug-in Storage</title>
		<link>http://blog.powerobjects.com/2008/05/12/plug-in-storage/</link>
		<comments>http://blog.powerobjects.com/2008/05/12/plug-in-storage/#comments</comments>
		<pubDate>Mon, 12 May 2008 14:00:38 +0000</pubDate>
		<dc:creator>CRMTeamPk</dc:creator>
		
		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/05/12/plug-in-storage/</guid>
		<description><![CDATA[Plug-ins can be deployed to the Microsoft Dynamics CRM server&#8217;s database or the file system that is known as &#8220;on-disk&#8221;. We strongly recommend that you deploy your plug-ins in the Microsoft Dynamics CRM database, instead of on-disk, as the primary way to deploy plug-ins for Microsoft Dynamics CRM. Plug-ins stored in the database are automatically [...]]]></description>
			<content:encoded><![CDATA[<p>Plug-ins can be deployed to the Microsoft Dynamics CRM server&#8217;s database or the file system that is known as &#8220;on-disk&#8221;. We strongly recommend that you deploy your plug-ins in the Microsoft Dynamics CRM database, instead of on-disk, as the primary way to deploy plug-ins for Microsoft Dynamics CRM. Plug-ins stored in the database are automatically distributed across multiple Microsoft Dynamics CRM servers in a datacenter cluster. On-disk deployment of plug-ins is supported for backward compatibility with Microsoft Dynamics CRM 3.0 callouts and also to support debugging of plug-ins by using Visual Studio 2005.</p>
<p><font color="#3366ff">By Asim Sajjad &amp; Bilal Ilyas</font></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/05/12/plug-in-storage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Auto Numbers in MSCRM</title>
		<link>http://blog.powerobjects.com/2008/05/01/auto-numbers-in-mscrm/</link>
		<comments>http://blog.powerobjects.com/2008/05/01/auto-numbers-in-mscrm/#comments</comments>
		<pubDate>Fri, 02 May 2008 04:10:53 +0000</pubDate>
		<dc:creator>pkadmin</dc:creator>
		
		<category><![CDATA[Dynamic CRM 3.0]]></category>

		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<category><![CDATA[Dynamic CRM 4.0 - Installation / Errors]]></category>

		<category><![CDATA[Dynamic Online CRM]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/05/01/auto-numbers-in-mscrm/</guid>
		<description><![CDATA[Last week I have been looking for the best approach to use auto numbers in Microsoft Dynamics CRM. After discussion with my peers I have come to the following possible options that can be used for auto numbering. Although these may not be the efficient techniques to get auto number work in CRM but they [...]]]></description>
			<content:encoded><![CDATA[<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">Last week I have been looking for the best approach to use auto numbers in Microsoft Dynamics CRM. After discussion with my peers I have come to the following possible options that can be used for auto numbering. Although these may not be the efficient techniques to get auto number work in CRM but they are all workable solutions.</font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><strong><span><span style="font-size: small"><font size="2">Option 1:</font></span></span></strong></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">Very simple, supported and mostly acceptable way of auto numbering is to read the attribute Max value and then add 1 to get next auto number. For example you have a custom entity named Project and you want to auto number Project_Ref_Number attribute. <span> </span>But do not retrieve all records. Just retrieve the record with maximum number value by using following two properties of PageInfo Class in SDK and set descending order.</font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><em><font size="2">PageInfo.Count = 1;<br />
PageInfo.PageNumber = 1;</font></em></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">One more consideration should be taken in account to register your auto number plugin to at PreCreate rather at PostCreate.</font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">Issues:</font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">In multi-user environment, this approach can come up with duplicate numbers in Project_Ref_Number when more than one user is creating project records. </font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><strong><span><span style="font-size: small"><font size="2">Option 2:</font></span></span></strong></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">This technique requires a bit more work but still supported way of doing things and all the time you will be getting 100% unique number. </font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">You need to create a new table for project entity in a different database and not in CRM default database. </font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><em><font size="2">create table dbo.ProjectNumbers<br />
(<br />
<span> </span>Project_Ref_Number int identity(1,1) primary key clustered,<br />
<span> </span>Projectid uniqueidentifier not null<br />
)<br />
go</font></em></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">Create a stored procedure for inserting a record into new database. This will increase the performance of your insert query.</font></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">create procedure dbo.proc_new_ProjectNumber</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">@ProjectId uniqueidentifier,</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">@Project_Ref_Number int output</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">as</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">insert into dbo.ProjectNumber</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">(</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2"><span> </span>ProjectId</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">)</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">values</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">(</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2"><span> </span>@ProjectId</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">)</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">select @Project_Ref_Number = scope_identity()</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">go</font></em></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">In your Plugin/Callout:</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpFirst"><span><span><span style="font-size: small"><font size="2">1.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Access you database using ADO.NET</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpMiddle"><span><span><span style="font-size: small"><font size="2">2.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Execute stored procedure and get next number from returned results</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpMiddle"><span><span><span style="font-size: small"><font size="2">3.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Set the value of the returned number to target entity attribute approperiatly.</font></span></span></p>
<p style="margin: 0px 0px 10pt 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpLast"><span><span><span style="font-size: small"><font size="2">4.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">All Done</font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">Issues:</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpFirst"><span><span><span style="font-size: small"><font size="2">1.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">You have to setup database.</font></span></span></p>
<p style="margin: 0px 0px 10pt 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpLast"><span><span><span style="font-size: small"><font size="2">2.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">You have to read and insert into external database.</font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><strong><span><span style="font-size: small"><font size="2">Option 3:</font></span></span></strong></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">This option used a lock mechanism on a text file placed somewhere at your webserver. You can create one file to store next number for all entities or you can create one file for each entity. In your Plugin/Callout:</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpFirst"><span><span><span style="font-size: small"><font size="2">1.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Put a lock on file.</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpMiddle"><span><span><span style="font-size: small"><font size="2">2.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Read the file and read the number there.</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpMiddle"><span><span><span style="font-size: small"><font size="2">3.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Update the number by adding 1.</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpMiddle"><span><span><span style="font-size: small"><font size="2">4.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Release the lock.</font></span></span></p>
<p style="margin: 0px 0px 10pt 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpLast"><span><span><span style="font-size: small"><font size="2">5.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Use this number and set your target entity attribute appropriately.</font></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">string ProjectAutoNumber = “FilePath”</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">lock(this) </font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">{</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><span><em><font size="2">                                        </font></em></span></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">TextReader textReader = File.OpenText(ProjectAutoNumber);</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">AutoNumber = textReader.ReadLine();</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">textReader.Close();</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">AutoNumber = (long.Parse(AutoNumber) + 1).ToString(); </font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">TextWriter textWriter = File.CreateText(ProjectAutoNumber);</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">textWriter.WriteLine(AutoNumber);</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">textWriter.Close();</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"><em><font size="2">}</font></em></span></span></p>
<p style="margin: 0px" class="MsoNoSpacing"><span><span style="font-size: small"></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">Issues:</font></span></span></p>
<p style="margin: 0px 0px 0px 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpFirst"><span><span><span style="font-size: small"><font size="2">1.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">Resource locking</font></span></span></p>
<p style="margin: 0px 0px 10pt 0.5in; text-indent: -0.25in" class="MsoListParagraphCxSpLast"><span><span><span style="font-size: small"><font size="2">2.</font></span><span>   </span></span></span><span><span style="font-size: small"><font size="2">File system Read/write cost</font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">Although all these options work well but I am still looking for some more robust solution. Ideally I am looking for something like GUID. GUID’s are instantly available and 100% unique. </font></span></span></p>
<p style="margin: 0px 0px 10pt" class="MsoNormal"><span><span style="font-size: small"><font size="2">For your suggestions and improvements, please comment.</font></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/05/01/auto-numbers-in-mscrm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yahoo Address Verification</title>
		<link>http://blog.powerobjects.com/2008/04/30/yahoo-address-verification/</link>
		<comments>http://blog.powerobjects.com/2008/04/30/yahoo-address-verification/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 18:00:56 +0000</pubDate>
		<dc:creator>Mev</dc:creator>
		
		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/04/30/yahoo-address-verification/</guid>
		<description><![CDATA[Yahoo Address Verification
Problem 1: When calling Yahoo Address Verification Webservice directly in CRM forms, we get the &#8216;mixed content&#8217; message.
Resolution: We create our own webservice and call the Yahoo Address Verification Webservice within it. Call our webservice in CRM forms.
Problem 2: The custom webservice works as expected when called directly but doesnt return result when called within CRM forms.
Resolution: [...]]]></description>
			<content:encoded><![CDATA[<p>Yahoo Address Verification</p>
<p>Problem 1: When calling Yahoo Address Verification Webservice directly in CRM forms, we get the &#8216;mixed content&#8217; message.</p>
<p>Resolution: We create our own webservice and call the Yahoo Address Verification Webservice within it. Call our webservice in CRM forms.</p>
<p>Problem 2: The custom webservice works as expected when called directly but doesnt return result when called within CRM forms.</p>
<p>Resolution: Make sure the WS has sufficient Execute Permissions by checking Application Settings in IIS.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/04/30/yahoo-address-verification/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An error occurred loading Microsoft Dynamics CRM functionality</title>
		<link>http://blog.powerobjects.com/2008/04/14/an-error-occurred-loading-microsoft-dynamics-crm-functionality/</link>
		<comments>http://blog.powerobjects.com/2008/04/14/an-error-occurred-loading-microsoft-dynamics-crm-functionality/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 17:21:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<category><![CDATA[Dynamic CRM 4.0 - Installation / Errors]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/04/14/an-error-occurred-loading-microsoft-dynamics-crm-functionality/</guid>
		<description><![CDATA[Well this may or may not help someone out there - but I thought I would put up a post to save you some time if you are in the same situation!  Here is where I was at:
- Used Microsoft Dynamics CRM 3.0 w/outlook client
- I am running Vista with Office 2007
- We upgraded to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.powerobjects.com/wp-content/uploads/2008/05/jimsheehan.gif" alt="jim’s head" />Well this may or may not help someone out there - but I thought I would put up a post to save you some time if you are in the same situation!  Here is where I was at:</p>
<p>- Used Microsoft Dynamics CRM 3.0 w/outlook client<br />
- I am running Vista with Office 2007<br />
- We upgraded to 4.0<br />
- Could not get the 4.0 Outlook Client to work!</p>
<p>I think the big issue is that there is not a great way to clean your system of the 3.0 Outlook client.  I found numerous posts on what to do&#8230;but I still had no luck.  At one point I even completely uninstalled Office (at-least I thought I had) .  The screen shot below shows the sign of the remnant 3.0 client - I was never able to get ride of the greyed out CRM menu item.</p>
<p> <img src="http://blog.powerobjects.com/wp-content/uploads/2008/04/e21.jpg" alt="Grey Button" /></p>
<p> Then when I would go to configure the new 4.0 client after installing - all went well till right at the end then poof - the error below showed up.</p>
<p style="text-align: left"><img align="left" src="http://blog.powerobjects.com/wp-content/uploads/2008/04/error.jpg" alt="error" /></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">I did everything I could to solve - then had about 3 different CRM specialists look at and try to solve to no avail!  I finally called in a support case and without too much pain got the issue solved.</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">Below is the relevant info</p>
<p><o:p><font face="Consolas"> </font></o:p></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>Scope:</em></font></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>**********************</em></font></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>After uninstalling CRM 3.0 and then installing the 4.0 client you are unable to access CRM in Outlook and you have a duplicate toolbar loading.</em></font></p>
<p><o:p><font face="Consolas"><em> </em></font></o:p></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>&#8220;An error occurred loading Microsoft Dynamics CRM functionality&#8221;</em></font></p>
<p><o:p><font face="Consolas"><em> </em></font></o:p></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>Environment:</em></font></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>**********************</em></font></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>Vista</em></font></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>CRM 4.0</em></font></p>
<p><o:p><font face="Consolas"><em> </em></font></o:p></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>Assessment:</em></font></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>**********************</em></font></p>
<p style="margin: 0in 0in 0pt" class="MsoPlainText"><font face="Consolas"><em>First to help remove the Duplicate toolbar that we are encountering I would like you to go through the below steps.<span>  </span>I know you mentioned that you had your CRM engineers completely uninstalled CRM 3.0 so before going through a clean Uninstall I would like you to navigate to &#8220;C:\document and settings\user\application data\Microsoft\Outlook&#8221;<span>  </span>When running under vista it should be located C:\Users\&#8221;Username&#8221;\AppData\Roaming\Microsoft\Outlook.<span>  </span>When you find the Outlook folder I would like you to Rename this from Outlook to OutlookOld.<span>  </span>Then I would like you to reload your Outlook client and verify that the Duplicate toolbar no longer exists.</em></font></p>
<p style="text-align: left">They had listed out a number of other steps as well - but I knew once I renamed the folder and the phantom CRM button on my toolbar disappeared I was in business.  Sure enough the install went clean and I am up and running!</p>
<p style="text-align: left"> The only downside to this is the loss of some personal settings in Outlook and the stored pre-popped address that I had built up.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/04/14/an-error-occurred-loading-microsoft-dynamics-crm-functionality/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CRM Live - Now CRM Online</title>
		<link>http://blog.powerobjects.com/2008/04/10/crm-live-now-crm-online/</link>
		<comments>http://blog.powerobjects.com/2008/04/10/crm-live-now-crm-online/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 21:05:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Dynamic CRM 4.0]]></category>

		<category><![CDATA[Dynamic Online CRM]]></category>

		<category><![CDATA[Dynamics CRM in the News]]></category>

		<guid isPermaLink="false">http://blog.powerobjects.com/2008/04/10/crm-live-now-crm-online/</guid>
		<description><![CDATA[This move by Microsoft has been questioned by many partners and the community at large, but we feel it makes sense, given the naming scheme that is taking shape as part of the company’s Software+Services (S+S) push. Microsoft is attempting to categorize its services into one of three categories:

“Live” refers to consumer and very-low-end small-business offerings. Examples: [...]]]></description>
			<content:encoded><![CDATA[<p>This move by Microsoft has been questioned by many partners and the community at large, but we feel it makes sense, given the naming scheme that is taking shape as part of the company’s Software+Services (S+S) push. Microsoft is attempting to categorize its services into one of three categories:</p>
<ul>
<li>“Live” refers to consumer and very-low-end small-business offerings. Examples: Windows Live Messenger, Office Live Workspace.</li>
<li>“Online” refers to small-/mid-size and enterprise services that are hosted by Microsoft in its own datacenter. Examples: Exchange Online, SharePoint Online and now Dynamics CRM Online.</li>
<li>“Hosted services” refer to Microsoft offerings that are Partner hosted by its integration/reseller partners at the partners’ facilities. Examples: Exchange Hosted Services, CRM Hosted Services, and SharePoint Hosting Services.</li>
</ul>
<p>Until now, Microsoft has been referring to the Microsoft-hosted version of its Dynamics CRM 4.0 product as Dynamics CRM Live. But given that Microsoft has made it plain that it is going to offer Microsoft-hosted versions of many of its business products to not just large, enterprise customers, but to SMBs, as well, the CRM Live name just didn’t make a lot of sense.</p>
<p> We think the toughest part will be getting people to quite saying CRM Live and start saying CRM Online!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.powerobjects.com/2008/04/10/crm-live-now-crm-online/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
