<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dynamics CRM Perspective</title>
	<atom:link href="http://www.hunterconsulting.us/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.hunterconsulting.us/wordpress</link>
	<description>Things I like about Microsoft Dynamics CRM 2011</description>
	<lastBuildDate>Sat, 19 May 2012 03:23:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>FetchXML Reports in Dynamics CRM 2011</title>
		<link>http://www.hunterconsulting.us/wordpress/?p=120</link>
		<comments>http://www.hunterconsulting.us/wordpress/?p=120#comments</comments>
		<pubDate>Fri, 18 May 2012 17:21:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Published]]></category>

		<guid isPermaLink="false">http://www.hunterconsulting.us/wordpress/?p=120</guid>
		<description><![CDATA[As you probably know, Dynamics CRM 2011 comes in two versions: Online and On Premise. Both use the same codebase, but there some differences. For CRM On Premise customers who decide to move to Online, they find they can no longer directly query the SQL Filtered Views to retrieve data for custom reports. This is [...]]]></description>
			<content:encoded><![CDATA[<p>As you probably know, Dynamics CRM 2011 comes<br />
in two versions: Online and On Premise. Both use<br />
the same codebase, but there some differences.<br />
For CRM On Premise customers who decide to<br />
move to Online, they find they can no longer directly<br />
query the SQL Filtered Views to retrieve data for<br />
custom reports. This is a platform restriction for<br />
security purposes. Makes sense, but it can be an<br />
issue for those (like me) used to writing reports with<br />
SQL queries.</p>
<p>The FetchXML method of report development is now<br />
the recommended way to write custom SSRS reports<br />
for CRM Online and of course it also works for On<br />
Premise as well. To get started there are two<br />
prerequisite packages to install:</p>
<p><a href="http://www.microsoft.com/sqlserver/2008/en/us/business-intelligence.aspx" target="_blank"><strong>SQL Server 2008 R2 Business Intelligence<br />
Development Studio (BIDS)</strong></a>. Installing BIDS will also<br />
install Visual Studio 2008 stripped-down version for<br />
developing SSRS reports.</p>
<p><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=64a09b75-8376-4b9d-aea3-8a83a1837c4d" target="_blank"><strong>Microsoft Dynamics CRM 2011 Fetch Authoring<br />
Extension</strong></a> for BIDS. This provides the to add<br />
Microsoft Dynamics CRM Fetch data source in SSRS<br />
reports. To configure this data source for your report<br />
you need to provide CRM Server URL, Organization<br />
Name and Windows Live Credentials or<br />
Domain\Login.</p>
<p>Once the environment is prepared you can start<br />
creating new reports. For this example I will start in<br />
CRM by building my report query in Advanced Find,<br />
then generating the FetchXML code that will be used<br />
in the report definition file.</p>
<p>CRM 2011 makes it easy to generate FetchXML by<br />
providing a button on the toolbar within Advanced<br />
Find.</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Advanced-Find-Toolbar.png"><img class="alignnone size-medium wp-image-108" title="Advanced Find Toolbar" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Advanced-Find-Toolbar-300x73.png" alt="" width="300" height="73" /></a></p>
<p>So you can use the familiar Advanced Find tool to<br />
build your report query and generate the FetchXML<br />
code. In the following example I will create a new<br />
Case report based on a simple query for Cases that<br />
were created in the last 7 days, where the<br />
country =’United Kingdom’:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Advanced-Find-Query.png"><img class="alignnone size-medium wp-image-107" title="Advanced Find Query" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Advanced-Find-Query-300x103.png" alt="" width="300" height="103" /></a></p>
<p>After verifying the query is returning what I want<br />
by viewing the ‘Results’, I select ‘Download Fetch<br />
XML’. The results are saved to a file, the contents<br />
of which look like this in notepad:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/FetchXML.png"><img class="alignnone size-medium wp-image-115" title="FetchXML" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/FetchXML-300x90.png" alt="" width="300" height="90" /></a></p>
<p>Looking through the xml you can see the entity,<br />
the attributes, the order and the filter conditions,<br />
all of which are set through Advanced Find. The<br />
next step will be to copy/paste this code into a new<br />
report project in BIDS. The following steps illustrate<br />
creating the report project:</p>
<p>1)      Launch the BIDS tool and select<br />
File | New | Project – then select<br />
Report Server Project:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Report-Server-Project.png"><img class="alignnone size-medium wp-image-118" title="Report Server Project" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Report-Server-Project-300x172.png" alt="" width="300" height="172" /></a></p>
<p>Provide a name for the report and ‘Save’. The<br />
report will now appear as a project.</p>
<p>2)      Highlight the report under ‘recent reports’<br />
and right-click on ‘Reports’ in Solution<br />
Explorer:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Add-Report.png"><img class="alignnone size-medium wp-image-106" title="Add Report" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Add-Report-300x155.png" alt="" width="300" height="155" /></a></p>
<p>3)      Select Add New Report and the New Report<br />
Wizard will launch:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Report-Wizard.png"><img class="alignnone size-medium wp-image-119" title="Report Wizard" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Report-Wizard-300x157.png" alt="" width="300" height="157" /></a></p>
<p>4)      Clicking ‘next’ will take us to the DataSource<br />
page (see below image). This is where we<br />
setup the connection to the CRM Server:</p>
<p>- Choose ‘New data source’ (shared data<br />
sources won’t work after uploading to<br />
CRM server)</p>
<p>- Name the DataSource whatever you like</p>
<p>- Make sure the Type is ‘Microsoft<br />
Dynamics CRM Fetch’</p>
<p>- Fill in the connection string in the<br />
following format: <strong><em><br />
ServerURL;OrganizationName</em></strong></p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Data-Source.png"><img class="alignnone size-medium wp-image-114" title="Data Source" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Data-Source-300x276.png" alt="" width="300" height="276" /></a></p>
<p>5)      Click Credentials and enter Windows Live ID<br />
or Domain credentials depending on the<br />
instance (Online or On Premise):</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Credentials.png"><img class="alignnone size-medium wp-image-109" title="Credentials" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Credentials-300x280.png" alt="" width="300" height="280" /></a></p>
<p>6)      Click OK and Next. If the connection string<br />
is validated you will be at a blank Query Builder<br />
window. This is where we paste the FetchXML<br />
we saved from CRM:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Query-Builder.png"><img class="alignnone size-medium wp-image-116" title="Query Builder" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Query-Builder-300x274.png" alt="" width="300" height="274" /></a></p>
<p>7)      Click next and continue on through the<br />
Report Wizard to format the report layout,<br />
grouping and style.</p>
<p>8)      The end result will be the ‘RDL’ file, which<br />
is uploaded into CRM to generate the new report.</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/RDL.png"><img class="alignnone size-medium wp-image-117" title="RDL" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/RDL-300x77.png" alt="" width="300" height="77" /></a></p>
<p>Back in CRM we are ready to upload the RDL file.<br />
Navigate to <em>Workplace</em> | <em>Reports</em> and select ‘New’<br />
on the ribbon toolbar:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-New-Report1.png"><img class="alignnone size-medium wp-image-111" title="CRM New Report" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-New-Report1-300x214.png" alt="" width="300" height="214" /></a><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-Report-Properties.png"></a></p>
<p>From the new report screen:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-New-Report1.png"></a><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-Report-Properties.png"><img class="alignnone size-medium wp-image-112" title="CRM Report Properties" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-Report-Properties-300x237.png" alt="" width="300" height="237" /></a><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-Reports-Menu.png"></a></p>
<p>From the CRM Service Report category you can now<br />
see and run the new report.</p>
<p><strong><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-Reports-Menu.png"><img class="alignnone size-medium wp-image-113" title="CRM Reports Menu" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/CRM-Reports-Menu-300x37.png" alt="" width="300" height="37" /></a></strong></p>
<p>This report query was quite simple and could have<br />
been accomplished through the CRM Report Wizard.<br />
The advantage of using the FetchXML method is<br />
being able to design more complex queries with<br />
data from multiple entities through Advanced Find.<br />
The CRM Report Wizard has significant limitations in<br />
regards to query building. So, if you are going to be<br />
writing custom reports for CRM Online, you will likely<br />
be doing so with FetchXML. Have fun!</p>
<p>- Doug Hunter</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hunterconsulting.us/wordpress/?feed=rss2&#038;p=120</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Integration for Dynamics CRM 2011</title>
		<link>http://www.hunterconsulting.us/wordpress/?p=64</link>
		<comments>http://www.hunterconsulting.us/wordpress/?p=64#comments</comments>
		<pubDate>Mon, 25 Jul 2011 19:22:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Archived]]></category>

		<guid isPermaLink="false">http://www.hunterconsulting.us/wordpress/?p=64</guid>
		<description><![CDATA[SharePoint integration adds document management functionality to Dynamics CRM 2011. In CRM 4 the ability to manage documents was limited to adding attachments (via ‘Notes’) to an entity. Since SharePoint already provides rich document management features like versioning and check in/out, it makes sense that Microsoft would provide this integration. Even better though is the [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint integration adds document management functionality<br />
to Dynamics CRM 2011. In CRM 4 the ability to manage documents<br />
was limited to adding attachments (via ‘Notes’) to an entity. Since<br />
SharePoint already provides rich document management features<br />
like versioning and check in/out, it makes sense that Microsoft<br />
would provide this integration. Even better though is the <a title="Dynamics CRM List Component for SharePoint" href="http://www.microsoft.com/download/en/details.aspx?displayLang=en&amp;id=5283" target="_blank">CRM<br />
2011 List Component for SharePoint </a>is a free download.</p>
<p>We will walk through the process of configuring this new<br />
integration point. It only takes a few minutes to setup. We will<br />
cover two scenarios:</p>
<p>1) Auto creation of SharePoint document folders<br />
2) Linking CRM records to existing SharePoint folders </p>
<p>The prerequisites to get this working: administrative access to<br />
both CRM and the SharePoint site where you wish to store the<br />
documents. <a href="http://www.microsoft.com/download/en/details.aspx?displayLang=en&amp;id=5283#instructions" target="_blank">Install the List Component </a> before configuring CRM.</p>
<p>Dynamics CRM 2011 supports SharePoint 2010 or 2007, but the<br />
List Component only works with SharePoint 2010 and is what<br />
facilitates the automatic creation of SharePoint folders.</p>
<p>1) Go into the Settings area and click on “Document Management“<br />
in the left navigation pane.</p>
<p>2) Click on the “Document Management settings” link.</p>
<p style="text-align: justify;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Settings.png"><img class="size-medium wp-image-75" title="Settings" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Settings-300x114.png" alt="" width="300" height="114" /></a><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DocMgmnt-Settings.png"></a></p>
<p>3) Select the entities for which you want to enable document<br />
management:</p>
<p style="text-align: justify;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DocMgmnt-Settings.png"><img title="DocMgmnt Settings" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DocMgmnt-Settings-293x300.png" alt="" width="293" height="300" /></a></p>
<p>4) Enter the SharePoint URL where you have installed the<br />
SharePoint List Component</p>
<p>5) The ‘Based on entity’ option creates a folder hierarchy, under<br />
either an Account or Contact.</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/BasedonEntity.png"><img title="BasedonEntity" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/BasedonEntity-291x300.png" alt="" width="291" height="300" /></a></p>
<p>For example, if I choose ‘Account’ here the auto-creation of<br />
folders would start at the Account level and go down to any<br />
related entities from there. I choose to add a document I have<br />
created for an Opportunity (Test Sale) related to an Account<br />
(Test Company). The resulting folder structure would<br />
utomatically be created in SharePoint:</p>
<div id="attachment_72" class="wp-caption alignnone" style="width: 310px"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Hierarchy.png"><img class="size-medium wp-image-72" title="Hierarchy" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/Hierarchy-300x210.png" alt="" width="300" height="210" /></a><p class="wp-caption-text">Dynamics CRM 2011 SharePoint Integration</p></div>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/BasedonEntity.png"></a></p>
<p>Not all organizations will use Accounts or Contacts as primary<br />
entities so this is optional. If you don&#8217;t select Account or Contact<br />
the resulting folder structure (from the above example) would<br />
be: <em>http://ServerName/Opportunity/Test Sale</em></p>
<p>6) Once this step is complete you can add documents to any of<br />
the entities you selected in step 3.  </p>
<p style="text-align: justify;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/AddDoc.png"><img class="size-medium wp-image-74" title="AddDoc" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/AddDoc-300x134.png" alt="" width="300" height="134" /></a></p>
<p style="text-align: justify;">In addition to letting the system handle the creation of the<br />
document folders, you will probably want to utilize existing<br />
SharePoint Collection Sites as well.</p>
<p>To link a record to an existing SharePoint Location:</p>
<p style="text-align: justify;">1) Click on &#8216;Add Location&#8217; on the record toolbar:</p>
<p><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/AddLocation.png"><img class="alignnone size-medium wp-image-73" title="AddLocation" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/AddLocation-300x160.png" alt="" width="300" height="160" /></a></p>
<p style="text-align: justify;">2) Paste the URL of the SharePoint location into the<br />
&#8220;Specify the URL of an existing SharePoint Folder&#8217; line.</p>
<p style="text-align: justify;">That&#8217;s it! Just two steps to link to an existing location.</p>
<p style="text-align: justify;">This concludes the walkthrough for the &#8216;Out-of-Box&#8217; integration<br />
between Dynamics CRM 2011 and SharePoint 2010. There are<br />
many more integration possibilities between these two<br />
applications. I will be posting more next month.</p>
<p style="text-align: justify;">- Doug Hunter </p>
<p style="text-align: justify;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.hunterconsulting.us/wordpress/?feed=rss2&#038;p=64</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Enrichment in Dynamics CRM 2011</title>
		<link>http://www.hunterconsulting.us/wordpress/?p=3</link>
		<comments>http://www.hunterconsulting.us/wordpress/?p=3#comments</comments>
		<pubDate>Sun, 19 Jun 2011 05:01:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Archived]]></category>

		<guid isPermaLink="false">http://www.hunterconsulting.us/wordpress/?p=3</guid>
		<description><![CDATA[If you are a longtime Dynamics CRM user you have probably wanted this feature available to you at some point. It was actually part of the CRM 4.0 codebase during Beta, but left out of the final release. I have needed/wanted it for years and it is finally here. &#8216;Data Enrichment’ is part of the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">If you are a longtime Dynamics CRM user you have probably<br />
wanted this feature available to you at some point. It was<br />
actually part of the CRM 4.0 codebase during Beta, but left<br />
out of the final release. I have needed/wanted it for years<br />
and it is finally here.</p>
<p style="text-align: left;">&#8216;Data Enrichment’ is part of the Data Management feature set.<br />
It allows you to export a set of records like opportunities<br />
for example, edit them in Excel and re-import (update) them<br />
back into CRM. You can even add new records to the same<br />
Excel worksheet and they will be imported as new records.<br />
Data Enrichment is extremely useful for bulk updates of<br />
existing data, even if the people doing the updates are not<br />
CRM users! You can just export the CRM data to Excel and<br />
have them modify the worksheet data before reimporting it.<br />
 <br />
Let’s walk through a scenario where I want to update some<br />
product records stored in a custom entity ‘Other Products’.<br />
I need to edit the values for ‘Program’, Price Level’ and<br />
Product Classification’ for many records. I prefer to do this<br />
kind of editing in Excel rather than CRM.<br />
 <br />
The high-level steps:<br />
 <br />
1) Select the set of records to update. Use an existing view<br />
such as ‘Active Other Products’ or create an Advanced Find<br />
query to build the record set.</p>
<p style="text-align: left;">2) From the ‘Grid’ view select ‘Export to Excel’ from the<br />
toolbar:</p>
<p style="text-align: left;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Import.png"><img class="size-medium wp-image-6" title="DynamicsCRM_Import" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Import-300x112.png" alt="" width="300" height="112" /></a></p>
<p style="text-align: left;"> </p>
<p style="text-align: left;">3) A dialog box opens, from which you can select the export<br />
type. Only choose a ‘static’ type for Data Enrichment<br />
(Dynamic will not work). Be sure to check the box below<br />
making the data ‘available for re-import’.</p>
<p style="text-align: left;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Export2.png"><img class="alignleft size-medium wp-image-11" title="DynamicsCRM_Export2" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Export2-300x281.png" alt="" width="300" height="281" /></a></p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;">4) After selecting ‘Export’ you will be prompted to ‘save’<br />
the file, which you can then open in Excel.</p>
<p style="text-align: left;">5) Pull-down menu items are included in the export to<br />
maintain data consistency:</p>
<p style="text-align: left;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Excel1.png"><img class="alignleft size-medium wp-image-9" title="DynamicsCRM_Excel" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Excel1-300x83.png" alt="" width="300" height="83" /></a></p>
<p> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> 6) After updating the data in Excel, you can reimport<br />
the file by clicking the ‘Import Data’ button.</p>
<p style="text-align: left;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Import.png"><img class="alignleft size-medium wp-image-6" title="DynamicsCRM_Import" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Import-300x112.png" alt="" width="300" height="112" /></a></p>
<p> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;">7) Follow the Data Wizard prompts to complete the<br />
re-import. After the import you can review the import job<br />
for more details.</p>
<p style="text-align: left;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Import_Complete.png"><img class="alignleft size-medium wp-image-12" title="DynamicsCRM_Import_Complete" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_Import_Complete-300x102.png" alt="" width="300" height="102" /></a></p>
<p> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;">The updated records appear in the grid as expected.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"><a href="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_data_grid.png"><img class="alignleft size-medium wp-image-7" title="DynamicsCRM_data_grid" src="http://www.hunterconsulting.us/wordpress/wp-content/uploads/DynamicsCRM_data_grid-300x51.png" alt="" width="300" height="51" /></a><br />
 </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;">Nice, simple, but powerful editing capabilities are now<br />
available through ‘Data Enrichment’.</p>
<p style="text-align: left;">- Doug Hunter</p>
<p style="text-align: left;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.hunterconsulting.us/wordpress/?feed=rss2&#038;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

