﻿<rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>C5 Insight Blogs - Microsoft SharePoint, Dynamics CRM and Salesforce.com - Management</title>
    <link>http://blogs.c5insight.com/Default.aspx?TabId=40&amp;rssid=1&amp;categoryid=17</link>
    <description>This category is used for articles on management issues such as best practices, requirements gathering, strategy meetings and reporting.</description>
    <ttl>60</ttl>
    <language>en-US</language>
    <generator>SunBlogNuke RSS Generator Version 4.2.5.0</generator>
    <pubDate>Fri, 18 May 2012 15:16:05 GMT</pubDate>
    <lastBuildDate>Fri, 18 May 2012 15:16:05 GMT</lastBuildDate>
    <item>
      <title>Application Data Integration – Part Three, Timing and the Rules</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/18/business-intelligence.aspx">Business Intelligence</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/258/Application-Data-Integration-Part-Three-Timing-and-the-Rules.aspx</link>
      <description><![CDATA[<hr />
<p><font size="4"><strong>T</strong></font>his is my third blog in a series concerning data integration.  In my first two blog entries we overviewed some of the data integration hurdles as well as some of the common methods used to discover the net-change data that will need to be translated.  Here in my third blog I’ll discuss some of the benefits of not integrating in real-time, but creating a batch job to perform the integration.  We’ll also look at the Business Rules that may need to be applied within the integration process.</p>
<p><hr />
<font size="4"><strong>T</strong></font>hey say ‘timing is everything’.  I don’t necessarily agree that it’s <em>everything</em>, but it is an important ingredient in the design of your integration.  It’s always my first reaction to go ‘real-time’ with an integration project.  Scoping and requirements gathering will then bring me to a place where a part of the integration may not work designed to run as real-time.  Every business is built on processes that serve them well, or at least served them well back in the day.  There are times when transaction volume will preclude using real-time methods for translation.  Running the process, because of the volume, may have such an impact on the system, that user can not tolerate the sluggishness of the system during business hours.  Perhaps there is a business process that does not make data available until after business hours.  There can be any number of business process scenarios that would dictate utilizing a batch integration process rather than a real-time integration process.</p>
<p><font size="4"><strong>B</strong></font>usiness processes are not the only consideration when designing your integration.  The environment, and specifically the hardware that the integrated systems reside on, can play a key role in determining the integration process to use.  For example, if your integration design requires polling a record set for the net-change data, that polling can effect performance.  But to a greater extent, the record set that is returned will typically populate any RAM that is available, and if there is not enough RAM to hold the entire return record set, then it will occupy static drive space.  Depending on how large the net-change record set is, that’s been returned, stealing all available RAM can seriously impact performance of the system.  Conversely, you may have designed a multi-threaded integration process, such as utilizing a message queue as a pickup point for the extracted net- change data.  Where running a multi-threaded process, you are able to translation a larger volume of data in a shorter period of time, but, that process will be very CPU intensive.<img align="right" width="175" height="276" alt="" src="http://blogs.c5insight.com/Portals/0/BlogImages/Other/Seen My Data.png" /></p>
<p><font size="4"><strong>S</strong></font>o, when developing your integration design, keep in mind that batch processing is memory intensive and multi-threaded processes are CPU intensive.  Depending on the environment you’re working in, you may have the inclination to build one type of integration process, but the impact of that process would be too costly in terms of system performance and end-user satisfaction.</p>
<p><hr />
<font size="4"><strong>O</strong></font>k, so you have one part of your integration setup, great.  You’re integrating customers from your CRM system to your ERP system, fantastic.  You turn on the integration, and not too long afterward, folks from the finance group are complaining that there are customers in ERP that don’t belong in the system.  “What’d?, you say.  I thought you wanted customers integrated in both system?”.  The response from finance is that some of these aren’t customers, they are only prospects.  Ah, so not all customers are the same in the CRM system.</p>
<p><font size="4"><strong>T</strong></font>his is a very typical scenario.  The CRM system breaks down ‘customers’ into different customer types.  Only ‘customers’ that have actually bought something are to be integrated into the ERP system.  So, you need to be able to filter records in order to meet the requirements of this business rule .  That filtering can take place in two different places, <strong>a)</strong> at the time of discovery of the net-change data or, <strong>b)</strong> during the translation process of the net-change data.  If you have used a query to discover the net-change data, you may only need to add something to the WHERE clause of the query, to ensure that only records that meet the business rule criteria are discovered.  If the application has it’s own net-change method, but cannot be modified to filter the records, you will need to build the filtering into the translation process rather than in the discovery process.  There can, however, be some advantages to filtering at the integration process level.  Let’s say that you only want purchasing customers being integrated into you ERP system, but you would like to see an aggregated view of all new customers that have been added to the either system.  When you filter out the customers at the translation point rather than the discovery point, you have the records discovered in the net-change process, so, the entire record set can be used to create customer, by type, reporting.</p>
<p><font size="4"><strong>A</strong></font>nother. more complex example would be; sales orders being placed in the ERP system and then translated to one of several warehouse systems for processing.  In this case, you not only have to filter the record set, but you also have to determine what translation processes will be used to ensure the sales order record is consumed by the correct warehouse system.  As you can see, business rules will have a huge impact on how you might design your integration process.  The entire solution may incorporate many different net-change discovery methods as well as many different data translation methods.  Don’t get caught building a useless solution, wasting time and money.  Dig deep into the requirements in order to develop the best integration processes for the given scenario your are working under.</p>
<p><hr />
<font size="4"><strong><img align="left" style="width: 106px; height: 97px" alt="" src="http://blogs.c5insight.com/Portals/0/BlogImages/Other/Integration Cycle.png" />A</strong></font>s promised, this series is intended to be somewhat high level, but, I hope through some of the topics covered you have become a little more familiar with Application Data Integration.  It can be tricky stuff to get your hear around; there are a lot of issues to consider.  Not digging deep enough for the requirements can be very costly, not only monetarily, but also with adoption by your end-users if your integration is tied to a new business system implementation.  Knowledge is power, so I hope I’ve charged your batteries a little.</p>
<hr />]]></description>
      <dc:creator>Dave Baker</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/258/Application-Data-Integration-Part-Three-Timing-and-the-Rules.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/258/Application-Data-Integration-Part-Three-Timing-and-the-Rules.aspx</guid>
      <pubDate>Tue, 03 Apr 2012 18:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=258</trackback:ping>
    </item>
    <item>
      <title>Application Data Integration – Part Two, Net-Change</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/18/business-intelligence.aspx">Business Intelligence</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/256/Application-Data-Integration-Part-Two-Net-Change.aspx</link>
      <description><![CDATA[<hr />
<p><b><font size="4"><img hspace="10" alt="" align="left" style="width: 106px; height: 106px" src="http://blogs.c5insight.com/Portals/0/BlogImages/Other/Integration Creep.png" />I</font></b>n my previous blog focusing on the hurdles of real-time, two-way data integration, I highlighted the hurdle of how to discover the data you need translated. In most cases, discovering the net-change data is all you want to translate on a real-time basis. Remember, a two-way integration means net-change data going in two directions or more (depending on the number of systems you’re integrating) at a rate determined by how many end-users there are on each of the systems being integrated. Business systems with a significant amount of end-users can create substantial volumes of net-change data.</p>
<hr />
<p><b><font size="4">I</font></b>n order to manage the volume of data flowing between systems, you must choose a net-change model to discover just the data that needs to translate. There are traditionally four basic models to choose from, one of which will discover the net-change data. They are not all equal though, so choosing will depend somewhat on the system(s) you’re working with and somewhat depend on the data model of the system(s) with which you’re working.</p>
<p><font size="4"><strong>T</strong></font>he four methods are as follows, in best practice order:</p>
<ol>
    <li><strong>Application Method</strong> – this method is the most reliable and system efficient.  It relies on the system, or application, to find the net-change data and produce it in a format that is easily translated and consumed by other systems.  Some of the advantages of the Application Method are; <img alt="Application Net-Change" align="right" width="200" height="100" src="http://blogs.c5insight.comhttp://blogs.c5insight.comhttp://blogs.c5insight.com/Portals/0/BlogImages/Other/Net-Change 1.png" /> <br />
    <strong><font color="#000000">a)</font></strong>  It typically can support deletes.  In other words, records deleted by end-users can be traced to the other integrated systems, and if the business rules permit, will delete those records as well. <br />
    <strong><font color="#000000">b)</font></strong>  It is more likely to produce the net-change data in the order in which it was changed.  This could become important if the net-change data is being produced in logical but separate extracts.  One example would be if the system that is producing  the net-change data, splits a sales order into a header file and a detail file.  The consuming system will likely have referential integrity rules that would not allow details to be consumed before the header. <br />
    <strong><font color="#000000">c)</font></strong>  It has, typically, very little impact on the producing system, providing an un-noticeable effect to the end-users. <br />
    <strong><font color="#000000">d)</font></strong>  Reliability is a key factor.  If the application is running, then net-change is being discovered and made consumable for other systems.  <br />
     </li>
    <li><strong>Tracker-Table</strong> <strong>Method</strong> – Also known as the<em> shadow table method</em>, the tracker-table method is somewhat invasive, but is very useful in cases where the data model does not always supply a last modified date/time stamp on each record.  The tracker-table method does just what it says, it tracks the records that have had a change made to them.  It is invasive because it requires creating objects in the database of the system.  The idea being, create a table with at least three columns (ObjectName, RecordId,ChangeType).  This is the tracking table.  Then, place triggers on the tables which you are interested in seeing the net-change.  The triggers are designed to modify the tracker-table in the following ways; <img hspace="2" alt="" align="right" width="200" height="100" src="http://blogs.c5insight.comhttp://blogs.c5insight.comhttp://blogs.c5insight.com/Portals/0/BlogImages/Other/Net-Change 2.png" /> <br />
    <strong><font color="#000000">a)</font></strong>  If there is an insert on the table (a new record created),  the trigger will add a record to the tracker-table with three values; <strong>1</strong> - the table name where the changes came from, <strong>2</strong> – the recordId that was created when the record was committed, <strong>3</strong> – an identifier of the type of action that was performed (i.e. I = insert, U = update, D = deleted). <br />
    <strong><font color="#000000">b)</font></strong>  If there is an update made on the table, the trigger will search the tracker-table to find  the ObjectName/RecordId that corresponds to the record that was updated.  When the match is made, the trigger  then adds a ‘U’ to the ChangeType column indicating that the record corresponding to the recordid in the tracker-table, has been updated.. <br />
    <br />
    Now that the net-change has been identified in the tracker-table, a mechanism needs to be developed (or a third-party tool employed i.e. Scribe or Informatica), to poll the tracker table for records with an ‘I’, ‘U’ or ‘D’, then join the recordid to the base table and retrieve the record that was changed.  Once retrieved, set the ‘ChangeType’ in the tracker table back to NULL.  Then simply choose the frequency that you want to poll the tracker–table for ‘I’, ‘U’ or ‘D’.  <br />
     </li>
    <li><strong>Last Update Date Method</strong> – This method is non-invasive and can be as reliable as the Application and Tracker-Table methods. With this method you simply create a mechanism (or a third-party tool employed i.e. Scribe or Informatica) to poll the data-object for records that are new, or have an last<img hspace="2" alt="" vspace="5" align="right" width="200" height="100" src="http://blogs.c5insight.comhttp://blogs.c5insight.comhttp://blogs.c5insight.com/Portals/0/BlogImages/Other/Net-Change 3.png" /> update date/time stamp that is greater than the last time you polled the data-object.  There are a few other caveats to the WHERE clause but, essentially that’s all there is to it.  Here’s the kicker.  The reason that this method is 3rd in the best-practice ranking is because it is dependent on the clocks being used in the comparison, being synchronized.  If for some odd and perplexing reason one of your applications is getting it’s date/time from the desktop clock (or some other unreliable source), you would most likely end up with records falling through the cracks.  You must make sure the clocks you are using to compared and stamp are reliable. <br />
     </li>
    <li><strong>Comparison Method</strong> – If you must discover your net-change records, and none of the first three methods can be applied, this may be your last option.  The Comparison Method (<em>or snapshot method</em>) consists of making a copy of the recordset in which the net-change data resides.  Then at some point after that first copy, take another copy of the object and compare each row/column for the differences.  This is an extremely laborious method, but at times, desperate men must do desperate things.</li>
</ol>
<hr />
<p><font size="4"><strong>L</strong></font>astly, what to do with concurrent updates to a record.  End-user #1  in sales, opens John Smith’s contact record to add a new cell number.  At the same moment End-user #2 in finance, opens John Smith’s record to update the billing address.  With applications like Dynamics CRM, Salesforce and SharePoint, the application logic will manage the concurrent changes and will make sure both are recognized and able to be discovered as net-change, and translated.  Other than that, it’s the ‘last out wins’ method.</p>
<p><font size="4"><strong>I</strong></font>n my next post in this series, we’ll take a look at working the business process rules and application rules, into the integration process, and, at what frequency should the integration run.</p>
<hr />]]></description>
      <dc:creator>Dave Baker</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/256/Application-Data-Integration-Part-Two-Net-Change.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/256/Application-Data-Integration-Part-Two-Net-Change.aspx</guid>
      <pubDate>Wed, 28 Mar 2012 22:30:00 GMT</pubDate>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=256</trackback:ping>
    </item>
    <item>
      <title>Convergence Report 2: The Future of Dynamics CRM from #CONV12</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/260/Convergence-Report-2-The-Future-of-Dynamics-CRM-from-CONV12.aspx</link>
      <description><![CDATA[<p>I am back home from Convergence and still trying to digest the wealth of information that was shared!</p>
<p>Of course one of the most anticipated parts of the Microsoft Convergence 2012 event in Houston was learning about the future of Dynamics CRM … what new features and functions does Microsoft plan to add? I must say that Microsoft did a better job than normal in providing a vision of what the future may hold. The very short summary is that over the course of the next 12 months, you will see Dynamics CRM become more: anytime, any device, any business – than ever before. In this article we’ll take a deeper look into exactly what that means and how to expect this to translate into changes in the platform over the next several releases.</p>
<h2>CRM 2011 Q2 2012 SERVICE UPDATE (Dynamics CRM 2012?)</h2>
<p>Microsoft has been talking about the next release of CRM for quite some time – it bears the sexy name “Microsoft Dynamics CRM 2011 Q2 2012 Service Update.”  It’s hard to hide the excitement as a name like that rolls of the tongue!  Prior to Convergence, Microsoft already hosted a number of events to discuss this release – expected to be available by July 1, 2012.  The highlights are below for those of you who have not yet heard the details.</p>
<p><strong>Dynamics CRM 2011 on Any Browser:</strong> Microsoft is promising to deliver CRM via the most popular browsers as a part of this release including: Internet Explorer (of course), Firefox, Chrome and Safari.  So what’s all the fuss about?  In many companies there are users that are using Apple computers.  These have often been individuals in the marketing department who deliver important skill sets that require access to CRM, or  business executives who won’t give up their Macbooks.  In both cases the only option was to either have multiple different computers, or install a PC emulator on the Mac.  Neither situation was ideal.  Now these users can access CRM directly within their Mac.  This will also enable users of tablets (such as iPads) with compatible browsers to access CRM.  Outlook integration, however, is still available only in the PC/Windows environment.</p>
<p><strong><a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Convergence-Report-2-The-Future-of-Dynam_6AFA/3-25-2012%203-02-27%20PM_2.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="CRM 2011 CWR Mobility" border="0" alt="CRM 2011 on mobile devices" align="left" width="232" height="141" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Convergence-Report-2-The-Future-of-Dynam_6AFA/3-25-2012%203-02-27%20PM_thumb.png" /></a>Dynamics CRM 2011 on Any Device:</strong> With this new release Microsoft is rolling out expanded mobile capabilities – including a version of CRM for iPad, iPhone, Android and Windows Phone devices.  With the iPad invading corporations everywhere, this is a welcome move on Microsoft’s part.  These new mobile versions of CRM had already been developed by CWR Mobility, an organization that partners with Microsoft.  CWR already had a mobile version of CRM for all of the above devices, and Microsoft is simply making this mobile version more readily available to businesses using CRM 2011 than before.  This is very good news because it means that this is not a “version 1.0” release of the mobile software – Microsoft is leveraging software that has been available for many years.  There is an additional fee for this capability (about $30.00 per user per month – each user can have up to 3 devices).  Feel free to <a title="Get CRM 2011 Mobile" target="_blank" href="http://www.c5insight.com/contact.aspx">contact us</a> if you’d like to have Mobile CRM setup to work for your organization.</p>
<p><strong>More Social Capabilities:</strong> In this upcoming release, Microsoft is taking the social capabilities within CRM 2011 to the next level.  Activity Feeds will be expanded to include filters based on: entity (for example, you can filter all updates to show only Contacts, Accounts, Opportunities, etc), based on posts about you (it is, after all, all about you) or about your direct reports (who have gotten the idea into their head that it’s all about them).  If you haven’t already started to use Activity Feeds, then you should consider getting started right away.  Learn more: <a title="Social Micro Blogs for Dynamics CRM 2011" target="_blank" href="http://blogs.c5insight.com/Home/tabid/40/entryid/244/CRM-2011-Activity-Feeds-Gaining-User-Adoption.aspx">click here</a>.</p>
<p><strong>Faster CRM 2011 Online:</strong> Dynamics CRM 2011 presents very rich forms to the user.  But those rich forms come at a price – all of the logic and design elements for those forms have to be downloaded from over the web.  In some cases this can result in making the application slower than what users would prefer.  Microsoft has been addressing this by tuning CRM 2011 Online to improve performance.  With the Q2 2012 update they will also be introducing Rapid View Forms.  These are read-only version of forms that can be rendered much more quickly than standard editable forms.</p>
<p><strong>But Wait … There’s More:</strong> Want more details about all the goodies in the Q2 2012 Service Update?  It’s available in the attached PDF (click the Adobe Acrobat logo to start the download).</p>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="CRM_2011_Q2_2012_Service_Update_Mobile_Mobility_Details_Acrobat" border="0" alt="CRM_2011_Q2_2012_Service_Update_Mobile_Mobility_Details_Acrobat" align="left" width="20" height="20" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Convergence-Report-2-The-Future-of-Dynam_6AFA/CRM_2011_Q2_2012_Service_Update_Mobile_Mobility_Details_Acrobat_thumb.jpg" /></p>
<p><a target="_blank" title="CRM 2011 Mobile and Multi-Browser Support" href="http://blogs.c5insight.com/LinkClick.aspx?fileticket=5Dp5gxR85HE%3d&tabid=40">CRM_2011_Q2_Service_Update_Details.pdf</a></p>
<p> </p>
<h2>CRM 2011 Q4 SERVICE UPDATE</h2>
<p>Even more exciting was the news about the following update, which will come a bit later this year.  Although there is nothing as formal about this release as there is for the Q2 release, I sat in on a number of sessions where the vision for this update was discussed (and sometimes demonstrated).  Please take what is provided below with a large grain of salt – some of these items are me “reading between the lines” and others may slip to future releases.</p>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Convergence-Report-2-The-Future-of-Dynam_6AFA/image_2.png"><strong><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 0px 0px 10px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" title="Dynamics CRM 2011 Running on a Windows 8 Slate Tablet" border="0" alt="Windows 8 and Dynamics CRM" align="right" width="244" height="167" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Convergence-Report-2-The-Future-of-Dynam_6AFA/image_thumb.png" /></strong></a><strong>Windows 8 + Dynamics CRM:</strong> I was very surprised to see how much work it looks like Microsoft is putting in to rewriting the CRM user interface to work with Windows 8.  I’ve included one of about 20 pictures I was able to snap in a session titled, “CRM Goes Metro”.  Metro is the new user interface design that Microsoft is rolling out across Windows Phone, Xbox and Windows 8.  It looks much better than I expected.  For those of you who use the Windows Phone, you’re already familiar with the buttons that function as “smart tiles” – giving you information (such as the weather) without even having to open the application.  CRM may have smart tiles that tell you the number of leads you have, past due opportunities, or high priority cases. What was most impressive to me was the way that CRM is being laid out to be much less data-entry intensive for users, while walking them through processes (in the same way, for example, that LinkedIN walks you through making sure that your profile is complete).  If Microsoft can deliver something as nice as what I saw in these sessions, then it will change the game.</p>
<p>A quick note to developers who may want to keep up with Windows 8 and CRM, Microsoft suggests the following tools and knowledge sources:</p>
<ul>
    <li>Visit <a title="How to develop for Windows 8 Metro and CRM 2011" target="_blank" href="http://www.buildwindows.com">www.buildwindows.com</a></li>
    <li>Windows Runtime</li>
    <li>HTML/CSS for Metro</li>
    <li>Windows Library for JavaScript</li>
    <li>Microsoft .NET for Metro Style Apps</li>
    <li>Win32 and COM for Metro Style Apps</li>
</ul>
<p><strong>Social Integration:</strong> Microsoft plans to continue to expand what they’re doing with social integration.  I saw impressive demos of updating contact information directly from LinkedIN (some of this functionality is expected to be available in the Marketplace within just a few weeks, but the most impressive demo was done with Windows 8 and won’t be available until late this year).  Although I did not see this demoed, it also sounds as if Microsoft plans to develop integration directly to social networks so, for example, if someone tweets something negative about your organization, you can convert that into a case and work to resolve the issues with the customer.</p>
<p><strong>Tablet and Mobile Behave Like Outlook:</strong> This is something that was only talked about briefly, but in at least one session I heard a mention of integrating directly with mobile Outlook and mobile phones so that emails and phone calls can be tracked directly from mobile devices without having to have the Outlook client installed.  This would be a huge leap forward for highly mobile users, or users who are accessing CRM from a Mac or another non-Microsoft platform.</p>
<p><strong>CRM as the System of Engagement:</strong> There were a number of demonstrations showing how the mobile capabilities (both with Windows 8 tablets as well as with other form factors such as phones and iPads) could be used in a very efficient manner while interacting directly with customers.  One example that I thought was particularly exciting was for a retailer.  When the customer walked into the store, they could optionally check in with their mobile device; when they did so, the employees at the store were immediately alerted and the customer profile was made available with both recent and recommended purchases displayed on screen.</p>
<p> </p>
<p>There are a number of very exciting developments right on the horizon.  What’s coming by July looks evolutionary, but what’s coming after that looks revolutionary.  Let’s hope that Microsoft can pull it off and take CRM to a whole new level that quickly!</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/260/Convergence-Report-2-The-Future-of-Dynamics-CRM-from-CONV12.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/260/Convergence-Report-2-The-Future-of-Dynamics-CRM-from-CONV12.aspx</guid>
      <pubDate>Mon, 26 Mar 2012 11:03:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=260</trackback:ping>
    </item>
    <item>
      <title>Are you taking advantage of multi-dimensional analytics with OLAP cubes?</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/18/business-intelligence.aspx">Business Intelligence</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/259/Are-you-taking-advantage-of-multi-dimensional-analytics-with-OLAP-cubes.aspx</link>
      <description><![CDATA[<blockquote>
<p><font size="1" face="Verdana"><a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/8c7ff5fc54e1_9BB2/Cube%20Image%202_2.jpg"><img style="background-image: none; border-right-width: 0px; margin: 0px 19px 5px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Cube Image 2" border="0" alt="Cube Image 2" align="left" width="244" height="185" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/8c7ff5fc54e1_9BB2/Cube%20Image%202_thumb.jpg" /></a>Many companies spend a lot of money, time and effort to build a data warehouse and OLAP cubes, however they start using them to build the same old 2D reports that they were used to from the past. The standard 2D canned reports (Rows and Columns) can be built from any conventional relational database by writing some standard SQL queries. So why use an OLAP (On Line Analytic Processing) cube for such reports?</font></p>
<p><font size="1" face="Verdana">The OLAP cubes can handle large amount of data and can bring the results to you instantaneously and it is pre-aggregated. They are designed and built using de-normalized dimensional models optimized for faster data retrieval and reporting. They can hold all the data coming out of a data warehouse and they can also aggregate the granular data to many different levels. The big advantage is, the Microsoft SSAS OLAP cube can hold up to 128 dimensions and you can slice and dice the data using all the dimensions you have built into the cube. In addition, you can further slice the data using the hierarchies built within the dimensions. For example; You can slice the data by dimensions like Time, Geography, Product, Employee, and much more. In the Geography dimension you can also further slice the data by Continent, Country, State, County, City and Zip. </font></p>
</blockquote>  <blockquote>
<p><font size="1" face="Verdana"><a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/8c7ff5fc54e1_9BB2/Dashboard_2.jpg"><img style="background-image: none; border-right-width: 0px; margin: 0px 19px 7px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Dashboard" border="0" alt="Dashboard" align="left" width="243" height="129" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/8c7ff5fc54e1_9BB2/Dashboard_thumb.jpg" /></a>There are plenty of multi-dimensional analytic tools out there for the business intelligence presentation layer.You could take advantage of such tools to analyze the data coming out of the OLAP cubes and build real business intelligent reporting via dashboards filled with Gauges, Charts, KPIs, Grids, etc. Besides, a cube could also let various executives, managers and analysts in an organization to work independently at different level of data and reporting with added security features as well. Some of tools currently available in the market are <a href="http://www.microsoft.com/en-us/bi/default.aspx">Microsoft Performance Point 2010</a>, <a href="http://www.panorama.com/index.html">Panorama</a>, <a href="http://www.microsoft.com/en-us/bi/powerpivot.aspx">Power Pivot</a>, & <a href="http://www.microsoft.com/sqlserver/en/us/solutions-technologies/business-intelligence/SQL-Server-2012-reporting-services.aspx">Reporting Services</a></font></p>
<p><font size="2" face="Verdana"> </font></p>
</blockquote>]]></description>
      <dc:creator>Veeram Raja</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/259/Are-you-taking-advantage-of-multi-dimensional-analytics-with-OLAP-cubes.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/259/Are-you-taking-advantage-of-multi-dimensional-analytics-with-OLAP-cubes.aspx</guid>
      <pubDate>Fri, 23 Mar 2012 22:16:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=259</trackback:ping>
    </item>
    <item>
      <title>Convergence Report 1: The Future is Collaborative at #CONV12</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/257/Convergence-Report-1-The-Future-is-Collaborative-at-CONV12.aspx</link>
      <description><![CDATA[<h1> </h1>
<p><a title="Dynamics CRM Convergence 2012" target="_blank" href="http://www.microsoft.com/dynamics/convergence/houston12/"><img title="Dynamics CRM Convergence 2012" border="0" alt="Convergence 2012 Dynamics CRM" align="left" width="244" height="65" style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-Collaboration-and-Convergence_626B/image_6.png" /></a></p>
<p> </p>
<p> </p>
<p>After concluding the first day at the Microsoft Convergence 2012 event here in Houston, TX, I can summarize my feelings in one sentence, “It is a great time to be alive and working on collaboration!” Why do I say that? Here are a few brief insights:</p>
<h2>Collaboration Has Changed Us</h2>
<p>The initial general session opened with a song that was composed by artists working from different locations around the globe.  It was impressive to hear music that these individuals put together without having met each other.  During the session, I was taking notes on my slate using OneNote – these notes were syncing with our SharePoint server back at the office.  I was also having chat discussions with colleagues both at the event and back at the office via Lync and email.  Later, I was on a Skype call with a new prospect in Australia.  And it began to sink in how much things have changed over the past 10 years.  The idea of collaborating in real time, or even iteratively, with people around the globe, has moved from an idea to the norm.</p>
<h2>The Future is so Bright…</h2>
<p>But as much as things have changed, the future is even brighter.  I’ll do a separate blog on some of the changes to expect with the rollout of new versions of Dynamics CRM, SharePoint and Windows in the next 12 months, but here are facts you may not know about Microsoft:</p>
<ul>
    <li>95,000 employees in over 190 countries and over 600,000 partners – that is a tremendous amount of human thinking contributing to innovation</li>
    <li>1.5 million people use Microsoft products – and they’re using competing products too, forcing Microsoft to continue to innovate</li>
    <li>The spend $9 billion in R&D annually – if I heard it correctly, they’re in the top few companies in the world in R&D spend – this will translate into exciting developments over the next 5-10 years that we’re not even envisioning today</li>
</ul>
<h2> </h2>
<h2>Collaboration Done Right</h2>
<p>After many years of working as a Microsoft partner, one of the things I have grown to appreciate is their approach to the market.  Make no mistake, I don’t drink all of the Microsoft kool-aid and I know that many have a very negative view of Microsoft just because they are the “big kid on the block.”  But they are doing a lot of things right and they get very little credit for it.  Specifically:</p>
<ul>
    <li><strong>Open Ecosystem:</strong> Although many would argue that Microsoft software is not “open” (which is true and, in my view, is a good thing), their ecosystem is open.  What does that mean?  Simply that they do not prohibit others from publishing improvements or add-ons to their products.  Anyone can publish a Windows program or CRM add-on (for example) without being forced to go through a “closed” marketplace that may mark it up or may eliminate competitive products all together.  The downside of this is that some low quality products can find their way to the market – the upside is that individual companies and developers have much more freedom to innovate (even if that means competing with Microsoft). <br />
     </li>
    <li><strong>Choice:</strong> Microsoft gives both customers and partners the ability to choose.  I had a number of conversations on the first day of the event with customers that said they began working with another company that made it very easy to get started, but they quickly felt trapped.  In some cases I heard complaints about working with a vendor that did not do knowledge transfer – so they could never learn enough to function on their own if they wanted to.  In other cases, I heard that businesses were frustrated because they were trapped in someone else’s cloud that was expensive and limited what they could do.  Microsoft has always worked to provide options (such as the ability to host in their cloud, a partner cloud or a private cloud), and to provide transparent access to knowledge. <br />
     </li>
    <li><strong>Partners:</strong> Microsoft has always been dedicated to supporting a partner channel. Although they are not always perfect in their execution of their partner programs, they have created millions of jobs around the globe in partner businesses.  They also understand that partners will often need to work with firms that compete with Microsoft; they may wish it were otherwise, but they understand how partner businesses work.  There is a downside – there are some partner firms out there that do less than high-quality work or that may have low-integrity sales practices; but there are also many thousands of partner firms to choose from that provide local, regional, national and global options to businesses located anywhere on earth. <br />
     </li>
</ul>
<p>I realize that this sounds a little bit like an advertisement for Microsoft.  From what I’ve seen, however, Microsoft attracts an undue amount of criticism. I have, admittedly, sometimes been in the chorus of voices offering (hopefully constructive) criticism.  But this is an organization that is having a tremendously positive impact for their customers, for their partners and for their employees.  With the values they have in place, I hope they thrive for a long time to come. </p>
<p>Having been around collaboration (from the process, technical and human sides) for over 20 years, I’m more excited than I’ve ever been before about the prospects for the future.  Not just because of what Microsoft is doing, but because of how the entire world is changing.   Here’s to working together to use collaboration to make positive changes, provide tools that enable us to express a genuine care for colleagues and customers, and free people and businesses to innovate!</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/257/Convergence-Report-1-The-Future-is-Collaborative-at-CONV12.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/257/Convergence-Report-1-The-Future-is-Collaborative-at-CONV12.aspx</guid>
      <pubDate>Tue, 20 Mar 2012 19:45:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=257</trackback:ping>
    </item>
    <item>
      <title>Application Data Integration – Part One, Overview</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/18/business-intelligence.aspx">Business Intelligence</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/254/Application-Data-Integration-Part-One-Overview.aspx</link>
      <description><![CDATA[<hr />
<p class="MsoNormal" style="text-align: justify; line-height: 13pt; margin: 0in 0in 10pt"><font size="4"><strong><img hspace="10" alt="" align="left" width="115" height="115" src="http://blogs.c5insight.comhttp://blogs.c5insight.com/Portals/0/BlogImages/Other/Integration Cycle.png" />I</strong></font>n some cases, if not all too some extent, integration between <a target="_blank" href="http://crm.dynamics.com/en-us/home"><span style="color: #0000ff">Dynamics<span style="mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin">™</span> CRM</span></a>, <a target="_blank" href="https://www.salesforce.com/"><span style="color: #0000ff">Salesforce<span style="line-height: 115%; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-bidi-theme-font: minor-latin; mso-fareast-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa">®</span></span></a> or/and <a target="_blank" href="http://sharepoint.microsoft.com/"><span style="color: #0000ff">SharePoint<span style="line-height: 115%; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-bidi-theme-font: minor-latin; mso-fareast-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa">®</span></span></a> with your back-office system is the key to user adoption.<span style="mso-spacerun: yes">  </span>Real-time, two-way data integration allows all segments of the business to access the very latest transactional data, and the information that the data contains.<span style="mso-spacerun: yes">  </span>One example might be the keying of a ‘large’ order by a sales representative into CRM or Salesforce.<span style="mso-spacerun: yes">  </span>Having real-time, two-way data integration in place, that order would go directly from the crm system  to your ERP/MRP system for processing.<span style="mso-spacerun: yes">  </span>That in turn will reduce inventory and alert the operations team, signaling the purchasing department that orders need to be placed to backfill inventory and, signaling the operation manager that they will need to increase production to fulfill the ‘large’ order.<span style="mso-spacerun: yes">  </span>In some cases the integration of data can trigger an alert that will notify outside vendors directly that inventory needs to be replenished.</p>
<p class="MsoNormal" align="justify" style="line-height: 13pt; margin: 0in 0in 10pt"><font size="4"><strong>W</strong></font>ith access to current inventory levels within a sales rep’s CRM or Salesforce system, sales reps can make better informed customer promises with regard to when items will ship and/or if ordered items will be backordered.<span style="mso-spacerun: yes">  </span>This greatly improves customer satisfaction and adoption of the new CRM or Salesforce system.  Other advantages (among a plethora) is integration into SharePoint as well, where lists can be compiled to help make better business decision as well as having vital documents at your fingertips, which ever application you are currently using.</p>
<hr />
<p class="MsoNormal" style="text-align: justify; line-height: 13pt; margin: 0in 0in 10pt"><font size="4"><strong>T</strong></font>his is just one small example of how application data integration can improve adoption, and also improve the client’s business prospects.<span style="mso-spacerun: yes">   </span>My purpose in this blog is not to discuss the business benefits of data integration, but explore some of the architectural hurdles in designing the real-time, two-way data integration processes.<span style="mso-spacerun: yes">  </span>In a short series of blog entries, we’ll examine:<img hspace="10" alt="" align="right" width="227" height="182" src="http://blogs.c5insight.comhttp://blogs.c5insight.com/Portals/0/BlogImages/Other/Integration Curve.png" /></p>
<p> <span style="font-family: ; mso-bidi-font-family: symbol; mso-fareast-font-family: symbol"><span style="mso-list: ignore"> <a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_10.jpg"><img title="clip_image001" border="0" alt="clip_image001" width="12" height="12" style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_thumb.jpg" /></a>     </span></span><strong>How</strong> data is discovered for translation                                     </p>
<p class="MsoNormal" align="left" style="line-height: 13pt; margin: 0in 0in 10pt"><span style="font-family: ; mso-bidi-font-family: symbol; mso-fareast-font-family: symbol"><span style="mso-list: ignore"> <a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_12.jpg"><img title="clip_image001" border="0" alt="clip_image001" width="12" height="12" style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_thumb_1.jpg" /></a>     </span></span><strong>When</strong> to discover data for translation                                        </p>
<p class="MsoNormal" align="left" style="line-height: 13pt; margin: 0in 0in 10pt"><span style="font-family: ; mso-bidi-font-family: symbol; mso-fareast-font-family: symbol"><span style="mso-list: ignore"> <a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_14.jpg"><img title="clip_image001" border="0" alt="clip_image001" width="12" height="12" style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_thumb_2.jpg" /></a>     </span></span><strong>What</strong> data to discover for translation                                         </p>
<p class="MsoNormal" align="left" style="line-height: 13pt; margin: 0in 0in 10pt"><span style="font-family: ; mso-bidi-font-family: symbol; mso-fareast-font-family: symbol"><span style="mso-list: ignore"> <a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_16.jpg"><img title="clip_image001" border="0" alt="clip_image001" width="12" height="12" style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_thumb_3.jpg" /></a>     </span></span><strong>How</strong> to handle concurrent data modification                          </p>
<p class="MsoNormal" align="left" style="line-height: 13pt; margin: 0in 0in 10pt"><span style="font-family: ; mso-bidi-font-family: symbol; mso-fareast-font-family: symbol"><span style="mso-list: ignore"><a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_18.jpg"><img title="clip_image001" border="0" alt="clip_image001" width="12" height="12" style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/5d0d455b74b2_C048/clip_image001_thumb_4.jpg" /></a>     </span></span><strong>How</strong> to incorporate the client’s and the application’s                    <br />
         business rules into the integration processes</p>
<p class="MsoNormal" align="justify" style="line-height: 13pt; margin: 0in 0in 10pt"><font size="4"><strong>W</strong></font>e will, by no means, cover all the detail that goes into data integration, but will cover, at a high level, some of the hurdles and how to overcome them.<span style="mso-spacerun: yes">  </span>In some cases, there will be a choice of methods to accomplish a task, so, we’ll also talk about the best method to use in particular situations.<span style="mso-spacerun: yes">  </span>Some methods are tool agnostic, some will highlight how a tool like <a target="_blank" href="http://www.scribesoft.com"><span style="color: #0000ff">Scribe Insight </span></a>provides easy access to data and the business rules around the data.<span style="mso-spacerun: yes">  </span>We’ll also see that many of the methods are application agnostic, meaning they can be applied to any system to system integration.</p>
<hr />
<p class="MsoNormal" align="justify" style="line-height: 13pt; margin: 0in 0in 10pt"><font size="4"><strong>D</strong></font>ata integration can be tricky stuff if it’s your first time tackling the subject.<span style="mso-spacerun: yes">  </span>Whether you are implementing a solution, or just need to talk comfortably about integration, there are several things to be careful of, but having said that, like anything else, it’s just a matter of experience before your comfort level is one that keeps your knees from shaking and your palms from sweating.</p>]]></description>
      <dc:creator>Dave Baker</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/254/Application-Data-Integration-Part-One-Overview.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/254/Application-Data-Integration-Part-One-Overview.aspx</guid>
      <pubDate>Tue, 20 Mar 2012 19:17:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=254</trackback:ping>
    </item>
    <item>
      <title>Get a CRM Bible at Convergence 2012!</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/250/Get-a-CRM-Bible-at-Convergence-2012.aspx</link>
      <description><![CDATA[<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/See-You-at-Convergence_E696/bible_shadow_2.jpg"><img title="Microsoft Convergence 2012 - Free CRM 2011 Bible" border="0" alt="Free CRM 2011 Bible at Convergence 2012" align="right" width="132" height="156" style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/See-You-at-Convergence_E696/bible_shadow_thumb.jpg" /></a>This weekend I’ll be packing my bags and heading off to Houston, TX to attend Microsoft Convergence 2012 to experience all of the Microsoft Dynamics CRM goodness I can get.  I’ll plan to publish at least a couple of blogs while I’m there on whatever news or tips I can pick up.  Feel free to leave a comment here if you’d like to request any specific topics</p>
<p>Are you planning to attend?   Great!  <a target="_blank" href="http://www.c5insight.com/contact.aspx">Ping me</a> and let’s plan to chat.  It would be great to network with individuals who are looking for career opportunities or who would like to chat about the challenges that you are experiencing with your CRM project.  I’ll hook you up with a free copy of our CRM 2011 Bible if you don’t already have one (or if you want a second copy for your nightstand).</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/250/Get-a-CRM-Bible-at-Convergence-2012.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/250/Get-a-CRM-Bible-at-Convergence-2012.aspx</guid>
      <pubDate>Fri, 16 Mar 2012 20:29:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=250</trackback:ping>
    </item>
    <item>
      <title>How to Avoid Orphan Contacts in Dynamics CRM 2011</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/249/How-to-Avoid-Orphan-Contacts-in-Dynamics-CRM-2011.aspx</link>
      <description><![CDATA[<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Managing-Orphan-Contacts_D916/SNAGHTML103f02_1.png"><img title="How to avoid orphan contacts in Dynamics CRM 2011" border="0" alt="Orphan Contacts in Dynamics CRM 2011" align="left" width="240" height="121" style="background-image: none; border-right-width: 0px; margin: 0px 10px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Managing-Orphan-Contacts_D916/SNAGHTML103f02_thumb_1.png" /></a>Have you finally gotten users to start creating contacts in CRM only to find out that they are often forgetting to associate them with an account? For B2B organizations, this can become a significant data quality issue. Most B2B organizations are business centered rather than contact centered. What this means is that users tend to use the account entity in CRM to search for information. So if a contact is not associated with an account, then users are not nearly as likely to find it. This problem is exacerbated by Outlook integration features, such as the ability create a new contact directly from an email address. In this blog, I’ll offer a couple of practical solutions to aid you with creating higher quality data by ensuring that the Parent Customer field is always populated on contact forms. </p>
<h1>Make Parent Customer Required</h1>
<p>The first tip seems fairly self-evident, but it is worth pointing out in case you missed it.  If you are a B2B firm, then you should consider making the Parent Customer field required on the contact form.  This enforces requiring that the user populate this form before they can save the record.  This is the first, easiest, and most important step you can take towards ensuring that you always have a value in the field.  Unfortunately, however, this step alone is not enough to guarantee that the field is always populated.  If a contact is created by clicking the “Create as contact” option from an Outlook email, it is possible for the user to exit the record without saving it (thus avoiding the requirement of filling in the Parent Customer field).  Data imports and other functions can also result in creating orphan contacts.  So what is a CRM administrator to do? </p>
<h1>Use a Workflow to Remind Users to Set Parent Customer</h1>
<p>CRM to the rescue!  It’s pretty easy to create a workflow to remind users that a contact needs to have a parent customer assigned.  If you’d like a copy of a CRM solution with the workflow, please just ping me on the <a target="_blank" href="http://www.c5insight.com/contact.aspx">contact us</a> page of our website and I’ll email this to you.   For those of you who are do-it-yourselfers, here are the steps to take:</p>
<ol>
    <li>Create a process on the contact entity.</li>
    <li>Have the process execute “On Create” of a contact record.</li>
    <li>Insert a short pause (maybe 5 minutes) at the start of the workflow (this allows time for the user to populate the Parent Customer field before the next step of the workflow is triggered – avoiding annoying email alerts that are not necessary).</li>
    <li>Check to see if the Parent Customer field on the contact record contains data.</li>
    <li>If it doesn’t contain data, then send an email to the individual that created the record reminding them to please add the Parent Customer to the contact.  Remember to make it easy for the user to find the record by inserting a link to the record directly into the email body and/or by setting the Set Regarding field so that a link appears in the CRM Pane in Outlook.</li>
</ol>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Managing-Orphan-Contacts_D916/SNAGHTML1fd068.png"><img title="CRM Workflow - Remember to set Parent Account on CRM 2011 Contact" border="0" alt="Workflow to remind users to set the parent account on a contact form in CRM" width="546" height="123" style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Managing-Orphan-Contacts_D916/SNAGHTML1fd068_thumb.png" /></a></p>
<p>That’s really all there is to it.  Just remember to have a little bit of fun with the text of the email alert.  Tell your users that “CRM is very happy that you created a contact” or other funny comments that will help them remember to enter data correctly the first time (these funny comments have the added benefit of really annoying those users who require constant reminders!)</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/249/How-to-Avoid-Orphan-Contacts-in-Dynamics-CRM-2011.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/249/How-to-Avoid-Orphan-Contacts-in-Dynamics-CRM-2011.aspx</guid>
      <pubDate>Fri, 16 Mar 2012 00:55:00 GMT</pubDate>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=249</trackback:ping>
    </item>
    <item>
      <title>Game-Changing Dashboards Combining SharePoint and CRM</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/18/business-intelligence.aspx">Business Intelligence</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/246/Game-Changing-Dashboards-Combining-SharePoint-2010-and-CRM-2011.aspx</link>
      <description><![CDATA[<p><a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/The-Ultimate-CRM-2011-Dashboards_CC7B/WP_000088_2.jpg"><img style="background-image: none; border-right-width: 0px; margin: 0px 0px 0px 12px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Using a HDTV to Present Dynamics CRM 2011 and Microsoft SharePoint 2010 Dashboards" border="0" alt="SharePoint 2010 and CRM 2011 Dashboards on a Large Monitor" align="right" width="244" height="184" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/The-Ultimate-CRM-2011-Dashboards_CC7B/WP_000088_thumb.jpg" /></a></p>
<p>SharePoint has had excellent dashboard presentation capabilities for a long time now.  Dynamics CRM formally rolled out dashboard reporting with CRM 2011 (although using SharePoint and/or SSRS enabled dashboard reporting with previous versions of CRM).  Now that this functionality is getting embraced and adopted by many organizations, how can it best be leveraged to change the game by truly accelerating performance?  Simple.  Combine the best of Microsoft SharePoint, Dynamics CRM 2011 and TV or large monitors placed in public areas within your business.  Here’s how we’ve done it at C5 Insight.</p>
<p>First off, we created great dashboards using native CRM 2011 functionality (such as views, charts and, of course, dashboards).  We used these for a while in production to ensure that they were producing the kind of information we could use to drive behavior and/or make better business decisions.  This includes setting goals and using the goal management features of CRM to help individuals understand exactly where they stand relative to expectations.</p>
<p>Next, we did the same with SharePoint.  We looked at the kinds of information that is not in CRM that we would want to report on.  This includes things like financials, summarized project information (although this information is tracked by us in CRM, the native charts do not have sufficient functionality to present the dashboards we needed, so we used Excel services in SharePoint to render this kind of information) and the company calendar.  Some custom SharePoint information can be added, such as a Wiki where you enter daily announcements or a “welcome” message when you know a client will be visiting the office that day.</p>
<p>Third step?  The CRM dashboards can be merged with SharePoint by using Iframes or Web Resources within the CRM 2011 dashboards.  These components can “hold” the content that we want to present on our dashboards from SharePoint.  We can then trim away the CRM “flash” (such as the ribbon and menu) just by calling the correct URL so the dashboards are presented as a “kiosk”.</p>
<p>The last step: put large screen monitors, that can connect to the web, in key locations in your business.  In the nearby image, we’ve placed a monitor near our main entrance where people gather regularly; and we have another one in another office area down the hall.  These monitors are configured to show the desktop of a nearby computer (in our case, we’re running the Android OS on these monitors and they remote desktop to the machine, but many other options exist to enable this).  We also downloaded remote control apps that can run on iPhone, Windows Mobile or Android so that we can interact with our dashboards with our mobile devices (including our Kindle Fires – very cool!)  Multiple dashboards can be setup so that they dashboard rotates periodically, and so that information is refreshed periodically.</p>
<p>That’s how we did it – but it can work a bit differently depending on your situation.  One area that many larger businesses may need for their dashboards is a true BI (business intelligence) dashboard that combines data from multiple sources into a data warehouse and then renders that on a dashboard.  This, too, can be presented on an interactive monitor.  Adding a touch screen to this will be the ultimate, “Minority Report” experience … can’t wait to add that!</p>
<p>Interested in how to change the game in your organization with great dashboards?  <a title="Contact C5 Insight for Game Changing CRM and SharePoint Dashboards" target="_blank" href="http://www.c5insight.com/contact.aspx">Click here to contact us</a> and let’s talk about it!</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/246/Game-Changing-Dashboards-Combining-SharePoint-2010-and-CRM-2011.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/246/Game-Changing-Dashboards-Combining-SharePoint-2010-and-CRM-2011.aspx</guid>
      <pubDate>Mon, 27 Feb 2012 19:54:00 GMT</pubDate>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=246</trackback:ping>
    </item>
    <item>
      <title>CRM 2011 Activity Feeds: Gaining User Adoption</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/244/CRM-2011-Activity-Feeds-Gaining-User-Adoption.aspx</link>
      <description><![CDATA[<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-Activity-Feeds-Gaining-User-Ado_92AC/image_2.png"><img title="Screen Capture of CRM 2011 Dashboard with What's New Wall" border="0" alt="CRM 2011 Dashboard with Activity Feeds" align="left" width="354" height="175" style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 12px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-Activity-Feeds-Gaining-User-Ado_92AC/image_thumb.png" /></a>Activity feeds, also known as a “wall” or “what’s new,” are a great feature in Dynamics CRM 2011 introduced with the November 2011 update rollup.  Activity feeds create a social “wall”, similar to Facebook or other social networks.  Users can follow records (such as an account, contact, opportunity or any other record type that the administer sets to work with activity feeds).  When certain actions occur on those records (such as an opportunity being won) a post is automatically made to the “wall” of that record (visible as the first tab on the record form).  Users can also comment on a record wall (for example, a user could comment, “My neighbor is the CEO of the firm for this opportunity – touch base with me for some ideas on how to win this one”).  Any posts made to the wall of a record you are following are also visible on your main “what’s new” wall – very similar to how status updates of your friends in Facebook show up on your individual Facebook wall.</p>
<p>It is hard to overstate how important this functionality can be to a business.  If you’ve been working with social applications for a while, it is fairly natural to learn how to use CRM activity feeds.  If social networking is new to you, then you should take the time to learn more about activity feeds.  <a title="Video Introduction to Dynamics CRM 2011 Activity Feeds" target="_blank" href="http://rc.crm.dynamics.com/rc/2011/en-us/on-prem/5.0/vid_activity_feeds_intro.aspx">Click here</a> for an overview.</p>
<p>But there is a problem.  Just as with any new approach to doing business, it can be difficult to get users to adopt this powerful new feature.  When working with some clients, I’ve heard comments like, “I already check email, voice mail and use instant messaging to exchange information – this is just another place that I have to remember to go.”  And I tend to agree with that.  Even though the “What’s New” wall is just a click away in the CRM menu, it requires remembering to discipline yourself to go to yet another part of CRM to make sure that nothing is slipping through the cracks.  So here are 3 ideas to help you get broader adoption of activity feeds across your organization.</p>
<h1>1. Start with an Activity Feed Pilot Group</h1>
<p>Don’t install the activity feed solution, provide an hour of training, and expect to see usage take off.  Rather, start using activity feeds with a small pilot group of users that are excited to integrate it into their daily work. Form a task force to discuss them and provide a bit of training, and meet every few weeks to review usage, discuss issues, and fine-tune how you have them configured.  Ask your task force to not only use activity feeds, but to think about why you would use this rather than another mode of communication (such as email).  You’ll find that this group develops best practices specific to your organization that you can use in training other users.</p>
<h1> </h1>
<h1>2. Integrate Activity Feeds into Dashboards</h1>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-Activity-Feeds-Gaining-User-Ado_92AC/SNAGHTML7c7080.png"><img title="Dashboard Settings for CRM 2011 Activity Feed" border="0" alt="CRM 2011 Activity Feed Web Resource Settings" align="right" width="164" height="244" style="background-image: none; border-right-width: 0px; margin: 12px 0px 12px 12px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-Activity-Feeds-Gaining-User-Ado_92AC/SNAGHTML7c7080_thumb.png" /></a>Another way we have found to aid with improving the adoption of activity feeds is to integrate them directly into your dashboards.  As you probably know, dashboards are more than just charts – they are an interactive tool that users can access to organize and manage their entire day – without having to navigate to all the various areas of CRM.  With that in mind, dashboards are a centerpiece of most of our implementations, so integrating the wall into the dashboard that they already use everyday means less clicking around to get them using activity feeds.  The image near the beginning of this blog entry is a demonstration of adding the activity feed to a dashboard that we use within our business.  Since the What’s New section is a web resource, it is fairly simple to add this to an existing dashboard.  Follow the instructions below to create a personal dashboard with activity feeds (if you want to roll this out across the business, then you’ll need to create a system dashboard):</p>
<ol>
    <li>Go to the dashboard you want to integrate activity feeds into.</li>
    <li>Click “Save As” in the ribbon menu and name the new dashboard (you could also modify an existing personal dashboard, but this runs the risk of making changes that you cannot easily undo – I prefer to start by creating a new dashboard and then, once I’m sure I no longer need the old one, I delete it).</li>
    <li>On the ribbon menu, click the “Web Resource” button on the Insert section.</li>
    <li>Choose the resource named, “msdyn_/PersonalWall.htm” – see the nearby image for other properties to set on this form.</li>
    <li>Position the web resource such that the user can see it clearly on their dashboard.  Depending on screen resolution, it should take from 1/3 to 2/3 of the width of the dashboard, and it should not be taller than can fit onto a single screen (lest the user has to use 2 scroll bars to navigate the wall).  This will take a bit of experimentation to get the settings right to fit in with your selected dashboard and screen resolution.</li>
</ol>
<h1>3. Create Groups</h1>
<p>One last tip: create a “Groups” custom entity that individuals can follow.  That way, people can choose a specific interest that they want to follow.  For example, in our business, we have people who focus on Dynamics CRM, SharePoint, Salesforce.com and Business Intelligence.  We also have things that we want to publish for everyone to see.  So we’ve created a group for each of those things, we ask everyone to follow the “Everyone” group, and to also follow the other groups of their choice.  This gives everyone a way to communicate with each other around their specific areas of interest and expertise without having to read through irrelevant information that is not important to their job.  You’ll also need to create appropriate security groups to manage this new entity.  To help you along with this, I’ve created a custom solution that you can load into your instance of CRM.  To request it, <a title="Download Activity Feed Group Solution" target="_blank" href="http://www.c5insight.com/contact.aspx">contact us</a>, and in the comment box request the “C5 Social Groups” solution – we’ll email it to you within a day.  Always remember to test out any new solution (including this one) in a test instance of CRM prior to rolling it out to your organization.</p>
<p> </p>
<p>With those tips in mind, you can quickly get your organization down the path of adopting activity feeds in CRM 2011.  Happy virtual socializing!</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/244/CRM-2011-Activity-Feeds-Gaining-User-Adoption.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/244/CRM-2011-Activity-Feeds-Gaining-User-Adoption.aspx</guid>
      <pubDate>Mon, 20 Feb 2012 18:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=244</trackback:ping>
    </item>
    <item>
      <title>Quick Tip: Track Meetings and Calls in CRM Without Typing</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/235/Quick-Tip-Track-Meetings-and-Calls-in-CRM-Without-Typing.aspx</link>
      <description><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 12px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="A Happy Salesperson Using Salesforce.com" border="0" alt="A Happy Salesperson Using Dynamics CRM" align="left" width="194" height="194" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Quick-Tips-Track-Phone-Calls-in-CRM-With_1089A/image_3.png" />Do you see the person in the picture to the left?  She is a salesperson.  Why is she so happy?  Because she is using her CRM system right now, while she’s talking on the phone.  And it’s taking her less time than ever before.  And her manager is getting the reports that he wants at the same time!  And she gets her work done in CRM when she would otherwise have “down time”?  How is all this possible you ask?  Read on …</p>
<p>We frequently hear complaints from sales users that they don’t like having to take the time to track meetings and phone calls in their CRM system.  Many sales people feel that this just takes away from the time that they can spend in conversations with prospective customers.  While it is critically important that sales people are disciplined about tracking relevant activities in CRM, there are some helpful shortcuts available to save some time – or to make use of “down time” while driving or waiting for a meeting.</p>
<p>One very helpful tool for tracking these activities comes from an unexpected source: Google!  Google has a free service called Google Voice.  The service is meant to be a helpful tool for routing calls (you can setup your Google Voice number to ring multiple phone numbers so prospects can reach you at your mobile, home or office number – you can even easily set it up to ring a land-line while you’re on vacation if you don’t have mobile service).  Google Voice also enables you to capture, and transcribe, voice mails.  Google Voice can send your voice mail messages to your email address automatically.  This voice mail transcription service is what you can use to save some time capturing meeting and call notes.</p>
<p>To take advantage of this, you can call your Google Voice number between meetings.  This can be while waiting for a meeting, from your car (of course you wouldn’t dream of doing this while driving … right?) or anywhere else that you have some “down time” and a mobile phone signal.  Call your Google Voice number, record your notes, and hang up.  Be sure to annunciate clearly – Google Voice transcription isn’t perfect and can sometimes lead to entertaining, or embarrassing, mistakes.  Google Voice transcribes the message and sends you an email.  When you’re back on Outlook, simply track the email (which includes the transcribed call notes) and regard it to the appropriate record in your CRM system.  You’re done!  That takes a lot less time than opening CRM, finding the customer record, creating an activity, and manually typing all of the notes.</p>
<p>If you have a talented CRM partner, they can setup a workflow for you that can automatically convert your tracked email into a phone call or appointment activity for you – so your notes will not only be tracked, but they will also appear as the correct activity type in CRM.</p>
<p>What will you do with all of the time you save? </p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/235/Quick-Tip-Track-Meetings-and-Calls-in-CRM-Without-Typing.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/235/Quick-Tip-Track-Meetings-and-Calls-in-CRM-Without-Typing.aspx</guid>
      <pubDate>Fri, 03 Feb 2012 05:49:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=235</trackback:ping>
    </item>
    <item>
      <title>Adding a Twitter Feed to CRM Leads</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/231/Adding-a-Twitter-Feed-to-CRM-Leads.aspx</link>
      <description><![CDATA[<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Adding-a-Twitter-Feed-to-CRM-Leads_BDB7/image_2.png"><img style="background-image: none; border-right-width: 0px; margin: 0px 12px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Twitter Feed on CRM Form" border="0" alt="Twitter Feed on CRM Form" align="left" width="244" height="178" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Adding-a-Twitter-Feed-to-CRM-Leads_BDB7/image_thumb.png" /></a></p>
<p>When reviewing a lead, account or contact prior to a sales call, it is always helpful to have as much context about a company prior to making the call.  Putting a Twitter feed on the CRM record for a lead can put this information in a place where it is easy for a sales person to quickly see it.  By passing in the name of the company dynamically, the feed can show relevant information about the specific company.</p>
<p>Twitter makes it pretty easy to generate the “base” code for integrating with CRM (or any website) as a widget.  You can find their tools for generating widgets <a title="Twitter CRM 2011 Widgets" target="_blank" href="https://twitter.com/about/resources/widgets">here</a>.  Even if you use my code, below, as a starting point, you’ll likely find this link helpful as you start to fine-tune your code a bit.</p>
<p>On the technical side, this post uses an HTML web resources to setup the Twitter integration on the Dynamics CRM 2011 lead form.  In general, this appears to be fairly straight forward, but there are a few ‘gotchas’ to work around.  Notably, ensuring that the script in inserted into the correct portion of the HTML code and structuring how you reference fields on your parent CRM form can be a bit tricky.</p>
<p>Here is a step-by-step guide to setting up the Twitter feed.  This assumes some basic knowledge of creating Web Resources in CRM.</p>
<p>1. Create a new Web Resource in the customizations area of CRM.  Use the following settings on it:</p>
<ul>
    <li>Name: Twitter</li>
    <li>Display Name: Twitter Mash-Up by C5 Insight</li>
    <li>Description: Displays a Twitter feed for the company on the Lead entity.</li>
    <li>Type: Web Page (HTML)</li>
</ul>
<p>2. Click Text Editor.</p>
<p>3. Click the source tab and enter or copy/paste the code from below.  IMPORTANT NOTE: Do <u>not</u> paste this code into the rich text editor – be sure  you are on the source tab.</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd"><</span><span class="html">HTML</span><span class="kwrd">><</span><span class="html">HEAD</span><span class="kwrd">></span></pre>
<pre><span class="lnum">   2:  </span><span class="kwrd"><</span><span class="html">SCRIPT</span> <span class="attr">charset</span>=<span class="attr">utf-8</span> <span class="attr">src</span><span class="kwrd">="http://widgets.twimg.com/j/2/widget.js"</span><span class="kwrd">></</span><span class="html">SCRIPT</span><span class="kwrd">></span></pre>
<pre class="alt"><span class="lnum">   3:  </span> </pre>
<pre><span class="lnum">   4:  </span><META charset=utf-8></HEAD></pre>
<pre class="alt"><span class="lnum">   5:  </span><BODY contentEditable=<span class="kwrd">true</span>></pre>
<pre><span class="lnum">   6:  </span><SCRIPT></pre>
<pre class="alt"><span class="lnum">   7:  </span><span class="kwrd">var</span> strName = window.parent.Xrm.Page.getAttribute(<span class="str">'companyname'</span>).getValue(); </pre>
<pre><span class="lnum">   8:  </span> </pre>
<pre class="alt"><span class="lnum">   9:  </span><span class="kwrd">new</span> TWTR.Widget({</pre>
<pre><span class="lnum">  10:  </span>  version: 2,</pre>
<pre class="alt"><span class="lnum">  11:  </span>  type: <span class="str">'search'</span>,</pre>
<pre><span class="lnum">  12:  </span>  search: strName,</pre>
<pre class="alt"><span class="lnum">  13:  </span>  interval: 30000,</pre>
<pre><span class="lnum">  14:  </span>  title: <span class="str">'Twitter Mentions of '</span>,</pre>
<pre class="alt"><span class="lnum">  15:  </span>  subject: strName,</pre>
<pre><span class="lnum">  16:  </span>  width: <span class="str">'auto'</span>,</pre>
<pre class="alt"><span class="lnum">  17:  </span>  height: 175,</pre>
<pre><span class="lnum">  18:  </span>  theme: {</pre>
<pre class="alt"><span class="lnum">  19:  </span>    shell: {</pre>
<pre><span class="lnum">  20:  </span>      background: <span class="str">'#8ec1da'</span>,</pre>
<pre class="alt"><span class="lnum">  21:  </span>      color: <span class="str">'#ffffff'</span></pre>
<pre><span class="lnum">  22:  </span>    },</pre>
<pre class="alt"><span class="lnum">  23:  </span>    tweets: {</pre>
<pre><span class="lnum">  24:  </span>      background: <span class="str">'#ffffff'</span>,</pre>
<pre class="alt"><span class="lnum">  25:  </span>      color: <span class="str">'#444444'</span>,</pre>
<pre><span class="lnum">  26:  </span>      links: <span class="str">'#1985b5'</span></pre>
<pre class="alt"><span class="lnum">  27:  </span>    }</pre>
<pre><span class="lnum">  28:  </span>  },</pre>
<pre class="alt"><span class="lnum">  29:  </span>  features: {</pre>
<pre><span class="lnum">  30:  </span>    scrollbar: <span class="kwrd">true</span>,</pre>
<pre class="alt"><span class="lnum">  31:  </span>    loop: <span class="kwrd">false</span>,</pre>
<pre><span class="lnum">  32:  </span>    live: <span class="kwrd">true</span>,</pre>
<pre class="alt"><span class="lnum">  33:  </span>    behavior: <span class="str">'all'</span></pre>
<pre><span class="lnum">  34:  </span>  }</pre>
<pre class="alt"><span class="lnum">  35:  </span>}).render().start();</pre>
<pre><span class="lnum">  36:  </span><span class="kwrd"></</span><span class="html">SCRIPT</span><span class="kwrd">></span></pre>
<pre class="alt"><span class="lnum">  37:  </span><span class="kwrd"></</span><span class="html">BODY</span><span class="kwrd">></</span><span class="html">HTML</span><span class="kwrd">></span></pre>
</div>
<p><style type="text/css">

.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style></p>
<p> </p>
<p>4. Click the OK button.  Note that you will get an error when you click this button.  You can safely ignore the error and click either Yes or No to continue.</p>
<p>5. Save, Publish and the Save/Close the web resource.</p>
<p>6. Still within the customizations area, open the Lead entity form.</p>
<p>7. Add the web resource you created above wherever desired.  Make it 12 rows high in order for the scrolling to show up properly – later you can update the HTML web resource and/or the number of rows used on the form to your preferences.</p>
<p>8. Save, Publish and then Save/Close the lead form.</p>
<p>9. Open up any lead in CRM and, if it has a company name, you will see the results of searching Twitter for the company name directly on the form.</p>
<p>You can change the code you pasted in step #3, above, to fine-tune the Twitter feed settings.  For instance, you can:</p>
<ul>
    <li>Post the feed to other forms (such as accounts and contacts) by referencing fields on those forms instead of the Company Name field on the lead form.</li>
    <li>Using additional fields from forms (for example, you can add a custom field called “Social Searches” and allow your users to put in any other terms that they would like to search on).</li>
    <li>Change the design (colors, size, etc).</li>
    <li>You can also fine-tune the code by passing in the field name from the form (rather than hard coding the field name into the script in the HTML web resource).  By passing in the value, you can re-use the same web resource for multiple different forms.</li>
</ul>
<p>Remember that this is a “mash up” to Twitter.  No data is being added to CRM with this type of integration – it is “view only.”</p>
<p>This is just one of many ways that you can integrate Dynamics CRM 2011 with your social media strategy.  We’re seeing quite a bit of demand for social CRM from our clients these days.  I’ll be speaking on this topic in some upcoming webcasts and will plan to publish additional social CRM blogs if there is interest in the topic here.</p>
<p>Special thanks go out to my colleague, Jonathan Kaufman, for his assistance in getting a value from a CRM form from within an HTML web resource as a part of creating this blog post!</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/231/Adding-a-Twitter-Feed-to-CRM-Leads.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/231/Adding-a-Twitter-Feed-to-CRM-Leads.aspx</guid>
      <pubDate>Mon, 30 Jan 2012 22:10:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=231</trackback:ping>
    </item>
    <item>
      <title>CRM 2011 and Outlook: 5 Functions Everybody Should Use</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/227/CRM-2011-and-Outlook-5-Functions-Everybody-Should-Use.aspx</link>
      <description><![CDATA[<p>Outlook integration is an important part of CRM functionality - and the key reason why many organizations choose Microsoft Dynamics CRM over competitive CRM products.  In the first two parts of this series, we walked through how to decide which version of Dynamics CRM to use (Outlook or Web).  In this part, we look at 5 pieces of Outlook integration that you should use regardless of which version of CRM you choose.</p>
<h1>(1) Install CRM for Outlook</h1>
<p>To use any of the functionality described in this article, you first need to install CRM 2011 for Outlook on your PC.  Some important items to note:</p>
<ul>
    <li>When you install CRM 2011 for Outlook, items that users create in CRM will automatically sync with Outlook.  This includes contacts, appointments and tasks.  If you are using a mobile device that syncs with Outlook then these items, in turn, will sync with your mobile device.  This alone can be a very important point of integration – many business people rely on Outlook and their mobile device to quickly find contacts, to keep up with scheduled appointments, and to manage their task list.</li>
    <li>Installing CRM 2011 for Outlook installs the functionality described in the earlier article titled 6 Reasons to Use Dynamics CRM 2011 for Outlook (a link the article is below).  You do not, however, need to use this functionality.  Before installing CRM 2011 for Outlook, you should familiarize yourself with the two articles earlier in this series and determine which version of CRM you will use.</li>
</ul>
<h1>(2) Set Regarding and Track</h1>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-and-OutlookPart-3-of-3-Integrat_DD19/image_4.png"><img style="background-image: none; border-right-width: 0px; margin: 0px 6px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="CRM 2011 for Outlook Ribbon Menu" border="0" alt="CRM 2011 for Outlook" align="left" width="244" height="99" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-and-OutlookPart-3-of-3-Integrat_DD19/image_thumb_1.png" /></a>Using the “Track” and “Set Regarding” buttons is one of the simplest, but most powerful, points of integration between CRM and Outlook.  These buttons enable you to “push” an email, task, appointment or contact from Outlook into CRM.  Once a record has been pushed from Outlook into CRM, it will automatically be kept in sync.  Most of us track a tremendous amount of our interactions with customers and other stakeholders in Outlook – in the form of email, appointments and, sometimes, tasks – using these buttons to push information into CRM means that these important interactions can be saved, tracked and shared across the organization while requiring very little additional effort on your part.</p>
<p>When you click the “Track” button, CRM automatically looks at all of the email addresses in the Outlook record you are tracking (in the from/to/cc/bcc fields for emails, and in the required/optional attendee fields on appointments) and links the Outlook record to all of those related records in CRM.  So, for example, if you have an appointment with 3 required attendees, you will be able to find the appointment under all of those contacts, leads or users inside of CRM (for a visual example of this, see the CRM Pane in item #3, below).</p>
<p>As a best practice, we always recommend using the “Set Regarding” button rather than the “Track” button.  The Set Regarding button does everything that the Track button does, plus a little bit more.  By clicking Set Regarding, you can create an additional link to the record you are tracking.  Think of this in the same way as you think of the “Subject” or “Regarding” field in a business memo.  For example, you may send an email to 3 people with an update on an Opportunity; you can click the “Set Regarding” button and link the record to the Opportunity.  Now, when you look at the Opportunity or any of the Contacts, Leads or Users who were included in the email, you will see the email in the list of activities.</p>
<p>Note that when viewing Contacts in Outlook, you have a “Set Parent” button rather than a “Set Regarding” button.  This is because a contact can’t be “regarding” anything other than an account.  As above, the best practice is generally to always use the “Set Parent” button and not the “Track” button, so that all of your contacts will be related to a parent company (one exception is for business-to-consumer organizations that do not necessarily track the company that a contact works for).</p>
<h1>(3) The CRM Pane and the Outlook People Pane</h1>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-and-OutlookPart-3-of-3-Integrat_DD19/SNAGHTML1a65365.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 0px 0px 10px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="CRM 2011: The CRM Pane in Microsoft Outlook" border="0" alt="CRM Pane in Outlook" align="left" width="240" height="167" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-and-OutlookPart-3-of-3-Integrat_DD19/SNAGHTML1a65365_thumb.png" /></a></p>
<p>CRM 2011 for Outlook adds a “CRM Pane” to each Outlook record that is tracked in CRM.  This pane includes links to every record in CRM that is associated with the Outlook record.  This can be a big time saver when, for example, you need to quickly find a contact’s phone number in CRM in order to quickly follow-up on an email, or in order to find an address when preparing to drive to a meeting.  In the nearby image, you see the CRM Pane that appears below a tracked email. In this pane, you can click on the “Regarding” item (in this case, a campaign record), or on the contacts and users that the record is linked to in order to be taken directly to those records in CRM.</p>
<p>Below the CRM Pane, you can see the Outlook People Pane.  This functionality is available in Outlook without CRM – but it significantly enhances CRM functionality.  Using the People Pane, you can see all the recent social interactions with the individuals that an email or appointment is regarding (assuming that you are friends with them on LinkedIN, Facebook or other popular social networking sites).  You can also see all the recent activities associated with this person in Outlook (such as appointments and emails).  It’s a great way to quickly catch up on the latest information about a person while you are on a call.</p>
<h1>(4) Email Templates, Sales Literature and KB Articles</h1>
<p><a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-and-OutlookPart-3-of-3-Integrat_DD19/image_6.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 10px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" align="left" width="180" height="85" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/CRM-2011-and-OutlookPart-3-of-3-Integrat_DD19/image_thumb_2.png" /></a>When sending an email from Outlook, if you track it, you will be able to insert any of the email templates, sales literature or KB articles that are in CRM.  If you frequently have to send the same information to customers, this can be a tremendous time saver. </p>
<p>In most other CRM systems (including earlier versions of Microsoft CRM) you had to open a CRM record and send the information using a web form to send the email.  This was time consuming and required users to understand another interface for sending email.  By having access to these buttons directly within an Outlook email form, you can have access to powerful CRM functionality without ever leaving Outlook.</p>
<h1>(5) Convert To and Add Connection</h1>
<p>These last two functions are not used as often but, depending upon your area of responsibility and some of your usage requirements, they can be quite handy.</p>
<p>The Convert To button is available on records in Outlook that have been tracked in CRM.  It allows you to convert a record into a Lead, Opportunity or a Case.  Many of the activities that a business tracks about their customers and prospects are designed to engage the prospect in a new opportunity, or to provide service to an existing customer.  The Convert To button saves a lot of time when an activity results in a new record of this type – just click “Convert To,” pick the record type, and the new record is created for you.</p>
<p>Connections are new in CRM 2011; they allow you to connect almost any two records in CRM to one another.  For example, one account can be connected to another with the role of “distributor” so that you can see which customers are buying from which distributors.  The “Add Connection” button in CRM 2011 for Outlook can be used in a number of ways, here are two examples:</p>
<ol>
    <li>In large businesses, multiple different users may want to “own” the same contact so that it will sync with their Outlook.  Using the Add Connection button in combination with Outlook filters, you can connect yourself to a CRM contact that is owned by someone else, and have it automatically sync with your list of contacts in Outlook.</li>
    <li>Some businesses need to track emails with specific content into CRM, and be able to quickly find them.  This, for example, may include the final version of a proposal.  In this case you could: (1) add a connection to an email, (2) connect it to an opportunity, and (3) set the connection role to be “Proposal”.  Now the proposal is easy to fund under the opportunity even if you’ve regarded hundreds of emails to the opportunity.</li>
</ol>
<h1>Wrap Up</h1>
<p>Are you using CRM exclusively through the web – without any of the Outlook integration at all?  Then you’re missing out on the improved productivity, stronger collaboration (resulting in better customer experiences and improved sales win rates) and clearer management reporting (resulting in more proactive decision making and coaching) that can be achieved at no additional cost and with a nominal learning curve for end users.</p>
<p>In the previous articles in this series, we discussed which version of CRM makes the most sense for each organization, and we provided a recommended approach to training to ease users into the Outlook functionality.  For the previous two articles in this series see:</p>
<ul>
    <li><a title="Microsoft Dynamics CRM 2011 Web Client" rel="tag" target="_blank" href="http://blogs.c5insight.com/Home/tabid/40/entryid/222/4-Reasons-to-Use-the-Microsoft-CRM-2011-Web-Client.aspx">Part 1: 4 Reasons to Use the Microsoft CRM 2011 Web Client</a></li>
    <li><a title="Microsoft Dynamics CRM 2011 for Outlook" rel="tag" target="_blank" href="http://blogs.c5insight.com/Home/tabid/40/entryid/218/CRM-and-Outlook-6-Reasons-to-Use-CRM-for-Outlook.aspx">Part 2: 6 Reasons to Use Dynamics CRM 2011 for Outlook</a></li>
</ul>
<p> </p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/227/CRM-2011-and-Outlook-5-Functions-Everybody-Should-Use.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/227/CRM-2011-and-Outlook-5-Functions-Everybody-Should-Use.aspx</guid>
      <pubDate>Mon, 02 Jan 2012 19:27:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=227</trackback:ping>
    </item>
    <item>
      <title>Activity Feeds, CRM 2011 Online and Windows Phone</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/224/Activity-Feeds-CRM-2011-Online-and-Windows-Phone.aspx</link>
      <description><![CDATA[<h1>What are Activity Feeds?</h1>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Activity-Feeds-and-Windows-Phone_104FB/SNAGHTMLdc54abd.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="CRM 2011 Activity Feeds for Windows Phone - Password Changed Error" border="0" alt="Password Changed Error on CRM 2011 Activity Feeds for Windows Phone" align="left" width="240" height="139" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Activity-Feeds-and-Windows-Phone_104FB/SNAGHTMLdc54abd_thumb.png" /></a>Activity feeds are the newest social networking addition that Microsoft has made to Dynamics CRM 2011.  They work in a similar manner to Facebook, LinkedIN or other social networks.  Each record type (i.e. Leads, Accounts, Contacts, Opportunities, Users – and other record types that your administrator specifies) gets a “wall” as the first tab on the record form.  From the wall, users can “Follow” a record.  Whenever a significant action happens on that record (i.e. an opportunity is added, a phone call is completed, a field is updated), the record wall is automatically updated with information about the action that was taken.  Users can also post messages directly on record walls (i.e. “I know the CFO at this company, check with me before sending them a proposal.”).  The “what’s new” area consolidates all the wall postings for all of the records that a user is following.  Again, this is very similar to Facebook (I can follow another person, they can post on my wall or their wall, and I can see the postings on my main page for Facebook). </p>
<p>This is a fantastic way for individuals to keep up with what’s going on in CRM without having to get dozens of “email alerts” and without having to scour all of the records in CRM that someone is trying to keep up with.  Sales Managers use this to quickly see what their team is up to and to offer quick advice and tips to keep momentum in the pipeline.  In our organization, we have a Project entity with a wall – all participants on each project are setup to follow their projects so that they can get quick updates about their project.  Some of the benefits of activity feeds are not self-evident when you initially start to play around with them – spend some time with them (and, if you’re an administrator, take the time to figure out how to enable them for other entities and to setup workflows with custom automated activity feeds).</p>
<p><strong>Bottom line: if you’re not using Activity Feeds yet, you’re missing an important productivity accelerator!</strong></p>
<h1>Using Activity Feeds on your Windows Phone</h1>
<p>When Microsoft added activity feeds to CRM, they also added a Windows Phone application that gives you mobile access to your activity feeds.  This is a great way to quickly see the important happenings with your customers, prospects and other stakeholders even when you can’t be at your PC regularly.  It also includes the ability to find and subscribe to any records that have been enabled for activity feeds (which means you have read only access to some information about your Leads, Contacts, Accounts – and any other records that your organization uses with activity feeds).</p>
<p>To get the application, you’ll need a Windows Phone (Microsoft will likely roll it out on other devices in the future – but I recently upgraded from an iPhone to a Windows Phone and am very happy with it).  Next, you’ll need to visit the Marketplace on your phone and download “Dynamics CRM” (with the publisher being Microsoft Corporation); it’s a free app.  Start the app and run through the configuration (see below if you’re using CRM Online, or see your administrator if you’re hosted internally).  Each time you open the app in the future, it will download the latest updates for your wall.  Sweet!</p>
<h1>The Workaround for the CRM 2011 Online Bug with Activity Feeds</h1>
<p>If you’re using CRM 2011 Online, you’ll likely get a frustrating error (something like “password changed”) when you try to configure it the first time.  I expect Microsoft will fix this error in the near future, so try setting it up as you typically would first and, if you get the error, follow the instructions below for the fix.</p>
<ol>
    <li>Enter your CRM user name and password.</li>
    <li>Set “CRM Server” to “Custom” (not to “Microsoft Dynamics CRM Online”).</li>
    <li>For the Server URL, enter the URL that you were given by Microsoft for your instance of Microsoft CRM (it is typically something like: <a href="https://yourcomanyname.crm.dynamics.com">https://yourcomanyname.crm.dynamics.com</a>).</li>
    <li>Leave the Home Realm URL blank and click the next (or arrow) button.</li>
</ol>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/224/Activity-Feeds-CRM-2011-Online-and-Windows-Phone.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/224/Activity-Feeds-CRM-2011-Online-and-Windows-Phone.aspx</guid>
      <pubDate>Sat, 31 Dec 2011 00:29:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=224</trackback:ping>
    </item>
    <item>
      <title>4 Reasons to Use the Microsoft CRM 2011 Web Client</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/222/4-Reasons-to-Use-the-Microsoft-CRM-2011-Web-Client.aspx</link>
      <description><![CDATA[<p>When rolling out CRM for the first time (or upgrading to CRM 2011 from an earlier version), it will be important for you to decide which version of CRM you will initially train your users on.  It is fine to give your users the option to use either the Web Client or CRM for Outlook – but because of the differences between the two, it will be impractical (and overwhelming) to try to train your users on both versions at once.  So understanding the pros and cons of each approach is important.  Because of the outstanding integration Microsoft has developed between CRM and Outlook, using CRM for Outlook seems to be the obvious choice.  There are, however, four compelling reasons to go with the Web Client.</p>
<h1>The 4 Reasons to Use the Microsoft Dynamics CRM 2011 Web Client</h1>
<p>1. <u>A shorter learning curve</u>.  Most business leaders assume that, because CRM can work with Outlook, it will be easier to learn.  While this may be true for “Outlook Power Users”, it is not necessarily the case with everyday users.  When you decide to train users on CRM for Outlook, it creates a need to explain how CRM integrates with Outlook in some detail.  Users will need to grasp how CRM integrates with existing Outlook items (i.e. email, contacts, appointments) and how CRM also has it’s own items (i.e. leads, accounts, opportunities) that are also available within the Outlook interface.  What seems to create more confusion is that users now have two places to go, inside of Outlook, for what should appear to be the same information (i.e. CRM has contacts and Outlook has contacts; CRM has appointments and Outlook has appointments).  Because CRM and Outlook have different sets of records to track the same information this can be confusing for new users.  By starting with the Web Client, users can be eased into basic CRM concepts without having to learn the details of how data is synchronized between the applications.</p>
<p>With that said, it can still be a psychological barrier for users to feel like they are having to learn a “new application.”  So, although the learning curve by going with CRM for Outlook may be somewhat steeper, it may still be worthwhile to consider because users may be more open to trying to learn something that feels familiar.</p>
<p>2. <u>Two different applications</u>.  Many users keep Outlook open to their inbox and want to actively monitor their email throughout the day – they think of Outlook as mostly an email tool (and to a lesser extent a calendar and contact management tool).  When users are forced to access CRM within Outlook, they must then constantly toggle between the various modules of CRM and their Outlook inbox.  This can be somewhat mitigated by just opening the CRM for Outlook area in a separate window – but few users seem to remember to take this action.  Many users like the idea of have two applications that they can “ALT+TAB” between rather than having to constantly use the mouse to navigate between different parts of Outlook to do their jobs.</p>
<p>3. <u>CRM for Outlook and the Web Client work differently</u>.  Depending on how you look at it, this may be a reason to use CRM for Outlook or it may be a reason to use the Web Client.  CRM for Outlook leverages some great Outlook functionality (like categorizing, flagging for follow-up or conditionally formatting your CRM lists).  On the other hand, individuals that use this functionality tend to be Outlook power users.    In addition, these settings do not update any CRM data (so, for example, if a user categorized a contact using Outlook categories, this information will not be stored in CRM, making it useful only to the single user who set the category).  Plus, if you’ll click the image, you’ll notice that CRM for Outlook tends to make a lot of text look blurry (only joking, that’s just text that we were hiding in the image).  The Web Client, on the other hand, has some excellent functionality that is not available in CRM for Outlook.</p>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/X-Reasons-to-Use-the-CRM-Web-Client_10879/SNAGHTMLd8d95df.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Dynamics CRM 2011 for Web - Grid View" border="0" alt="Microsoft CRM 2011 for Web - Grid View with Shortcut Pullout" width="240" height="225" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/X-Reasons-to-Use-the-CRM-Web-Client_10879/SNAGHTMLd8d95df_thumb.png" /></a><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/X-Reasons-to-Use-the-CRM-Web-Client_10879/image_2.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 0px 100px 50px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="The Native Outlook Functionality in Dynamics CRM 2011 for Outlook" border="0" alt="Microsoft CRM 2011 for Outlook has Native Outlook Functionality" width="244" height="119" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/X-Reasons-to-Use-the-CRM-Web-Client_10879/image_thumb.png" /></a></p>
<p>4. <u>Outlook issues</u>.  Unfortunately, CRM for Outlook can sometimes produce unexpected bugs.  Microsoft has put a lot of work into resolving these issues, but there are still occasional bugs.  My experience is that organizations that have more security software and, in particular, security software that integrates with Outlook, often run into some of these bugs.  These can cause slowdowns, Outlook crashes and other issues.  So if you’re rolling out CRM for the first time, you may run into some of these issues.  I wouldn’t let this issue be the decision-maker – but if you’re leaning towards starting with the Web Client already, then this issue may push you over the edge.</p>
<h1>USING BOTH VERSIONS OF CRM</h1>
<p>As part of your long-term strategy, I recommend you provide users with the ability to use either version of CRM.  You will find that different users have different preferences, and allowing them to choose their tool will serve to get them more productive.  But when rolling out CRM for the first time (or when upgrading to CRM 2011) it will be important to decide on one version to start with.  My personal recommendation (which has changed over time) is that you start with the Web Client, then you train users on the basic Outlook integration (part 3 in this series) and, lastly, you provide training on how to use CRM for Outlook for those who are so inclined (or who will need to use CRM for Outlook offline while traveling).</p>
<h1>WHAT’S NEXT</h1>
<ul>
    <li>Even if you plan to use the Web Client to access CRM, there are many Outlook integration features that you will still want to take advantage of.  In the third and last part of this series, we will take a close look at those important (and often overlooked) features.</li>
    <li>At this time, you can only use the Web Client with Internet Explorer.  This means that Mac users cannot access CRM unless they install PC emulation on their machines.  In the spring of 2012, Microsoft will release a cross-browser version of CRM.  To pull this off, I expect that they may be making fairly significant changes to the user interface of the Web Client.  Stay tuned to learn more about this upcoming release and how it may further improve the CRM experience for your team.</li>
</ul>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/222/4-Reasons-to-Use-the-Microsoft-CRM-2011-Web-Client.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/222/4-Reasons-to-Use-the-Microsoft-CRM-2011-Web-Client.aspx</guid>
      <pubDate>Tue, 20 Dec 2011 00:35:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=222</trackback:ping>
    </item>
    <item>
      <title>CRM and Outlook: 6 Reasons to Use CRM for Outlook</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/218/CRM-and-Outlook-6-Reasons-to-Use-CRM-for-Outlook.aspx</link>
      <description><![CDATA[<p>There have always been two versions of Microsoft Dynamics CRM available to users: CRM for Outlook (also referred to as the "Outlook Client") and CRM for the Web (also called the "Web Client").  As you may expect, Microsoft CRM has always had better Outlook integration than any other CRM system on the market, but there were always those users that preferre to use the web version.  With all of the new features and Outlook integration that Microsoft has introduced in CRM 2011 for Outlook, the reasons for using CRM for Outlook are stronger than ever.  Let’s take a look at the top 6 reasons for using CRM for Outlook:</p>
<h3>(1) More Approachable</h3>
<p>One of the biggest barriers to success for any CRM project is getting end-users to adopt it – to embrace it enthusiastically and to begin to use it in their every day business practices.  Training users on a new system is one of the chief obstacles to adoption.  So, naturally , the most compelling reason to use CRM for Outlook is that it promises to reduce the learning curve for end-users. The thinking is that users are already comfortable using Outlook, so using something “inside” of Outlook that looks and feels like Outlook will be easier than using a new application.  Interestingly enough, however, my experience is that CRM for Outlook is not necessarily easier to learn (some say it’s actually a bit more difficult to learn, but let’s at least call it a “break even” from a speed to learn standpoint).  What is true, however, is that users are less intimidated by having to learn an Outlook add-on than they are about using an entirely new application.  So it is valid to say that using CRM for Outlook may improve adoption.</p>
<p>To be accurate, and as the heading for this item suggests, I would categorize this benefit as “more approachable” rather than a “shorter learning curve.”</p>
<h3>(2) Better Outlook Record Creation<a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/571fb7a39e70_ED7E/SNAGHTML1fd0354.png"><img style="background-image: none; border-right-width: 0px; margin: 0px 0px 0px 12px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="CRM for Outlook Settings" border="0" alt="CRM for Outlook - click to enlarge" align="right" width="244" height="132" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/571fb7a39e70_ED7E/SNAGHTML1fd0354_thumb.png" /></a></h3>
<p>CRM for Outlook can be set to automatically use default Outlook forms when creating certain kinds of records.  For example, when a user creates an appointment, the default Outlook appointment form can be used and it can automatically be set to regard the CRM record that the user was on when the appointment was created.  This can save time and reduce the learning curve.  This is particularly helpful with emails (creating emails in the Web version of CRM is clunky, to say the least) and appointments; but it is also available for tasks and contacts.  What’s more, when creating appointments from CRM (using the normal appointment form) you cannot sent out a meeting invitation (CRM relies on Outlook to do this).  But by using the standard appointment form in Outlook, you can send the reminder and, using CRM for Outlook, you can ensure that this is automatically synced with CRM too.</p>
<h3>(3) Full Outlook Capabilities</h3>
<p>Are some individuals on your team Outlook power users?  Are they using follow-up flags, categories, custom views and filters?  If so, the Outlook version of CRM will be a boon to them.  CRM for Outlook taps into all of these features, so if your users know how to use this functionality they will immediately know how to make use of these parts of CRM for Outlook.  Using these features, users can better prioritize their work, highlight records that are experiencing issues (i.e. past due payments) and schedule follow-ups. If your users, on the other hand, have not already developed excellent Outlook skills, then these features will likely be lost on them.</p>
<hr />
<p><img title="CRM for Outlook Interactive Overview" border="0" alt="Click to open an interactive overview of CRM for Outlook" align="left" width="244" height="124" style="background-image: none; border-bottom-width: 0px; border-bottom-style: initial; border-bottom-color: initial; border-left-width: 0px; border-left-style: initial; border-left-color: initial; margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-top-style: initial; border-top-color: initial; border-right-width: 0px; border-right-style: initial; border-right-color: initial; padding-top: 0px; " src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/571fb7a39e70_ED7E/image_3.png" /></p>
<p>Click the image to the left for an interactive overview of the CRM for Outlook features outlined in #3, #4 and #5. Hover over the various portions of the form for pop-up information.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<hr />
<h3>(4) Views, Filters and the Preview Pane</h3>
<p>Views in CRM for Outlook work a bit differently than they do in the web version.  When you pin a view in CRM for Outlook, it will refresh in nearly “real time” as changes are made to the underlying data by other users.  Pinned views will also display a much larger number of records per page (up to 5,000) – so you can scroll through records a bit more quickly than you can on the web version. On the other hand, very large lists can slow down performance (so be careful how you configure views to work with Outlook if you have very large lists).</p>
<p>CRM 2011 provides powerful filtering capabilities and they are available in both Outlook and the Web versions.  However, the Outlook version can be a bit more intuitive to users (most notably to those users who are already familiar with filtering other Outlook lists, such as tasks or contacts).</p>
<p>The Preview Pane is another feature of CRM for Outlook that is not available in the web version.  When the preview pane is active, you can see a read-only preview of whatever record you are on in a list without having to open the form.  Each user can configure the preview pane for their unique needs including moving sections or removing them from the pane completely.</p>
<h3>(5) Social Integration</h3>
<p>Social collaboration is an increasingly important part of managing relationships with individuals inside and outside of your organization. Microsoft promises to continue to add social capabilities to Dynamics CRM and part of their plan is to leverage the social capabilities already built into tools like Microsoft Outlook. What’s already available in Outlook 2003, 2007 and 2010 (through a free download from Microsoft) is the People Pane and, within that, the Social Connector. The People Pane shows the Outlook activities associated with your contacts, and the Social Connector shows social interactions (such as status updates) made by your contacts on social platforms such as LinkedIN. You can learn more about the the Social Connector <a title="CRM for Outlook - Social Connector" target="_blank" href="http://office.microsoft.com/en-us/outlook-help/introduction-to-the-outlook-social-connector-HA010361857.aspx">here</a>. When using CRM for Outlook, you can view the People Pane and Social Connector while viewing your contacts or leads in CRM – this is a convenient and powerful way to see the latest interactions with an individual before you contact them.</p>
<h3>(6) Using CRM Offline</h3>
<p>This last benefit may be the most important of them all.  Microsoft has included the ability to take CRM for Outlook “offline” so that you can access and update your data even when you are not connected to the Internet - much as you can view and respond to emails in Outlook while offline.  To use CRM offline, users will need to use it through CRM for Outlook.  So, if your users are going to need to use CRM offline, they’re going to need to learn to use CRM for Outlook one way or another.  If you train them on CRM for Outlook, they will automatically know how to use CRM offline as well.</p>
<p> </p>
<p>So with all of those great reasons to use CRM for Outlook, why should anyone choose to use CRM for the Web?  Well there are actually some very compelling reasons to use CRM on the Web.  Stay tuned for an upcoming blog post outlining some of those reasons.</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/218/CRM-and-Outlook-6-Reasons-to-Use-CRM-for-Outlook.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/218/CRM-and-Outlook-6-Reasons-to-Use-CRM-for-Outlook.aspx</guid>
      <pubDate>Mon, 28 Nov 2011 22:30:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=218</trackback:ping>
    </item>
    <item>
      <title>How Management Undermines the Successful Implementation of a CRM Solution (Part 1)</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/197/How-Management-Undermines-the-Successful-Implementation-of-a-CRM-Solution-Part-1.aspx</link>
      <description><![CDATA[<p>We have all heard, and many of us experienced, that many CRM solutions do not provide the value that those investing in them expected. There are multiple reasons for this. Over the coming weeks, I’ll share some of the often overlooked reasons and hopefully provide some insight into how to avoid these traps. I’ve lived through (barely surviving!!) nine different CRM implementations, during my last 15 years in sales and sales management. While my current role is tied to helping others avoid these mistakes, everything in this series is taken directly from my observances from “the inside”, while I worked for the company implementing the CRM solution.</p>
<p>First I will re-state the most over-used cliché’ in IT. <b>“Technology is never the problem. Poor requirements are always the problem”. </b>I’ve said that myself many times, but in reflection, <b>it just isn’t true.</b></p>
<p>Developing extraordinary requirements that are followed precisely during development of a system, in no way guarantees a successful solution. People have to use the system!! Sounds obvious, right? You knew that. Everyone knows that. That’s why we spend endless hours debating “the carrot vs. the stick” approaches to getting the sales reps to use the CRM system. But…. (insert drumroll here) How much time and effort is spent debating how we will get management to use the system? Below is a real world scenario that happens daily in organizations of all sizes. I’ve personally lived through it at three different firms. The consistency of how things played out at all three firms is almost eerie. The steps are in chronological order as the typically occur.</p>
<p>1. Management of the firm decides a CRM solution is needed, so they can know what is going on in the business at any point in time. (You’ve heard it. I’ve heard it. That’s what they always say!)</p>
<p>2. The firm goes through the process of selecting, designing and implementing a CRM system. Let’s assume for this discussion that they do an excellent job.</p>
<p>3. The next several months the management continually requests updates on:</p>
<ul>
    <li>Whether or not the sales people are “using that system we spent so much money on?</li>
    <li>Who’s not using the system? This question is followed by an emphatic “I want names!”</li>
    <li>Are all the opportunities and customers entered into the system?</li>
    <li>Are we going to meet the deadline I set for having all of the information in the system up to date? "I just had someone check and there is one opportunity that I know closed yesterday and it isn’t shown as closed in the system", they say. </li>
</ul>
<p>4. Sales feels the pressure and begins doing a pretty good job of using the system.</p>
<p>5. Many sales reps and sales managers begin seeing the power of the tool and begin using it beyond the minimum requirements management has put forward.</p>
<p>6. Everything is settling in fine. The system is really looking like a success.</p>
<p>7. Management sends out an urgent email to all sales employees stating, “I need your forecast by the end of the day. Please fill out the attached spreadsheet and have it back to me by 4:30. This is not optional”. (The subject line of this email is almost universally “FIREDRILL!!!”)</p>
<p>8. Sales people and sales managers frantically scramble to get their information out of the CRM system and retype it all into the spreadsheet provided in the email.</p>
<p>9. Approximately 24 hours pass.</p>
<p>10. Sales managers and sales reps gather in small groups in the hall, or chat on the phone and the comments are pretty consistent:</p>
<ul>
    <li>“Everything they asked for is in CRM. Why don’t they go look at it”</li>
    <li>“They beat us over the head with that CRM system and THEY don’t even use it!”</li>
    <li>“They told us the main reason we should use the new system was so “we would never have to have firedrills like that again. I actually believed them!”</li>
    <li>“Why should I take the time to enter all my information in the system if no one is going to look at it”</li>
    <li>“Now you understand why I was the only one who held out on using this CRM stuff. I’ve seen this a hundred times before”</li>
</ul>
<p>11. Over the next month or two, steps 7 through 10 repeat three or four times.</p>
<p>12. Usage of the system starts to diminish.</p>
<p>13. Sales managers start going back to “the old spreadsheet” as a way to get the forecast from their team. It saves them time because their boss will want to see it that way. They have to either choose this option or tell their team to keep using CRM and take the brunt of manually putting 10 different reps’ forecasts into a spreadsheet that doesn’t even have the same fields as CRM.</p>
<p>14. Another 6-12 months pass</p>
<p>15. A new sales rep joins the firm and asks his manager, “what do we use for CRM here”. The sales manager responds, “I’ll send you the spreadsheet”.</p>
<p>16. <span style="color: #ff0000">CRM dies.</span></p>
<p>And it wasn’t because of poor requirements <strong>OR</strong> bad technology.</p>
<p>The moral to the story: Sales reps adopting the system and entering all of their information is not synonymous with successful adoption of a  CRM solution. Someone needs to use the information that is there!</p>
<p>P.S. It is very important to note that I have used the term “management” as the major culprit here and not the term “sales management”. That was intentional.</p>]]></description>
      <dc:creator>John Freeze</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/197/How-Management-Undermines-the-Successful-Implementation-of-a-CRM-Solution-Part-1.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/197/How-Management-Undermines-the-Successful-Implementation-of-a-CRM-Solution-Part-1.aspx</guid>
      <pubDate>Wed, 06 Jul 2011 19:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=197</trackback:ping>
    </item>
    <item>
      <title>Collapse and Expand: Working with Tabs in CRM 2011</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/184/Collapse-and-Expand-Working-with-Tabs-in-CRM-2011.aspx</link>
      <description><![CDATA[<p><a title="Collapse This Tab - Remember Tab State in CRM 2011" rel="tag" target="_blank" href="http://dynamics.pinpoint.microsoft.com/en-us/applications/remember-my-tabs-4295032309"><img style="margin: 0px 16px 0px 0px; display: inline; float: left" title="Remember Collapsed or Expanded Tab in CRM 2011" alt="Remember Collapse This Tab in CRM 2011" align="left" src="http://www.c5insight.com/Portals/0/misc%20images%20and%20flash/rmt.png" /></a></p>
<p>CRM 2011 forms include “tabs” to help organize information.  If you are a user of previous versions of CRM you know that tabs used to be presented across the top of a form.  In CRM 2011 tabs are now presented vertically.  This has several advantages:</p>
<ol>
    <li>With your forms organized vertically, users can now scroll through an entire form without having to use the mouse to switch to a different tab. This may seem like a small thing – but when a user spends a significant portion of their day doing data entry, this can be a real time saver.<br />
     </li>
    <li>Users can still rapidly navigate to a tab by using the Quick Tab navigation in the navigation menu on the left of a form (see the nearby image).<br />
     </li>
    <li>Tabs can be collapsed or expanded – making it easier for users to see just the data that they want to see on a form. This tab “state” (collapsed or expanded) can be changed by the user by clicking the small triangle to the left of a tab name.</li>
</ol>
<p>The default tab state is set when designing a form.  So, whenever a form is initially displayed, each tab will be collapsed or expanded based upon the settings for that particular form.  This tab state is the same for all users of the form and is always reset when a user opens a form.  For example, if a user opens an account form and collapses a tab called “Contacts” and then clicks the Save & Close button, the state of the tab is not remembered. When a user opens the form again, the tab returns to the same state it was in the last time the form was opened.</p>
<p>So, by default, tabs are helpful for setting default collapsed/expanded settings for a form; and they’re useful for a user to collapse/expand while looking at a particular form.  They are not, however, unique to each user.</p>
<h1>Remembering Tab State Settings by User</h1>
<p>So, is it possible to remember the state of each tab on each form for each individual user?  In a word: yup!</p>
<p>We have published an app on the Microsoft Dynamics Marketplace that allows you to do just that.  You can <a title="Remember My Tabs - Remember Tab State Settings" target="_blank" href="http://dynamics.pinpoint.microsoft.com/en-us/applications/remember-my-tabs-4295032309">click here</a> to learn more about the app and purchase a copy.</p>
<h1>Buy the Book, Get the App</h1>
<p>Looking for another way to get the app?  Well, if you’re reading this post before June 15, 2011, you’re in luck.  When you buy a copy of the Dynamics CRM Administration Bible, you are entitled to a free organization license to Remember My Tabs.  To learn more about this offer and purchase a copy of the book, visit <a href="http://www.dynamicscrmbible.com">www.dynamicscrmbible.com</a>.</p>
<h1>C5 Insight Clients</h1>
<p>For clients of C5 Insight, the Remember My Tabs is a part of our standard launch toolkit – so if we are consulting with you to implement Dynamics CRM 2011, the application will be installed for you.</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/184/Collapse-and-Expand-Working-with-Tabs-in-CRM-2011.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/184/Collapse-and-Expand-Working-with-Tabs-in-CRM-2011.aspx</guid>
      <pubDate>Tue, 24 May 2011 20:50:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=184</trackback:ping>
    </item>
    <item>
      <title>Join us at Decisions Spring 2011 (Virtual Conference)</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/179/Join-us-at-Decisions-Spring-2011-Virtual-Conference.aspx</link>
      <description><![CDATA[<p>I'll be presenting a session for CRM administrators at the upcoming Decisions Spring 2011 virtual conference on June 17, hosted by MSDynamicsWorld.com: <span class="italic" sizcache="35" sizset="15"><a title="What CRM Administrators Need to Know About CRM 2011" target="_blank" jquery1304433562836="17" href="http://decisions.msdynamicsworld.com/session/decisions-event-how-about-if-i-do-session-what-crm-administrators-need-know-about-crm-2011">What CRM Administrators Need to Know About CRM 2011</a>. I'll cover the most important technical considerations that administrators need to be familiar with when considering implementing or upgrading to CRM 2011.</span></p>
<p style="text-align: center"><span class="italic" sizcache="35" sizset="15"><a target="_blank" href="https://presentations.inxpo.com/Shows/MSDynamics/06_11/Registration/Decisions06_11RegistrationPage.html?AffiliateKey=13512&AffiliateData=BLOG"><img alt="MSDynamicsWorld.com Decisions Spring 2011" width="533" height="172" src="http://blogs.c5insight.com/Portals/0/BlogImages/Matt/spring_template_header_01.jpg" /></a></span></p>
<p><span class="italic" sizcache="35" sizset="15">MSDynamicsWorld.com has been hosting these semiannual events for a couple of years now, and they are tremendous, free resources for learning and networking. The conference kicks off on Tuesday, June 14, with sessions dedicated to Dynamics AX. The 15th is focused on GP, the 16th on NAV, and the 17th on CRM.</span></p>
<p><span class="italic" sizcache="35" sizset="15">You'll have the opportunity to ask questions of the presenters via live chat, and interact with other attendees and experts in a virtual networking lounge.</span></p>
<p><span class="italic" sizcache="35" sizset="15">To register: <span style="color: black; font-size: 10pt"><a target="_blank" href="https://presentations.inxpo.com/Shows/MSDynamics/06_11/Registration/Decisions06_11RegistrationPage.html?AffiliateKey=13512&AffiliateData=BLOG"><font color="#0000ff">https://presentations.inxpo.com/Shows/MSDynamics/06_11/Registration/Decisions06_11RegistrationPage.html?AffiliateKey=13512&AffiliateData=BLOG</font></a></span></span></p>]]></description>
      <dc:creator>Matt Wittemann</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/179/Join-us-at-Decisions-Spring-2011-Virtual-Conference.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/179/Join-us-at-Decisions-Spring-2011-Virtual-Conference.aspx</guid>
      <pubDate>Tue, 03 May 2011 19:36:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=179</trackback:ping>
    </item>
    <item>
      <title>Visualizations: How to Create Charts and Dashboards in Dynamics CRM 2011</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/164/Visualizations-How-to-Create-Charts-and-Dashboards-in-Dynamics-CRM-2011.aspx</link>
      <description><![CDATA[<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Visualizations-How-to-Create-Charts-and-_C250/image4.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 15px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="CRM 2011 Chart - Cases by Satisfaction Rating" border="0" alt="CRM 2011 Chart - Cases by Satisfaction Rating" align="left" width="82" height="130" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Visualizations-How-to-Create-Charts-and-_C250/image4_thumb.png" /></a>One of Microsoft’s goals with Dynamics CRM 2011 was to deliver intelligent experiences across the enterprise. Some of the most important items that Microsoft included in the CRM 2011 toolbox for that are charts and dashboards – collectively referred to as visualizations. Visualizations not only provide a way to rapidly boil a lot of data down into a chart or graph; they also allow managers and users drill down on data and move from analysis to action very quickly. Visualizations can be created at the “system” level (for distribution across your enterprise), and users can create them at the “personal” level (for their own individual use, or to share selectively with colleagues).  In this entry, I’ll take a look at how to create personal Charts and Dashboards in 5 easy steps.</p>
<p> </p>
<h1>First a Few Assumptions</h1>
<p>When creating personal charts and dashboards, you should generally have a pretty strong understanding of using views and filters.  In addition, if you create a particularly useful dashboard, you may want to share it with your peers – so understanding how to share items in CRM 2011 is also a good idea.  A colleague of mine has promised to blog on both of those topics soon, so if you’re not yet comfortable with those concepts, make sure you <a target="_blank" href="http://www.c5insight.com/follow">follow us</a> to keep up with the latest posts on those topics.</p>
<h1>Would You Like Your Blog with a Side Dish of Video?</h1>
<p>I covered this same topic in a recent video posting.  If you’d like to get the overview in 4 minutes (or less) then check out the video.  Or you can read on to have step-by-step instructions.</p>
<p><iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/Iz_lARcO-VA" frameborder="0" allowfullscreen=""></iframe></p>
<div style="width:448px;clear:both;font-size:.8em"> </div>
<h1>How To: CRM 2011 Charts in 5 Steps</h1>
<p>Creating a personal chart in Dynamics CRM has been designed to be a simple process. After you’ve created you first chart, you’ll find that creating charts feels familiar and natural. Here are the steps to take:</p>
<ol>
    <li>First, call a high paid CRM consultant…</li>
</ol>
<p>Only joking.</p>
<p>First of all, you’ll want to make sure that you’re on the list that you want to create a chart for. For example, if you want to create a pie chart of closed cases broken out by customer satisfaction, then start by navigating to the list of cases. Next, make sure that charts are currently displayed for the cases. To do this, click on the Charts tab in the ribbon menu, click on the Chart Pane button and choose either Right or Top.</p>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Visualizations-How-to-Create-Charts-and-_C250/image_2.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Charts Menu in Dynamics CRM 2011" border="0" alt="Charts Menu in Dynamics CRM 2011" width="240" height="84" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Visualizations-How-to-Create-Charts-and-_C250/image_thumb.png" /></a></p>
<p>And here, at last, are the 5 steps:</p>
<ol>
    <li>Click the Charts tab in the ribbon menu.</li>
    <li>Click the New Chart button.</li>
    <li>Select the type of chart that you want (such as a pie chart).</li>
    <li>Fill out the fields in the chart area to tell CRM how to construct the chart.</li>
    <li>Once your chart looks the way that you want, click Save and Close in the Ribbon menu.</li>
</ol>
<p>Hover over the interactive image, below, for step-by-step instructions.</p>
<p> <embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="/Portals/0/BlogImages/Geoff/Interactive_Chart_Builder_Dynamics_CRM_2011.swf" width="606" height="757" play="true" loop="true" menu="true"></embed></p>
<p>Just like that, you’ve created a chart that appears “in line” next to your list! Tell your boss you slaved away all night creating that chart and ask for a day off next week.</p>
<h1>How To: CRM 2011 Dashboards in 5 Steps</h1>
<p>Okay you got me, it doesn’t EXACTLY take 5 steps to create a dashboard. To create a dashboard you have to create a chart.  And to create a chart you need to go to the list and make charts visible next to it. And you might want to create a view to use for your chart. But c’mon, would you have really read a blog titled “how to create a dashboard in 73 simple steps?” BUT, assuming that you’ve come this far with me, then there really are only about 5 more steps left to put your newly created chart inside of a personal dashboard. </p>
<ol>
    <li>Navigate to the view of Dashboards and select a personal dashboard that you will modify. If you don’t have any personal dashboards, then find a system dashboard that you like and click the “Save As” button in the ribbon menu – now you can save it under a different name and it becomes a personal dashboard.</li>
    <li>Click the Edit button in the ribbon menu.</li>
    <li>In the Insert area of the ribbon menu, click the Chart button.</li>
    <li>Choose the record type, view and chart that you want to insert and click the OK button.</li>
    <li>Using drag-and-drop, move the chart to the desired location in the dashboard, then click save and close (clicking save and close is actually step #6, but for some unknown reason I wanted to keep the number of steps to 5 for both charts and dashboards).</li>
</ol>
<p>Once you’ve done this a time or two, you should be able to create new charts and modify your dashboards in just a few minutes.</p>
<h1>Pimp My Dashboards</h1>
<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Visualizations-How-to-Create-Charts-and-_C250/image_6.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" title="Dashboard Including Map Charts Grid Iframe Web Resource Custom XML in Dynamics CRM 2011" border="0" alt="Dashboard Including Map Charts Grid Iframe Web Resource Custom XML in Dynamics CRM 2011" align="right" width="244" height="184" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/Windows-Live-Writer/Visualizations-How-to-Create-Charts-and-_C250/image_thumb_2.png" /></a>What else can you do with charts and dashboards?  Plenty. It’s very easy to add a grid to a dashboard, for example. You can also edit the “code” behind charts to customize them even further. And, dashboards include custom elements called Iframes and Web Resources. Using these more technical tools, you can create highly customized dashboards that deliver tailored intelligence to users across your enterprise.  The nearby illustration is just one example of what you can achieve when you start to pimp out your dashboards.</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/164/Visualizations-How-to-Create-Charts-and-Dashboards-in-Dynamics-CRM-2011.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/164/Visualizations-How-to-Create-Charts-and-Dashboards-in-Dynamics-CRM-2011.aspx</guid>
      <pubDate>Mon, 14 Mar 2011 20:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=164</trackback:ping>
    </item>
    <item>
      <title>7 Steps to Successful Client Scorecards</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/144/How-to-Create-Scorecards-in-7-Steps.aspx</link>
      <description><![CDATA[<p><a target="_blank" href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/ClientScoring_FB4C/image_4.png"><img height="122" width="181" border="0" align="left" title="image" alt="Client scorecard salesforce.com dynamics crm" style="border-width: 0px; margin: 5px 10px 5px 0px; display: inline;" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/ClientScoring_FB4C/image_thumb_1.png" /></a></p>
<p>Which clients should we focus more time on? Are there any clients that  we should consider firing? How can we find new clients that look like  our best current clients? Do we have clients that should be more  profitable?</p>
<p>These are the questions that many B2B firms are asking themselves as they think through how they should prioritize their client list.  So read on for some of the how’s and why’s of establishing a client scoring system.</p>
<p> </p>
<p> </p>
<h2>What is a Client Scorecard?</h2>
<p>Client scoring is a way to develop a consistent client scorecard (or client report card) for every client that a business serves.  The scorecard serves a number of purposes, including:</p>
<ul>
    <li>Identifying best customers, and providing them with a higher level of service</li>
    <li>Identifying worst customers and, in some cases, discontinuing service to them</li>
    <li>Finding past customers who have a great score but are now inactive, and re-activating them</li>
    <li>Identifying prospects that are similar to your top customers for acquisition efforts</li>
    <li>Identifying lost high value customers, and determining why you lost them and how you can improve your performance</li>
</ul>
<p>Every sales and marketing manager will tell you that it costs many times more to acquire a new customer than it does to retain or upsell an existing one.  Client scorecards are all about leveraging your hardest won and greatest asset – your current customer base!</p>
<blockquote>
<p align="right"><em><font color="#004080">“It is 5-10 times more expensive to gain a new customer than it is to retain an existing one.”  <br />
-Gartner Group</font></em></p>
</blockquote>
<p>But sometimes the best way to define something is to define what it is <u>not</u>... </p>
<ul>
    <li>A client scorecard is <u>not</u> the same thing as lead scoring.  Lead scoring focuses on the likelihood of converting a non-customer into a customer, whereas client scoring focuses on the value of existing customers.  Maybe we’ll talk about lead scoring in a future post.</li>
    <li>A client scorecard is <u>not</u> limited strictly to active customers.  Client scorecards can include both inactive customers (in fact, this can be one of the most important segments for evaluating client scorecards) and prospective customers.  In the case of prospective customers, your scorecard may be more focused on (dis)qualifying prospective customers that are showing the signs of becoming the kinds of customers you do not want in your portfolio.</li>
    <li>A client scorecard is <u>not</u> the same thing as client profitability. Profitability is an important factor, but profitability may not tell the whole story about the value that a client contributes to your business.</li>
    <li>A client scorecard is <u>not</u> limited to objective data.  There are many subjective drivers of business value that should influence your scorecard.</li>
    <li>A client scorecard is <u>not</u> a “score.” Although one output of a scorecard may be a single score, keep in mind that there are many components of a scorecard that should be evaluated – a high score or a low score do not tell the whole story about a client relationship.  For example, many of the data points for new clients (or even prospective clients) may be unknown – resulting in a lower score until these items can be evaluated.</li>
</ul>
<h2>7 Steps to Successful Client Scorecards</h2>
<p>Like all projects that are worth investing in, a successful client scorecard project requires far more than the CEO taking a Saturday morning to write down the attributes of a good client – and handing those off to IT to add to a CRM system.  Sadly, most businesses tend to take that approach – and end up wasting time, making their CRM systems unnecessarily complex and generating scorecards that no one uses.</p>
<h3>1. Get Your Team Involved</h3>
<p>The people who work with your clients every day already have a good idea of what makes and good client and what makes a  bad client.  The agenda for the session is pretty straight forward:</p>
<ul>
    <li>Put your clients into lists of good and bad – focusing on longer-term clients so you have a good understanding of how the relationship has evolved.</li>
    <li>Discuss what the characteristics of the clients in each group are – the goal here is to define what makes one group different from the other (most businesses are surprised at some of the findings at this stage)</li>
    <li>Determine at what stage of the relationship this information can be known and which role (or which system) will capture it<a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/ClientScoring_FB4C/image_2.png"><img height="144" width="244" border="0" align="right" title="image" alt="HelixPLAN Facilitated session client scorecard planning" style="border-width: 0px; display: inline; margin-left: 0px; margin-right: 0px;" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/ClientScoring_FB4C/image_thumb.png" /></a></li>
</ul>
<p>For this meeting, you should use an outside facilitator and a proven methodology.  The reality is that most meetings of this type are ineffective because as soon as one person shares an idea, the rest of the group begins to evaluate the idea and respond to it – creativity is stifled, politics come into play and the results from the session are weak. </p>
<p>You will want to get beyond the basics (i.e. profitable customers are all good; unprofitable customers are all bad) and get to some of the leading indicators of profitability; you will also want to recognize that some “hidden variables” can make even your most profitable customers undesirable (i.e. requiring an extremely high level of service, a brand that may damage your own reputation, an approach to your team that is demoralizing).  Most businesses also need to recognize that profitability can be an elusive calculation, so subjective variables can play an important role.</p>
<h3>2. Evaluate Public and Private Data</h3>
<p>You should do some analysis of both internally available data (such as from your accounting or CRM systems) and external data (such as data available from D&B) to see if any of this plays a role in differentiating your top customers from your bottom customers.  For example, you may find that certain industries tend to outperform others; or you may find that you tend to do better with private or public companies.  This can be a very important source of scorecard data because it doesn’t require your team to do extra data entry to create the scorecard.  For larger enterprises, predictive modeling methods can be used as part of this evaluation.</p>
<h3>3. Talk to Your Clients</h3>
<p>Conduct interviews or surveys with your customer list.  They are likely to tell you things about themselves that your own internal team did not identify.  This can be an important source of information that helps you qualify prospects or new customers.  This early qualification can help you focus your resources on the prospects that are most likely to convert into long-term, mutually-beneficial relationships.</p>
<h3>4. Define the Criteria</h3>
<p>Now comes the hard part, you need to winnow the list of criteria down to a minimal amount of new data that your team will need to begin to track.  The more information that you can get from internal or external systems (see item #2, above), the better.  But you should expect to require your team to capture some additional information on their own.  Remember that a successful scorecard system incorporates both objective information (i.e. hard numbers that you are likely to be able to pull from other systems( and subjective information (i.e. opinions of team members that will need to be keyed into the system).  Ideally, you will limit the items that your team needs to key in to a list of 5-10 items.</p>
<h3>5. Capture the Data</h3>
<p>Now comes the hardest part – you have to actually start capturing the data. </p>
<p>This is where most scorecard projects fall apart.  Either they require too much manual data entry that is time consuming for employees that already have enough to do.  Or they require a herculean effort to integrate data from disparate internal systems.  Or both.  There may be no way to completely go around these issues, but here are a few suggestions:</p>
<ul>
    <li><u>Keep it Simple</u>: The temptation is to jump right in and develop a “dream scorecard” in the first stab at this type of project.  Keeping the scope of the project simple will save you a tremendous amount of time and frustration.</li>
    <li><u>Understand the Scope</u>: Even if you can’t keep the project simple, it is important to fully understand the scope of the project so you will know what you are getting into.  Most projects of this type fail simply because the organization loses interest in making it a priority long before it is ever completed.</li>
    <li><u>Piggyback on Other Projects</u>: In large enterprises, there are almost always multiple projects going on with a goal of unifying information across different systems.  Rather than starting a project dedicated to the scorecard, see if you can piggyback on an existing project that may already be gathering much of the same information.<a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/ClientScoring_FB4C/image_6.png"><img height="133" width="167" border="0" align="right" title="image" alt="business process automation for client scorecard calculations using workflows" style="border-width: 0px; margin: 5px 0px; display: inline;" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/ClientScoring_FB4C/image_thumb_2.png" /></a></li>
    <li><u>Automate What you Can</u>: The more effort you can keep off the backs of the individuals who will have to use the scorecard, the better.  Automation can come in two flavors: (1) automate capturing scorecard metrics that are already available elsewhere – so no one has to re-enter data; (2) provide process mapping and automation for data that needs to be gathered manually – this can include an annual process, updates made at the conclusion of each project, etc.   Modern BPA (business process automation) tools built into CRM and other tools can handle much of the heavy lifting in this area.</li>
    <li><u>Provide Ongoing Training and Support</u>: I cannot overemphasize this point.  It never ceases to amaze me how many businesses put a tremendous amount of time into the IT part of projects like this – and almost no time in getting their team up to speed on how they need to participate.</li>
</ul>
<h3>6. Collaborate</h3>
<p>“If you build it, they will come,” may work in the movies, but not when it comes to rolling out client scorecards. </p>
<p>You will need to ensure that the salient information from the scorecards is distributed to the individuals who will need it.  And you will need to ensure that referencing the scorecard becomes a part of your corporate culture.  This means that scorecard data needs to appear on your internal portals, dashboards and on many of your client related reports.  Discussing the scorecard needs to become part of the every day conversation in your sales, service, accounting and customer management conversations.</p>
<h3>7. Train, Support, Improve, Repeat</h3>
<p>Your scorecard project will require plenty of care and nurturing.  You will need to constantly monitor the business process you established for creating scorecards to ensure that the team is following it.  You will need to work with the team to ensure that the scorecard management process is not too time consuming (this is particularly true during the early days after the initial launch).  In addition, the criteria for your scorecards will need to be reviewed and updated periodically as the economy, your customers, your competitors and your understanding of the marketplace evolve.</p>
<h2>Next Steps</h2>
<p>Developing a client scorecard does not have to consume a tremendous amount of time.  With proper planning and session facilitation a mid-sized business can launch client scorecards in just a few months; larger enterprises may take longer.  If you’re using modern collaboration, dashboard and CRM tools, you can significantly simplify the process of maintaining scorecards for your team.  Take the first step of facilitating a session with your team to get started.</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/144/How-to-Create-Scorecards-in-7-Steps.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/144/How-to-Create-Scorecards-in-7-Steps.aspx</guid>
      <pubDate>Wed, 23 Feb 2011 23:30:00 GMT</pubDate>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=144</trackback:ping>
    </item>
    <item>
      <title>Get Social: More Options for Following Us</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/15/default.aspx">Technical</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/151/Get-Social-More-Options-to-Learn-About-Dynamics-CRM-Microsoft-SharePoint-and-Salesforce-com.aspx</link>
      <description><![CDATA[<h2><strong>Some Background</strong></h2>
<p>At the beginning of 2010, our two companies (StreamLogic and Customer Connect) merged to become C5 Insight. One company focused on Microsoft SharePoint and cloud application development.  The other company focused on CRM (Dynamics CRM and Salesforce.com) and sales and marketing strategy. </p>
<p>When we merged our blogs, we started to receive feedback that we were providing an overwhelming amount of information.  Our blogs included high level strategic and best practice information, as well as detailed technical tips for developers and administrators.  They also included information on all of the different solutions that we support.  So most of those who were following us found that they were getting some information that wasn’t useful for them.  In addition, options for following us were limited to email or RSS feeds. </p>
<p>Something had to change!</p>
<h2><strong>The Social Channels</strong></h2>
<p><a href="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/GetSocialMoreOptionsforFollowingUs_8958/image_4.png"><img height="54" width="244" border="0" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/GetSocialMoreOptionsforFollowingUs_8958/image_thumb_1.png" alt="image" title="image" style="border-width: 0px; display: inline;" /></a></p>
<p>So we decided to take a page out of our own Social CRM playbook (it was a typical case of, “the cobbler’s children are the ones with no shoes.”)  At a later date, we’ll share details about Social CRM and our specific strategy as a separate blog.  For now, suffice it to say that:</p>
<ul>
    <li>We took feeds from our: Blog Site, On Demand Video Site and Live Event Site.</li>
    <li>We then parsed them out by role and solution type.</li>
    <li>And we made them available across the most popular social channels.</li>
</ul>
<p>Voila – a lot of blood, sweat and tears for us delivered a much more relevant way to consume the information that you want.  And it’s all free to you (we guarantee that you’ll get your money’s worth).</p>
<p>If you want to learn a bit more about Social CRM, check out <a href="http://tube.c5insight.com/Home/WatchVideo/TabId/66/VideoId/52/Social-Media-And-Dynamics-CRM.aspx" target="_blank">this video</a>.</p>
<h2><strong>Current C5 Followers</strong></h2>
<p>If you’re currently following one of the older C5 Insight feeds, we encourage you to look at the new options.  You will find that you can filter what you’re receiving to just the information that is most relevant to you.  Plus, some of our old channels will soon be discontinued – so take the time to sign up for one of the new ones.</p>
<p><a href="http://www.c5insight.com/follow" target="_blank">www.c5insight.com/follow</a> </p>
<h2><strong>The Free Giveaway</strong></h2>
<p><a href="http://www.amazon.com/Microsoft-Dynamics-2011-Administration-Bible/dp/0470568143/ref=sr_1_3?ie=UTF8&qid=1297390346&sr=8-3" target="_blank"><img height="240" width="240" border="0" align="right" src="http://blogs.c5insight.com/Portals/0/SunBlogNuke/1/WindowsLiveWriter/GetSocialMoreOptionsforFollowingUs_8958/Dynamics_CRM_2011_Administrator_Book_Training_3.jpg" alt="Dynamics_CRM_2011_Administrator_Book_Training" title="Dynamics_CRM_2011_Administrator_Book_Training" style="border-width: 0px; display: inline; margin-left: 0px; margin-right: 0px;" /></a> Another exciting bit of news at C5 Insight – we have just completed authoring a book, “Microsoft Dynamics CRM 2011 Administration Bible.”  There’s even a special appendix on advanced SharePoint integration.  To celebrate the book and our new social channels, we’re giving away 5 free copies of the book. </p>
<p>Where do you sign up?  I’m glad you asked.  We’re going to give away the 5 free copies by randomly drawing from a list of all of our followers once we reach 200 new followers across all of our social channels (or on March 21, 2011 – whichever comes first).  So be sure to sign up to follow us by March 21!</p>
<p>Or, if you’re in a hurry to get the book, go ahead and click the image to order it from Amazon.com.  If we draw your name as a winner, you can get a signed copy to treasure for generations to come!</p>
<p> </p>
<p>So, be sure to sign up for the social channel of your choice today!</p>
<p><a href="http://www.c5insight.com/follow" target="_blank">www.c5insight.com/follow</a></p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/151/Get-Social-More-Options-to-Learn-About-Dynamics-CRM-Microsoft-SharePoint-and-Salesforce-com.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/151/Get-Social-More-Options-to-Learn-About-Dynamics-CRM-Microsoft-SharePoint-and-Salesforce-com.aspx</guid>
      <pubDate>Fri, 11 Feb 2011 08:40:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=151</trackback:ping>
    </item>
    <item>
      <title>Microsoft CRM 2011: The Consumerization of Business IT</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/148/Microsoft-CRM-2011-The-Consumerization-of-Business-IT.aspx</link>
      <description><![CDATA[<p>There's a great article over on <a href="http://www.zdnet.com/blog/microsoft/microsoft-crm-2011-enterprise-software-meet-consumer-expectations/8612">Mary-Jo Foley's "All About Microsoft" blog </a>on ZDNET that talks about some of the things that Microsoft has done differently with the release of <a href="http://icu-mscrm.blogspot.com/2011/01/crm-2011-online-released.html">CRM 2011</a>. Microsoft has learned some lessons over the last few years since launching CRM Online, and they've adapted their approach to this release to match those lessons and the trends in the marketplace.</p>
<p>Specifically, Microsoft has responded to the consumerization of IT. In short, consumerization means that, increasingly, it is the end user who is driving the functionality and delivery model for business software and services. Just as people are accustomed to browsing an app store from their phone and instantly adding some new functionality to their device, business users are coming to expect the same level of immediacy and continual upgrades from business applications.</p>
<p>Foley talks to  Craig Unger, the head of R&D for Microsoft CRM, who pinpoints several key ways that this consumerization changed the company's approach to CRM 2011:</p>
<ul>
    <li>The Online version of CRM 2011 was released first, in January of 2011. The traditional installable software that many associate with Microsoft is scheduled for release at the end of February. This is a big change for a company that created the boxed software market.</li>
    <li>CRM Online is supported in 40 international markets and languages. This points to the company's efforts to deliver software to consumers and end users the way they want it. This multi-language support was immediately available with 2011, not just promised in future service releases.</li>
    <li>Free trials are quick and easy to sign up and immediately available. "Try before you buy" is what consumers expect, and it's what businesses are coming to demand as well.</li>
    <li>Windows Updates. Foley didn't touch on this in her article, but this is an important upgrade in functionality for CRM 2011. If users have the Outlook add-in installed for CRM 2011, they can opt into receiving updates automatically through Windows Updates, just like they receive updates for Windows and Office. Business users expect this level of automated security and bug fixing from Microsoft, and CRM 2011 delivers it. (Windows Updates is also the channel for updates to the server components that will be installed for on-premises customers).</li>
</ul>
<p>If you're itching to be a "consumer" of this latest release of Microsoft Dynamics CRM, you can sign up for a free trial of CRM Online <a href="http://crm.dynamics.com/en-us/trial-overview">here</a>.</p>]]></description>
      <dc:creator>Matt Wittemann</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/148/Microsoft-CRM-2011-The-Consumerization-of-Business-IT.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/148/Microsoft-CRM-2011-The-Consumerization-of-Business-IT.aspx</guid>
      <pubDate>Mon, 07 Feb 2011 22:54:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=148</trackback:ping>
    </item>
    <item>
      <title>Get Your Head in the Clouds – with Cloud Computing</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/12/default.aspx">SharePoint</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/131/Get-Your-Head-in-the-Clouds-with-Cloud-Computing.aspx</link>
      <description><![CDATA[<p>Cloud computing has been the subject of much conversation (and hype) for about a year now. Our 4 City Tour (<a href="http://www.successaccelerators.com/4city">www.successaccelerators.com/4city</a>) focused on this, as did some recent research with one of our partners (white paper forthcoming) and our partner Salesforce.com has long led the charge in the cloud computing conversation.</p>
<p><img align="left" alt="" style="width: 218px; height: 146px;" src="http://blogs.c5insight.com/Portals/0/BlogImages/Doug/CloudComputing_280px.jpg" />This past week, cloud computing took center stage at Microsoft’s Worldwide Partner Conference (WPC) in Washington DC. From all indications, cloud computing will be the number one area of focus for Microsoft for the next 12 months (or more). So just what is cloud computing, why is it important to you and what is Microsoft doing that will impact it?  Let’s tackle each of those questions in sequence.</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/131/Get-Your-Head-in-the-Clouds-with-Cloud-Computing.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/131/Get-Your-Head-in-the-Clouds-with-Cloud-Computing.aspx</guid>
      <pubDate>Mon, 19 Jul 2010 18:03:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=131</trackback:ping>
    </item>
    <item>
      <title>11 Habits of Effective Activity Management</title>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/13/default.aspx">Dynamics CRM</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/14/default.aspx">Salesforce.com</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/16/default.aspx">Business User</category>
      <category domain="http://blogs.c5insight.com/home/tabid/40/categoryid/17/default.aspx">Management</category>
      <link>http://blogs.c5insight.com/Home/tabid/40/entryid/61/11-Habits-of-Effective-Activity-Management.aspx</link>
      <description><![CDATA[<p><img alt="Dynamics CRM Activity icon - not really" align="left" width="101" height="93" style="margin-right: 10px" src="http://blogs.c5insight.com/Portals/0/BlogImages/Geoff/Dynamics_CRM_Activities.png" />The failure to understand and execute an effective activity management process is a leading cause of poor CRM adoption.  There are a variety of issues that can make activity management confusing and frustrating for users in ANY CRM system.  In this posting, I've detailed 11 suggestions for improving your activity management process. </p> <p>This is only a starting point.  Proper use of Queues and Workflows - in particular - are areas that can also improve your activity management efficiency and results.</p>]]></description>
      <dc:creator>Geoff Ables</dc:creator>
      <comments>http://blogs.c5insight.com/Home/tabid/40/entryid/61/11-Habits-of-Effective-Activity-Management.aspx#Comments</comments>
      <guid isPermaLink="true">http://blogs.c5insight.com/Home/tabid/40/entryid/61/11-Habits-of-Effective-Activity-Management.aspx</guid>
      <pubDate>Tue, 06 Jul 2010 19:45:00 GMT</pubDate>
      <slash:comments>4</slash:comments>
      <trackback:ping>http://blogs.c5insight.com/DesktopModules/SunBlog/Handlers/Trackback.aspx?id=61</trackback:ping>
    </item>
  </channel>
</rss>
