<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>crm &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/crm/</link>
	<description>Feed of posts on WordPress.com tagged "crm"</description>
	<pubDate>Wed, 09 Jul 2008 14:13:22 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Accessing a SQL Database from a Microsoft Dynamics CRM Plug-in]]></title>
<link>http://javista.wordpress.com/?p=98</link>
<pubDate>Wed, 09 Jul 2008 08:07:26 +0000</pubDate>
<dc:creator>Imad HAJJAR</dc:creator>
<guid>http://javista.wordpress.com/?p=98</guid>
<description><![CDATA[Have you ever had the need to access data in a non-CRM SQL database from within a plug-in? Let’s s]]></description>
<content:encoded><![CDATA[<p>Have you ever had the need to access data in a non-CRM SQL database from within a plug-in? Let’s say that you register a plug-in with Microsoft Dynamics CRM that will pull additional data from another SQL database in order to pre-populate a newly created entity’s attributes or perform some calculation using the data from both databases.</p>
<p>The problem that you will run into is that the system account that the plug-in executes under needs to have login and data access to the SQL server and database, which is not enabled by default. In Microsoft Dynamics CRM, all plug-ins execute under the system account named “NT AUTHORITY\NETWORK SERVICE”. If you take a look at any Microsoft Dynamics CRM database, you will see that a login exists for the NETWORK SERVICE account.</p>
<p><a href="http://blogs.msdn.com/blogfiles/crm/WindowsLiveWriter/bbddc2b75d2e_9DBE/peter01_2.png"><img style="border-width:0;" src="http://blogs.msdn.com/blogfiles/crm/WindowsLiveWriter/bbddc2b75d2e_9DBE/peter01_thumb.png" border="0" alt="peter01" width="484" height="507" /></a></p>
<p>Your SQL server administrator will need to create a SQL server login and assign database access permissions and roles for the NETWORK SERVICE account in order for your plug-in to be able to access the SQL database. Once this is configured you can connect to the database using a trusted connection string.</p>
<p>Data Source=myServer;Initial Catalog=myDataBase;Integrated Security=SSPI;</p>
<p>An alternate approach to creating a SQL server login account is to have your plug-in establish a connection to the SQL server using a connection string which includes login information. For example:</p>
<p>Data Source=myServer;Initial Catalog=myDataBase;User Id=myUsername; Password=myPassword;Integrated Security=false</p>
<p>Note that you must use Integrated Security=false and not Integrated Security=SSPI. This method has the disadvantage of sending login information in clear text over the network, which is less secure. You are also going to have to either hardcode the login information in the plug-in or pass the information to the plug-in’s constructor at run-time. For more information on how to pass data to a plug-in at run-time, refer to the Microsoft Dynamics CRM 4.0 SDK documentation under the topic <a href="https://mail.microsoft.com/redir.aspx?C=91759e2c3c2c4706b8e982efbcf5ae18&#38;URL=http%3a%2f%2fmsdn.microsoft.com%2fen-us%2flibrary%2fcc468424.aspx"><em>Writing the Plug-in Constructor</em></a>.</p>
<h3>How to Execute SQL Commands from a Plug-in using Impersonation</h3>
<p>Sometimes you may need to execute SQL stored procedures or SQL commands in the context of the user who caused a plug-in to execute instead of the Network Service system user. You can achieve this using the Execute AS command in SQL.</p>
<p>The NT AUTHORITY\NETWORK SERVICE login (see previous figure), or the user ID used to connect from the plug-in without using Integrated authentication, in the SQL database should be granted the <strong>sysadmin</strong> role in order for impersonation to work.</p>
<p><a href="http://blogs.msdn.com/blogfiles/crm/WindowsLiveWriter/bbddc2b75d2e_9DBE/Peter02_2.jpg"><img style="border-width:0;" src="http://blogs.msdn.com/blogfiles/crm/WindowsLiveWriter/bbddc2b75d2e_9DBE/Peter02_thumb.jpg" border="0" alt="Peter02" width="539" height="484" /></a></p>
<p>The following steps describe the process that a plug-in should implement.</p>
<p>1. Retrieve the domain name of the caller from Microsoft Dynamics CRM through the CrmService Web service. The systemuser entity contains domain information. You can execute a Retrieve on that entity to obtain the information.</p>
<p>2. Create the SQL connection to the target SQL database using the connection string specified in the secure or unsecure configuration attribute of the step. You can use integrated authentication or a hard coded SQL connection string as explained in the previous section of this blog.</p>
<p>3. Start the impersonation as the caller.</p>
<p>4. Execute any SQL commands or stored procedure that you want.</p>
<p>5. Revert the SQL execution context back to the Network Service system user.</p>
<p>The following plug-in sample code implements the previously described steps.</p>
<blockquote><p><span style="font-family:Courier New;">using System;</span></p>
<p><span style="font-family:Courier New;">using System.Collections.Generic;</span></p>
<p><span style="font-family:Courier New;">using System.Text;</span></p>
<p><span style="font-family:Courier New;">using Microsoft.Crm.Sdk;</span></p>
<p><span style="font-family:Courier New;">using Microsoft.Crm.SdkTypeProxy;</span></p>
<p><span style="font-family:Courier New;">using System.Xml;</span></p>
<p><span style="font-family:Courier New;">using System.Data.SqlClient;</span></p>
<p><span style="font-family:Courier New;">using Microsoft.Crm.Sdk.Query;</span></p>
<p><span style="font-family:Courier New;">public class AccessDatabase : IPlugin</span></p>
<p><span style="font-family:Courier New;">{</span></p>
<p><span style="font-family:Courier New;">   string m_secureConfig;</span></p>
<p><span style="font-family:Courier New;">   string m_connectionString;</span></p>
<p><span style="font-family:Courier New;">public string SecureConfig</span></p>
<p><span style="font-family:Courier New;">   {</span></p>
<p><span style="font-family:Courier New;">      get { return m_secureConfig; }</span></p>
<p><span style="font-family:Courier New;">      set { m_secureConfig = value; }</span></p>
<p><span style="font-family:Courier New;">   }</span></p>
<p><span style="font-family:Courier New;">// Pass the connection string to the plug-in’s constructor.</span></p>
<p><span style="font-family:Courier New;">   // The string is defined during plug-in registration.</span></p>
<p><span style="font-family:Courier New;">   public AccessDatabase(string config, string secureConfig)</span></p>
<p><span style="font-family:Courier New;">   {</span></p>
<p><span style="font-family:Courier New;">      m_connectionString = config;</span></p>
<p><span style="font-family:Courier New;">      m_secureConfig = secureConfig;</span></p>
<p><span style="font-family:Courier New;">   }</span></p>
<p><span style="font-family:Courier New;">   public void Execute(IPluginExecutionContext context)</span></p>
<p><span style="font-family:Courier New;">   {</span></p>
<p><span style="font-family:Courier New;">// Step 1. Get the domain name of the calling user.</span></p>
<p><span style="font-family:Courier New;">      ICrmService crmService = context.CreateCrmService(false);</span></p>
<p><span style="font-family:Courier New;">      systemuser callingUser = (systemuser)crmService.Retrieve(</span></p>
<p><span style="font-family:Courier New;">EntityName.systemuser.ToString(), context.UserId,</span></p>
<p><span style="font-family:Courier New;">new ColumnSet(new string[] { "domainname" }));</span></p>
<p><span style="font-family:Courier New;">      // Step 2. Connect using a SQL connection string specified in the </span></p>
<p><span style="font-family:Courier New;">      // configuration of step</span></p>
<p><span style="font-family:Courier New;">using (SqlConnection conn = </span></p>
<p><span style="font-family:Courier New;">new SqlConnection(m_connectionString))</span></p>
<p><span style="font-family:Courier New;">      {</span></p>
<p><span style="font-family:Courier New;">      conn.Open();</span></p>
<p><span style="font-family:Courier New;">SqlCommand comm = conn.CreateCommand();</span></p>
<p><span style="font-family:Courier New;">// Step3. Start SQL impersonation.</span></p>
<p><span style="font-family:Courier New;">      comm.CommandText = @"Execute as Login='" + </span></p>
<p><span style="font-family:Courier New;">         callingUser.domainname +"'; ";</span></p>
<p><span style="font-family:Courier New;">      // Step 4. Run the SQL commands that need to be executed.</span></p>
<p><span style="font-family:Courier New;">      comm.CommandText += "SELECT SUSER_NAME(); ";</span></p>
<p><span style="font-family:Courier New;">// Step 5. Revert the context back to Network Service</span></p>
<p><span style="font-family:Courier New;">      comm.CommandText += "revert;";</span></p>
<p><span style="font-family:Courier New;">      comm.CommandType = System.Data.CommandType.Text;</span></p>
<p><span style="font-family:Courier New;">// For demonstration purposes, display the username displayed</span></p>
<p><span style="font-family:Courier New;">      // from the SELECT statement.</span></p>
<p><span style="font-family:Courier New;">throw new InvalidPluginExecutionException(</span></p>
<p><span style="font-family:Courier New;">         comm.ExecuteScalar().ToString());</span></p>
<p><span style="font-family:Courier New;">      }</span></p>
<p><span style="font-family:Courier New;">   }</span></p>
<p><span style="font-family:Courier New;">}</span></p></blockquote>
<p>For more information on the EXECUTE AS command, refer to <a href="http://msdn.microsoft.com/en-us/library/ms181362.aspx">http://msdn.microsoft.com/en-us/library/ms181362.aspx</a>.</p>
<p>Cheers,</p>
<p><strong><a href="http://blogs.msdn.com/crm/pages/Bio-_2D00_-Peter-Hecke.aspx" target="_blank">Ajith Gande</a> and <a href="http://blogs.msdn.com/crm/pages/Bio-_2D00_-Peter-Hecke.aspx" target="_blank">Peter Hecke</a></strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Warum man mit CRM-Systemen nie "spielen" sollte (gilt auch für Wissenschaftler)]]></title>
<link>http://digiom.wordpress.com/?p=170</link>
<pubDate>Wed, 09 Jul 2008 06:34:33 +0000</pubDate>
<dc:creator>anaj</dc:creator>
<guid>http://digiom.wordpress.com/?p=170</guid>
<description><![CDATA[Die Uni Würzburg hat eine löbliche Wissenschaftler-Community gegründet namens Scholarz.net, ihrer]]></description>
<content:encoded><![CDATA[<p>Die Uni Würzburg hat eine löbliche Wissenschaftler-Community gegründet namens <a href="http://scholarz.net/">Scholarz.net</a>, ihrerseits hervorgegangen aus dem Forschungsprojekt "Wissenschaftliches Arbeiten im Web 2.0" - das Ding soll quasi ein Facebook für Wissenschaftler werden. Und weil sie auch CRM-technisch alles richtig machen wollen, haben sie jetzt einen Newsletter. Der erreichte mich gestern - nebenbei hatte man mich nie gefragt, ob ich einen Newsletters will, den Unterschied zwischen Opt in, Opt out, und Double Opt in sollten sie also auch bald mal lernen. Wenn man sich den Newsletter durchliest, merkt man, dass da noch einiges mehr in die Hose gegangen ist:</p>
[wp_caption id="attachment_171" align="alignnone" width="435" caption="Messer, CRM und Licht, sind für Wissenschaftler nicht"]<img src="http://digiom.wordpress.com/files/2008/07/_scholarznet-news.png" alt="Messer, CRM und Licht, sind für Wissenschaftler nicht" width="435" height="239" class="size-full wp-image-171" />[/wp_caption]
<p>Hihi! Wenn man schon den Newsletter testet, sollte man einen Text verwenden für den man sich nicht schämen muss, denn es kann IMMER was schief gehen - auch ich hab schon Newsletter versehentlich rausgejagt. Lustigerweise kam die Entschuldigungsmail sogar schon vor der Malaise, insofern war ich da gleich doppelt gespannt - ich hätt's sonst vielleicht übersehen:</p>
<blockquote><p>Sehr geehrte Nutzer von scholarz.net,</p>
<p>seit heute haben wir unser neues Newslettersystem am Start.</p>
<p>In der letzten Woche haben wir noch ein wenig getestet, aber die<br />
Tests waren wohl nicht intensiv genug.</p>
<p>Nach dem einspielen der Empfängeradressen wurde doch prompt eine<br />
Test-Email, die an die Mitarbeiter von scholarz.net gedacht war an<br />
einige von Ihnen versandt.</p>
<p>Das bitten wir vielmals zu entschuldigen. Das ganze war ein<br />
Insiderscherz und auf uns selbst gemünzt, für die Mitarbeiter daher<br />
lustig. Wir hoffen Sie können auch darüber schmunzeln.</p>
<p>Wir werden das System in Zukunft mit größerer Sorgfalt bedienen.</p>
<p>Mit freundlichen Grüßen,</p>
<p>Ihr scholarz.net-Team</p>
</blockquote>
<p> Im August erscheint übrigens ein Artikel zum Thema Web 2.0 und Wissenschaft in "I<a href="http://www.im-c.de/de/produkte/im-fachzeitschrift/vorschau-2008/">M - Information Management &#38; Consulting</a>" in Heft 3/2008, "IT Risk Management / Service Engineering", verfasst <a href="http://www.pms.ifi.lmu.de/erlebt/">Francois Bry</a> und mir - da geht es dann auch kurz um Scholarz.net</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Do You Need a Big, Expensive Website?]]></title>
<link>http://paulapollock.wordpress.com/?p=10</link>
<pubDate>Wed, 09 Jul 2008 00:44:01 +0000</pubDate>
<dc:creator>mktgmom</dc:creator>
<guid>http://paulapollock.wordpress.com/?p=10</guid>
<description><![CDATA[I am constantly asked about websites.  It&#8217;s common for companies to understand the importanc]]></description>
<content:encoded><![CDATA[<p>I am constantly asked about websites.  It's common for companies to understand the importance of having a site, but it still amazes me how little they know about website strategy and conversion analysis.  Without this elemental insight you are wasting money every month it is up. </p>
<p>Many companies feel they need to spend thousands on their site for results.  Instead of choosing a web designer from their approach, marketing insight and optimization skills they go with one that looks nice or has flashy graphics.  These can be good, but <span style="text-decoration:underline;">only</span> when combined with the first.  I build small, basic websites for my clients who want a brochure or small storefront but I tell them up front that I will not do all the swirling graphics and glowing buttons that Flash provides.  Not that I can't, but since search engines cannot read text embedded in a graphic I find it unnecessary. </p>
<p>Do you need a big, expensive site?  That depends on the goal you have for your website.  If you are using it as a brochure or lead generating site - probably not.  A simple site with a few well-thought pages with consistent brand elements, a memorable domain and consistent optimization work will serve you well.  You may want to consider more if you want to sell a lot of products directly to your clients from your site, want customers or employees to have login access to certain information or you want to use CRM (customer relationship management) software.  These integrations are best left to professionals that can write clean code and manage the site.  Still, it's the extremely rare web designer/developer that can advise you on marketing strategy and tie it all into your optimization strategy and traditional offline marketing campaigns. </p>
<p>When it comes to website design, development, marketing and optimization it might serve you better to pay a little more by hiring a few collaborative professionals rather than one who claims to do it all.  Even I can only help clients along so far.  But if I had a dollar for every web professional claiming they can do it all...well, you know the rest.  If you can find two professionals that work well together you will get twice the brain power and twice the advice.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Big Switch – a podcast with Nicholas Carr]]></title>
<link>http://newthink.wordpress.com/?p=57</link>
<pubDate>Tue, 08 Jul 2008 19:53:09 +0000</pubDate>
<dc:creator>bearingpointblog</dc:creator>
<guid>http://newthink.wordpress.com/?p=57</guid>
<description><![CDATA[Rather than storing data and software applications down the hall in your office or in a big data cen]]></description>
<content:encoded><![CDATA[<p><a href="http://newthink.files.wordpress.com/2008/07/bigswitchcover2thumb3.jpg"><img src="http://newthink.wordpress.com/files/2008/07/bigswitchcover2thumb3.jpg?w=90" alt="" width="90" height="116" align="right" /></a>Rather than storing data and software applications down the hall in your office or in a big data center – there is a shift towards storing them on the web. And that’s the shift that Nick Carr has built his book upon.</p>
<p>We (America) need to jump on this paradigm shift to reduce costs in this post Sarbanes Oxley and difficult economic environment if we want to gain competitive advantage for ourselves and for our country. No longer is running enterprise CRM or ERP a competitive advantage - its table stakes.</p>
<p>What does this mean for IT departments? What does this mean for your data security? And most importantly - what does the impact of distributed computing have on marketers? Check out what Nick has to say about all this …</p>
<p>[audio http://media.podcastingmanager.com/72206-80605/Media/Nicholas%20Carr%20final.mp3](The Big Switch - podcast with Nicholas Carr)</p>
<p>About Nick</p>
<p>A former executive editor of the Harvard Business Review, Nicholas Carr writes and speaks on technology, business, and culture. His 2004 book Does IT Matter?. published by Harvard Business School Press, set off a worldwide debate about the role of computers in business. His widely acclaimed new book, The Big Switch: Rewiring the World, from Edison to Google, examines the rise of "cloud computing" and its implications for business, media and society.</p>
<p>Carr writes regularly for the Financial Times, Strategy &#38; Business and The Guardian. His articles have also appeared in the New York Times, Wired, Business 2.0, The Banker, and Advertising Age as well as on his blog Rough Type. He is a member of the Encyclopedia Britannica's editorial board of advisors.</p>
<p>In 2005, Optimize magazine named Carr one of the leading thinkers on information technology, and in 2007 eWeek named him one of the 100 most influential people in IT. Earlier in his career, he was a principal at Mercer Management Consulting.</p>
<p>Carr has been a speaker at MIT, Harvard, Wharton, the Kennedy School of Government, NASA, and the Federal Reserve Bank of Dallas as well as at many industry, corporate, and professional events throughout the Americas, Europe, and Asia. He holds a B.A. from Dartmouth College and an M.A., in English literature, from Harvard University.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[CRM Account Form Configuration]]></title>
<link>http://dataforcecrm.wordpress.com/?p=144</link>
<pubDate>Tue, 08 Jul 2008 11:52:12 +0000</pubDate>
<dc:creator>SalesGuy</dc:creator>
<guid>http://dataforcecrm.wordpress.com/?p=144</guid>
<description><![CDATA[Getting Key Account Management Right
Clean, accurate key account data is the foundation of  a CRM to]]></description>
<content:encoded><![CDATA[<h1 class="mceTemp">Getting Key Account Management Right</h1>
<div class="mceTemp">Clean, accurate key account data is the foundation of  a CRM tool. The CRM tool will offer basic account detail data fields that capture the Account information. There are two cases where the basic field and form structure may not be good enough. The first, lets call over kill, is when the form has extra fields of no value to the user. This can be Status, Type, Industry Group, (business to customer does not need). The extra fields take up space clutter the UI and slow down the user. Not having fields the business needs is the second CRM use case. A good CRM admin section can customize the form by adding desired fields.</div>
<div class="mceTemp"><a title="crm" href="http://www.dataforcecrm.com">Flexible CRM tools</a>, with a strong Admin section, can trim and add fields from input forms. The perfect CRM account form will trim some fields and add others to match the user company business requirement. Below is an Account form. Please note the field details and the CUSTOM area. The customer area will show additional field elements when added. The custom fields can be pick lists, radial buttons, number or text fields, multi-select, date, currency. This admin functionality can make the CRM more user friendly and company business specific.</div>
<div class="mceTemp"><a href="http://dataforcecrm.files.wordpress.com/2008/07/accountform3.jpg"><img class="alignnone size-full wp-image-148" src="http://dataforcecrm.wordpress.com/files/2008/07/accountform3.jpg" alt="" width="767" height="774" /></a></div>
<div class="mceTemp"><a title="free CRM Offer" href="http://dataforcecrm.com/?q=crm_trial"><img class="alignnone" src="http://server.dataforce1.com/files/images/trial.jpg" alt="Free CRM Offer" />Click this button to register for a FREE CRM account<br />
</a></div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Managing a Whale of a time]]></title>
<link>http://davidbcarr.wordpress.com/?p=6</link>
<pubDate>Tue, 08 Jul 2008 09:00:50 +0000</pubDate>
<dc:creator>David Carr</dc:creator>
<guid>http://davidbcarr.wordpress.com/?p=6</guid>
<description><![CDATA[Are you making profits on all your customers?  If you listen to Kaplan and Narayanan (2001)¹ you m]]></description>
<content:encoded><![CDATA[<p>Are you making profits on all your customers?  If you listen to Kaplan and Narayanan (2001)¹ you might be wailing about your Whale Curve of customer profitability.</p>
<p>In last semester's Accounting 321 paper "Strategic Management Accounting" the syllabus covered <a href="http://en.wikipedia.org/wiki/Activity-based_costing">Activity Based Costing</a> (ABC) and <a href="http://en.wikipedia.org/wiki/Customer_relationship_management">Customer Relationship Management</a> (CRM) in relation to Customer Profitability Analysis, but something relating to all of these which I found quite interesting is the Whale Curve of customer profitability.</p>
<p>If your organisation implements ABC and CRM, not only will you be able to allocate your costs to your cost drivers, but also to each of your individual customers.  Kaplan and Narayanan (2001) bring the 20/80 rule to a new level, where they suggest that by performing a whale curve analysis, you may find the most profitable 20% of your customers bring in between 150% and 300% of your total profits.</p>
<p>Surely that can't be, because your profits can never be more than your profits!  They continue that the middle 70% of customers are generally break-even, while you will lose money on the last 10% - the losses on these last customers bring profits back to the 100% level.  You can see this pattern on the graph below.</p>
<p><a href="http://davidbcarr.files.wordpress.com/2008/07/whale-curve.jpg"><img class="size-full wp-image-13 aligncenter" src="http://davidbcarr.wordpress.com/files/2008/07/whale-curve.jpg" alt="" width="400" height="250" /></a></p>
<p>What now?  Well, if your CRM software can tell you which customers you are making the most money on, you can focus your efforts to retain them as customers.  You can also focus your efforts on the profit-losing customers, to find out <strong>why </strong>they are losing money.  Are they on the wrong products?  Do they pay late?  Are you charging them too little?  Knowing what makes them unprofitable allow you to make decisions to manage these unprofitable customers to profitability - and if this can't be done, perhaps you need to consider dropping them as customers.</p>
<p>But bare in mind that CRM isn't a one-stop-shop to making your customers profitable.  CRM is a tool in the Management Accountant's toolset, which works alongside ABC, <a href="http://en.wikipedia.org/wiki/Activity-based_management">ABM</a>, Activity Based Pricing, and a few other concepts, to help your organisation gain competitive advantage.</p>
<p>Anyone keen to <a href="http://en.wikipedia.org/wiki/Category:Management_accounting">update Wikipedia</a>?</p>
<p>—</p>
<p>1. Kaplan, R.S., and V.G. Narayanan, 2001. "Measuring and managing customer profitability", <em>Journal of Cost Management</em>, September/October: 5-15</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Categorizing and Displaying Reports in Different Languages]]></title>
<link>http://javista.wordpress.com/?p=97</link>
<pubDate>Mon, 07 Jul 2008 16:04:10 +0000</pubDate>
<dc:creator>Imad HAJJAR</dc:creator>
<guid>http://javista.wordpress.com/?p=97</guid>
<description><![CDATA[Microsoft Dynamics CRM includes a number of ready-to-use business reports and provides the capabilit]]></description>
<content:encoded><![CDATA[<p>Microsoft Dynamics CRM includes a number of ready-to-use business reports and provides the capability for creating custom reports. In Microsoft Dynamics CRM 3.0, you could manage the reports only by using the Microsoft Dynamics CRM Web application. In Microsoft Dynamics CRM 4.0, you can manage the reports programmatically by using the Microsoft Dynamics CRM Web services. The reports are represented by a rich entity model that contains <strong>report</strong>, <strong>report category</strong>, <strong>report entity</strong>, <strong>report link</strong> and <strong>report visibility</strong> entities. One of the new features is categorizing and displaying the reports in different languages.  You can enable additional languages in Microsoft Dynamics CRM by installing Language Packs. This lets you display text in the user interface, online Help, and the reports in different languages. For more information about how to install Language Packs, see the <em>Microsoft Dynamics CRM 4.0 Implementation Guide</em>.</p>
<p>To categorize the reports by language, use the <strong>report.languagecode</strong> property. You can set the property to a specific locale ID (for example, 1033 for US English) to make the report visible to the users of that language. For example, the English out-of-the-box Account Summary report appears in the Reports grid in the English user interface, but not in the Spanish or German user interfaces in the same organization.</p>
<p>You can also set the <strong>report.languagecode</strong> property to -1 (minus one) to make the report visible to all users in the base language user interface (this user interface is installed during the original Microsoft Dynamics CRM server installation) and in the user interfaces in other languages. For more information about locale ID, see "List of Locale ID (LCID) Values as Assigned by Microsoft", at <a href="https://mail.microsoft.com/redir.aspx?C=a01235a8a08b4dbba9e37ae665ce192e&#38;URL=http%3a%2f%2fwww.microsoft.com%2fglobaldev%2freference%2flcid-all.mspx">http://www.microsoft.com/globaldev/reference/lcid-all.mspx</a>.</p>
<p>You can use the report language information in combination with information that is contained in the report entity, report category, and report visibility entities to determine the areas and categories in the Microsoft Dynamics CRM Web application where the report is shown in different user interfaces languages.</p>
<p><strong>Note</strong>   The <strong>Language</strong> element inside the report definition language (RDL) file does not determine where the report is shown inside the Microsoft Dynamics CRM Web application. It contains an expression that evaluates to a language code as defined in the Internet Engineering Task Force (IETF) RFC1766 specification. The language code is used mainly for formatting numbers, dates, and times for a specified language. For more information about the Language element, see "Language Element (Report) (RDL)" at <a href="https://mail.microsoft.com/redir.aspx?C=a01235a8a08b4dbba9e37ae665ce192e&#38;URL=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2fms153956.aspx">http://msdn2.microsoft.com/en-us/library/ms153956.aspx</a>.</p>
<p>For more information, see <a href="https://mail.microsoft.com/redir.aspx?C=a01235a8a08b4dbba9e37ae665ce192e&#38;URL=http%3a%2f%2fmsdn.microsoft.com%2fen-us%2flibrary%2fbb955081.aspx">Report Writers Guide</a>.</p>
<p>Thanks,</p>
<p><a href="http://blogs.msdn.com/crm/pages/bio-inna-agranov.aspx" target="_blank">Inna Agranov</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Getting Real with Sales Pipeline Data]]></title>
<link>http://dataforcecrm.wordpress.com/?p=139</link>
<pubDate>Mon, 07 Jul 2008 13:55:28 +0000</pubDate>
<dc:creator>SalesGuy</dc:creator>
<guid>http://dataforcecrm.wordpress.com/?p=139</guid>
<description><![CDATA[What to do first when CRM is being deployed?
Opportunity Import and Cleanse
Get every sales opportun]]></description>
<content:encoded><![CDATA[<h1>What to do first when CRM is being deployed?</h1>
<h2>Opportunity Import and Cleanse</h2>
<p>Get every sales opportunity imported into CRM. Get the latest spreadsheet from every sales guy, import. Often, the sales manager runs a Friday or Monday pipeline call enfused with nuggets from each sales person about pertinent sales opportunities. This stands as a standard tracking tool for most sales managers. Now the sales manager can take this spreadsheet and track, for real.</p>
<p>Get the guys to get the sales dates right, the product groups accurate, the sales stage correct. ( See sales stage entries in this blog).  The pipeline slims out doing this. The fringe sales opportunities die off. All the smoke and mirror talk, the bs about this prospect and this contact and this large oppty now are recorded. The sales team is held accountable. So is the sales manager.</p>
<p>Requalify every sales oppty in CRM. Go back to basics, make sure the sales guys know what is a qualified oppty and requalify each one. This requalify is done on the phone or email using best practices sales ready messaging. Get the team focused on hard core sales qualifying. Get the Vampire optys out. Vampire optys suck time and will kill the sales chaser.</p>
<p>Steps: Load every current sales oppty, requalify each oppty.</p>
<p>The <a title="sales forecast " href="http://dataforcecrm.com">sales management</a> should take the lead in setting good, simple sales stages. Each sales stage should have one or two characteristics defining it.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Customer Data Integration: A First Step]]></title>
<link>http://dataforcecrm.wordpress.com/?p=138</link>
<pubDate>Mon, 07 Jul 2008 13:14:22 +0000</pubDate>
<dc:creator>SalesGuy</dc:creator>
<guid>http://dataforcecrm.wordpress.com/?p=138</guid>
<description><![CDATA[How to Start Cleansing Customer Data
First Get Ships all Navigating to the Same Goal
Customer data, ]]></description>
<content:encoded><![CDATA[<h1>How to Start Cleansing Customer Data</h1>
<h2>First Get Ships all Navigating to the Same Goal</h2>
<p>Customer data, in most small and medium businesses, is stored in several internal systems and resides on the sales team laptops. This is like an ocean of customer data with ships navigating to different headings. I used to believe the first step to getting CRM or an online sales tool deployed into a new customer site targetted current opportunities. Getting all the current sales pipeline re-qualified is a sobering experience and important. Sobering due to the drop out of sales opportunities, not really qualified, important by building a current snapshot of pipeline health. I now believe that accurate customer data is as important as accurate pipeline data Getting the customer data ships all headed in your business direction is not hard. This task takes a good CRM or sales tool and is driven by hard work.</p>
<p>First, set up a <a title="crm trial account" href="http://www.dataforcecrm.com/?q=crm_trial">CRM tool</a>.  Get your Account and contact profiles set up with descriptive fields. The base fields will be there already, just add your business centric fields.  Add your industry groupings your zones or territories if applicable. Then ask the owner of customer data to cleanse best they can and send to you. If each member of the team which owns a customer database does this, the task is not onerous. It may take awhile but it will get done.</p>
<p>Now get the spreadsheets together and take the second run at cleansing. Remove duplicates, remove bad addresses. Now import into your CRM. Now that data is visible and organized in your CRM database the third wave of cleansing is done. I recommend the sales team, now told about the importance of clean data, can clean and edit all current or active customers first. Get the top 20% of active contacts ship shape with good addresses, phones and the correct, standard company name.</p>
<p>Duplicate customer names are the biggest headache. Companies may have 35 different IBMs like, IBM, IBM Inc, I.B.M. A good CRM contact tool will reassign contacts to the correct, standard company name and the bad data can now be deleted.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[BAMBIZ.BIZ - Latest Article: Do Your Potential Customers Forget About You?]]></title>
<link>http://bambiz.wordpress.com/?p=27</link>
<pubDate>Sun, 06 Jul 2008 23:52:18 +0000</pubDate>
<dc:creator>bambiz</dc:creator>
<guid>http://bambiz.wordpress.com/?p=27</guid>
<description><![CDATA[Your web business probably gets product inquiries from potential customers around the globe. Inquiri]]></description>
<content:encoded><![CDATA[<p>Your web business probably gets product inquiries from potential customers around the globe. Inquiries come via e-mail and your web site, and you try to send information to each hot prospect as quickly as you can. You know that you can drastically increase the likelihood of making a sale by satisfying each person’s need for information quickly!</p>
<p>But, after you’ve delivered that first bit of information to your prospect, do you send him any further information?</p>
<p>If you are like most Internet marketers, you don’t.</p>
<p>When you don’t follow that initial message with additional information later on, you let a valuable prospect slip from your grasp! This is a potential customer who may have been very interested in your products, but who lost your contact information, or was too busy to make a purchase when your first message reached him.</p>
<p>Often, a prospect will purposely put off making a purchase, to see if you find him important enough to follow up with later. When he doesn’t receive a follow up message from you, he will take his business elsewhere.<br />
<strong>Are you losing profits due to inconsistent and ineffective follow up?</strong><br />
Following up with leads is more than just a process - it’s an art. In order to be effective, you need to design a follow up system, and stick to it, EVERY DAY! If you don’t follow up with your prospects consistently, INDIVIDUALLY, and in a timely fashion, then you might as well forget the whole follow up process.</p>
<p><strong>Consistent follow up gets results!</strong><br />
When I first started marketing and following up with prospects, I used a follow up method that I now call the “List Technique.” I had a large database containing the names and e-mail addresses of people who had specifically requested information about my products and services. These prospects had already received my first letter by the time they requested more information, so I used...</p>
<p>To read the full article visit:<br />
<a title="BAMBIZ.BIZ" href="http://www.bambiz.biz/index.php/hot-topic/76-hot-topic/197-do-your-potential-customers-forget-about-you" target="_blank">WWW.BAMBIZ.BIZ</a> - The #1 Open Content Business Platform for Entrepreneurs.</p>
<p> </p>
<div style="text-align:left;"><a href="http://www.aweber.com/?299601" target="_blank"></a><!-- BEGIN AWEBER WEB FORM --></div>
<table style="width:480px;height:116px;" border="0" cellspacing="0" cellpadding="0" width="480" align="center">
<tbody>
<tr>
<td width="425" valign="top">
<table style="width:478px;height:100px;" border="0" cellspacing="8" cellpadding="0" width="478">
<tbody>
<tr>
<td width="100%" valign="top"><span style="font-size:x-small;font-family:arial,helvetica;"><strong><span style="color:#af0000;">Less Work - More Sales</span></strong><br />
Sound good? AWeber's unlimited follow up autoresponders increase sales, lower costs, build lasting customer relationships, and increase your profits!<br />
<strong><span style="color:#af0000;"><a href="http://www.aweber.com/?299601"><span style="color:#006699;">Find out how with Unlimited Autoresponders</span></a>.</span></strong> </span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Conceito de Gestão de Relacionamento com o Cliente]]></title>
<link>http://alexcruz.wordpress.com/?p=6</link>
<pubDate>Sun, 06 Jul 2008 17:30:00 +0000</pubDate>
<dc:creator>alexsandrocruz</dc:creator>
<guid>http://alexcruz.wordpress.com/?p=6</guid>
<description><![CDATA[Customer relationship management
Origem: Wikipédia, a enciclopédia livre.
Customer Relationship Ma]]></description>
<content:encoded><![CDATA[<p><strong>Customer relationship management<br />
</strong><em>Origem: Wikipédia, a enciclopédia livre</em>.</p>
<p><em>Customer Relationship Management</em> (CRM) é uma expressão em inglês que pode ser traduzida para a língua portuguesa como Gestão de Relacionamento com o Cliente (Gestão de Relação com o Cliente, em Portugal). Foi criada para definir toda uma classe de ferramentas que automatizam as funções de contato com o cliente, essas ferramentas compreendem sistemas informatizados e fundamentalmente uma mudança de atitude corporativa, que objetiva ajudar as companhias a criar e manter um bom relacionamento com seus clientes armazenando e inter-relacionando de forma inteligente, informações sobre suas atividades e interações com a empresa.</p>
<p>O <em>Customer Relationship Management</em><strong> </strong>é um sistema integrado de gestão com foco no cliente, constituído por um conjunto de procedimentos/processos organizados e integrados num modelo de gestão de negócios, do inglês “<em>Customer Relationship Management</em>“. O software que auxilia e apoia esta gestão é normalmente denominado sistema de CRM.</p>
<p>O seu objectivo principal é auxiliar as organizações a angariar e fidelizar clientes ou prospectos, fidelizar clientes atuais procurando atingir a sua satisfação total, por meio do melhor entendimento das suas necessidades e expectativas e formação de uma visão global dos ambientes de marketing.</p>
<p>O CRM abrange, na generalidade, três grandes áreas:</p>
<ul>
<li>Automatização da gestão de marketing;</li>
<li>Automatização da gestão comercial, dos canais e da força de vendas;</li>
<li>Gestão dos serviços ao cliente.</li>
</ul>
<p>Os processos e sistemas de gestão de relacionamento com o cliente permitem que se tenha controle e conhecimento das informações sobre os clientes de maneira integrada, principalmente por meio do acompanhamento e registro de todas as interacções com o cliente, que podem ser consultadas e comunicadas a diversas partes da empresa que necessitem desta informação para guiar as tomadas de decisões.</p>
<p>Uma das atividades da Gestão do Relacionamento com o cliente implica registar os contatos por si realizados, de forma centralizada. Os registros não dependem do canal de comunicação que o cliente utilizou (voz, fax, e-mail, chat, SMS, MMS etc) e servem para que se tenham informações úteis e catalogáveis sobre os clientes. Qualquer informação relevante para as tomadas de decisões podem ser registradas, analisadas periodicamente, de forma a produzir relatórios de gestão.</p>
<ul>
<li>CRM Operacional: visa à criação de canais de relacionamento com o cliente.</li>
<li>CRM Analítico: visa a obter uma visão consistente do cliente, usando os dados recolhidos pelo CRM operacional para obter conhecimento que permita optimizar e gerar negócios.</li>
<li>CRM Colaborativo: foca na obtenção do valor do cliente por meio de colaboração inteligente, baseada em conhecimento.</li>
</ul>
<p>_______________________________________________________________________________________</p>
<p><strong>Customer relationship management</strong><br />
<em>Origem: Livro Miguel Abuhab - Um Homem que não pára! pag.119<br />
</em>Software que possibilitam um maior e melhor conhecimento do perfil e das peculiaridades de cada cliente, tornando viável uma maior satisfação das demandas no timing adequado.</p>
<p>_______________________________________________________________________________________</p>
<p><strong>Customer relationship management</strong><br />
<em>Origem: Pauo Lucena<br />
</em>A melhor maneira para entendermos o que significa Gestão de Relacionamento com o Cliente é voltarmos aos tempos onde as relações entre as empresas e os consumidores eram feitas de forma mais individualizada. O vendedor porta-a-porta sabia exatamente quais eram as necessidades e desejos dos seus clientes e a própria empresa estruturava sua política comercial de acordo com o perfil de seu público.<br />
Quem tem menos de 20 anos talvez nunca tenha visto a frase “Não vendemos fiado” dentro de um estabelecimento comercial.<br />
As empresas cresceram, as tecnologias evoluíram, e de alguma forma as organizações tiveram que padronizar seus processos para aumentar a escala de atendimento. Conseqüentemente este novo cenário fez com que as companhias perdessem o contato mais próximo com os clientes e das suas reais necessidades.<br />
CRM vem com o desafio de reaproximar as duas pontas permitindo novamente que as organizações consigam classificar seus clientes e os mesmos percebam que esta diferenciação esta trazendo um melhor atendimento.</p>
<p>Outra maneira de entender o conceito é nos colocarmos na posição de consumidor, ou seja, independente do tamanho do negócio o relacionamento entre as empresas não acontece através de CNPJs e sim de CPFs. São pessoas se relacionando com pessoas e entender suas expectativas e manter os históricos de relacionamentos são insumos para estruturação das estratégias de negócio. Ex. Desenvolvimento de novos produtos ou canais de atendimento.<br />
No dia-a-dia medimos a qualidade dos produtos e serviços que consumimos pela capacidade das empresas de atenderem os nossos desejos e expectativas. Seja pela temperatura, sabor ou até mesmo atendimento do garçom do estabelecimento que estamos tomando uma cerveja, seja durante o contato com a loja ou fabricante buscando a solução de um problema de um produto que você tenha adquirido.<br />
Resumindo, tanto o consumidor final ou mesmo o comprador profissional, esperam que as empresas os surpreendam. Para isso as organizações precisam estar voltadas efetivamente para trabalharem de forma estratégica com todos os dados que possuem do cliente transformando este conhecimento em relacionamentos mais duradouros e com melhores $resultados$.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Afinal, como eu defino o potencial do meu cliente?]]></title>
<link>http://alexcruz.wordpress.com/?p=5</link>
<pubDate>Sun, 06 Jul 2008 17:26:24 +0000</pubDate>
<dc:creator>alexsandrocruz</dc:creator>
<guid>http://alexcruz.wordpress.com/?p=5</guid>
<description><![CDATA[Dicionário Michaelis
Potencial
po.ten.ci.al
adj m+f (potência+al3) 1 Pertencente ou relativo a pot]]></description>
<content:encoded><![CDATA[<p><strong>Dicionário Michaelis</strong><br />
Potencial<br />
po.ten.ci.al<br />
adj m+f (potência+al3) 1 Pertencente ou relativo a potência. 2 Virtual. 3 Que exprime possibilidades. 4 Mec Diz-se da energia dependente da posição ou natureza do corpo. 5 Med Que não atua senão depois de certo tempo: Medicamento potencial. 6 Gram Diz-se do modo verbal que designa a possibilidade. sm 1 Força total dos meios disponíveis para certo fim: O potencial industrial do Brasil. 2 Quantidade de carga elétrica positiva de um corpo em relação à da terra ou de um condutor ligado à terra, considerada zero. 3 Capacidade de trabalho em relação aos fatores que facilitam ou dificultam a ação.</p>
<p>Dentro da minha vivência de implantação de softwares de CRM, um dos pontos que sempre gera polêmica no projeto é o momento que de definir as características e parâmetros do potencial dos clientes.</p>
<p><span style="font-size:10pt;font-family:Arial;"><br />
</span>Algumas empresas partem para curva ABC tradicional, definindo faixas de potencial de acordo com o faturamento. Outros apimentam esta visão somando dados financeiros como inadimplência. Em outros momentos, são analisadas também informações quantitativas como número de filiais, vendedores e qualquer outra característica que possa ser mensurada e que de alguma forma possa ajudar no dimensionamento de tamanha do cliente.</p>
<p>Mas vamos analisar uma mesma situação com duas visões diferentes.<br />
Uma empresa vende instalações de ar-condicionado e o seu maior cliente, nos últimos 12 meses, foi uma empresa que acabou de construir uma nova unidade. O cliente pagou em dia todas as faturas e elogiou muito o serviço executado.<br />
Vamos incluir também nesta história a informação que o cliente não prevê ampliações de suas instalações ou muito menos manutenções no local nos próximos 12 meses.<br />
Em uma escala de zero a cem, onde o maior valor seria o potencial máximo, qual seria o potencial deste cliente? Se analisarmos a visão da curva ABC tradicional o valor seria cem, em razão do seu histórico de compra. Agora se analisarmos o potencial futuro de compra o valor seria zero.</p>
<p>Mas se encaminhássemos a visão dentro do contexto que um dos melhores vendedores da empresa é o cliente satisfeito e por esta razão a aaálise de potencial do nosso negócio não seria feita somente por venda e sim pelo quanto o cliente pode ajudar em novas vendas, o cliente da nossa história teria cem em seu score de potencial.</p>
<p>Então o que fazer para definir o potencial do meu cliente?<br />
Vamos recorrer ao dicionário para verificar se conseguimos encontrar a melhor maneira de aplicar o conceito dentro da visão de negócio. Pincelando uma das definições para  a palavra Potencial dentro do dicionário Michaelis temos; “1 Força total dos meios disponíveis para certo fim”.<br />
É isso. Qual força estratégica que cada cliente tem? Qual o objetivo fim que queremos ter com cada um dos meus clientes? Ao respondermos estas perguntas utilizando como premissa os objetivos de vender mais, fidelizar clientes e buscar parceiras e novas referências para o nosso negócio, você terá com certeza condições de estruturar quais atributos serão utilizados pela sua empresa para definir o potencial de cliente.Sugiro que esta visão seja segmentada conforme o ciclo de vida do cliente. Desta forma é possível separar e ranquear os clientes e conseqüentemente definir estratégias de relacionamento para cada um deles.<br />
Ex.</p>
<table class="MsoTableGrid" style="border-collapse:collapse;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width:1.2in;background-color:transparent;border:windowtext 1pt solid;padding:0 5.4pt;" width="115" valign="top"><span class="descricao1"><strong><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Cliente</span></strong></span></td>
<td style="border-right:windowtext 1pt solid;border-top:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><strong><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Classificação</span></strong></span></td>
<td style="border-right:windowtext 1pt solid;border-top:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><strong><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Potencial de Compra</span></strong></span></td>
<td style="border-right:windowtext 1pt solid;border-top:windowtext 1pt solid;border-left-color:#e0dfe3;width:1.7in;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="163" valign="top"><span class="descricao1"><strong><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Potencial Estratégico</span></strong></span></td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-left:windowtext 1pt solid;width:1.2in;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="115" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">1</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Classe A</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Alto</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:1.7in;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="163" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Baixo</span></span></td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-left:windowtext 1pt solid;width:1.2in;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="115" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">2</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Classe A</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Alto</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:1.7in;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="163" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Alto</span></span></td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-left:windowtext 1pt solid;width:1.2in;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="115" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">3</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Vip</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Alto</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:1.7in;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="163" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Alto</span></span></td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-left:windowtext 1pt solid;width:1.2in;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="115" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">4</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">Primeira Compra</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:117pt;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="156" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">?</span></span></td>
<td style="border-right:windowtext 1pt solid;border-left-color:#e0dfe3;width:1.7in;border-top-color:#e0dfe3;border-bottom:windowtext 1pt solid;background-color:transparent;padding:0 5.4pt;" width="163" valign="top"><span class="descricao1"><span style="font-size:10pt;font-family:Arial;" lang="PT-BR">?</span></span></td>
</tr>
</tbody>
</table>
<p>No exemplo acima, você tem um cliente classificado como <strong>A</strong> em razão do faturamento, porém ainda sem um valor efetivamente estratégico (1). Outro cliente classificado também como <strong>A</strong> e com alto potencial estratégico. E outro cliente classificado com “<strong>Vip</strong>”(3), que recebe esta classificação por ter alto volume de compra, alto potencial estratégico e em razão de atitudes positivas no relacionamento com sua empresa, virou um parceiro e indicador de negócio.<br />
É interessante também analisar os clientes novos (4). Se ele receber uma boa qualificação é possível tentar identificar qual será a classificação futuro deste cliente, ou no contexto de compra, ou mesmo por valor estratégico.<br />
Fica uma sugestão de “lição de casa”. Separe um grupo de clientes e discuta com suas áreas de vendas e marketing, quais características quantitativas e qualitativas seus clientes possuem e o quanto eles interferem no seu negócio.<br />
Quem sabe, durante este <em>brainstorming</em> você não se surpreende de forma positiva, ao identificar padrões de compra e clientes que podem ser utilizados para potencializar ainda mais seus resultados e aperfeiçoar as suas estratégias.</p>
<p>Via Blog Datasul</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Criando Campanhas de E-mail Marketing de Sucesso]]></title>
<link>http://alexcruz.wordpress.com/?p=3</link>
<pubDate>Sun, 06 Jul 2008 17:16:49 +0000</pubDate>
<dc:creator>alexsandrocruz</dc:creator>
<guid>http://alexcruz.wordpress.com/?p=3</guid>
<description><![CDATA[Introdução
O e-mail marketing é uma ferramenta cada vez mais importante para manter a comunicaç]]></description>
<content:encoded><![CDATA[<p><strong><span style="color:#000000;">Introdução</span></strong><br />
O e-mail marketing é uma ferramenta cada vez mais importante para manter a comunicação com os clientes, prospects e outros interessados. De acordo com um estudo realizado pelo Comitê Gestor da Internet no Brasil, Instituto Brasileiro de Geografia e Estatística e Instituto Brasileiro de Opinião Pública e Estatística, o principal motivo de acesso à Internet no Brasil é o e-mail. Por isso, o e-mail marketing é uma ótima estratégia para as empresas no relacionamento com clientes, além de ajudar a alavancar os negócios e fortalecer a marca da empresa.<br />
As empresas que adotam o e-mail marketing têm uma série de benefícios:<br />
• Em vez de esperar o interesse do cliente, a empresa pode despertar o interesse e encontrá-lo;<br />
• O cliente interage imediatamente com a mensagem;<br />
• É possível direcionar a mensagem por sexo, faixa etária e cidade;<br />
• A mensagem pode ser facilmente personalizada com informações do cliente, quanto mais personalizada melhor;<br />
• As ações de email oferecem maior alcance, velocidade, alto índice de retorno e baixo custo comparado às mídias convencionais (televisão, revistas, etc).<br />
Criar uma campanha de e-mail marketing é extremamente simples. Porém, o grande desafio é criar uma campanha que efetivamente traga bons resultados.<br />
Muitas pessoas o fazem, simplesmente abrindo um e-mail do Outlook, adicionando os contatos comprados de alguma lista de e-mails (sem nem ter o cuidado de colocar em cópia oculta), redigindo um texto e enviando.<br />
Quem já não recebeu um e-mail desta forma, de uma empresa que sequer conhecia? Qual seu sentimento com relação a esta empresa?<br />
Certamente de revolta. A imagem formada da empresa é totalmente negativa.<br />
Este artigo discute algumas técnicas e boas práticas das campanhas de e-mail marketing com objetivo de maximizar o resultado.</p>
<p><span style="color:#000000;"><strong><span><span style="color:#000000;">Se relacione apenas com quem lhe deu permissão para isso</span></span></strong><br />
</span>E-mail marketing não pode ser confundido com Spam.<br />
O Spam é um email não autorizado enviado por uma pessoa que você não conhece.<br />
A primeira grande fonte de obtenção de e-mails autorizados para realizar suas campanhas é seu próprio site. E é muito importante utilizar a técnica do confirmed opt-in para ter certeza de que a pessoa que está autorizando é ela mesma. Mas qual a diferença entre o opt-in e o confirmed opt-in? A tabela abaixo explica a diferença entre as duas.</p>
<table border="1">
<tbody>
<tr>
<td>Opt-in</td>
<td>O opt-in é quando se coloca uma caixa de checagem (check-box) no formulário perguntando se o usuário deseja receber informativos e promoções.<br />
A falha neste método é que o internauta pode colocar o e-mail de outra pessoa, que não deseja receber seus comunicados.</td>
</tr>
<tr>
<td>Confirmed Opt-In</td>
<td>Nesta técnica, após o internauta enviar as informações, é disparado um e-mail de retorno para que ele confirme o cadastro ou o interesse nas informações. Assim sendo, mesmo que ele coloque o e-mail de outra pessoa, cabe a esta última não confirmar o interesse.</td>
</tr>
</tbody>
</table>
<p><strong><span style="color:#000000;">Envie emails individuais</span></strong><br />
É extremamente desagradável ser apenas mais um. Todos querem ser tratados com individualidade.<br />
Não faça campanhas colocando as pessoas com cópia oculta, pois claramente cada pessoa perceberá que se trata de uma campanha de massa onde ela é apenas mais uma.<br />
É importante que cada um receba um e-mail individual, constando seu próprio nome como destinatário do e-mail.</p>
<p><strong><span style="color:#000000;">Cuidado com a mensagem</span></strong><br />
O primeiro aspecto importante da mensagem é a frase colocada como assunto. Se ela não chamar a atenção da pessoa, muitas vezes, ela nem chega a abrir o e-mail. Muitos mecanismos anti-spam chegam inclusive a bloquear e-mails com assunto como “promoção”, “compre” ou outras frases muito comerciais.<br />
Procure criar um assunto que desperte a atenção do público interessado no que você quer comunicar no e-mail marketing.<br />
Um exemplo: você é uma grande loja virtual, mas quer fazer uma campanha de uma promoção de notebook, então comece o assunto do seu e-mail marketing com essa palavra. Você pode pensar: mas aí quem não quiser notebook vai deletar e nem vai abrir o e-mail. E qual o problema? Seu anúncio não é de notebook? É melhor que 20% do seu público abra o email, e destes 50% clique em sua promoção, do que 50% das pessoas abrirem, e somente 1% clicar na promoção.<br />
O ideal, na mensagem, é ter um profissional de arte ou de criação envolvido. Mas sabemos que muitas pequenas empresas não têm essa verba e preferem fazer o envio com recursos próprios. Não há problemas. A mensagem deve ser clara e sucinta. Cuidados visuais também são imprescindíveis. Tamanho, estilo da fonte e cores devem ter harmonia e estar de acordo com o padrão de sua empresa. Imagens que sejam leves e que efetivamente transmitam o conteúdo desejado também são importantes.</p>
<p><strong><span style="color:#000000;">Considerações Finais</span></strong><br />
Esperamos que este artigo tenha sido útil para esclarecer alguns pontos muito simples, mas que nem sempre são observados.<br />
Não tivemos a pretensão de esgotar o assunto, mas apenas oferecer algumas dicas importantes, pois recebemos diariamente dezenas de e-mails extremamente mal redigidos e sem a mínima preocupação com a imagem que a empresa está transmitindo.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Topspin: ¿un CRM para músicos?]]></title>
<link>http://audionews.wordpress.com/?p=619</link>
<pubDate>Sun, 06 Jul 2008 15:12:30 +0000</pubDate>
<dc:creator>Damián Taubaso</dc:creator>
<guid>http://audionews.wordpress.com/?p=619</guid>
<description><![CDATA[
Copy-paste de Rolling Stone (Maximiliano Poter):
Hace un tiempito hablamos sobre las transformacion]]></description>
<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-620" src="http://audionews.wordpress.com/files/2008/07/topspin_logo.jpg" alt="" width="316" height="64" /></p>
<p><em>Copy-paste de <a href="http://www.rollingstone.com.ar/weblogs/mixedmedia/nota.asp?nota_id=1026353&#38;pid=4698903&#38;toi=6319">Rolling Stone</a> (Maximiliano Poter):</em></p>
<p>Hace un tiempito hablamos sobre las <a href="http://www.rollingstone.com.ar/weblogs/mixedmedia/nota.asp?nota_id=1012699">transformaciones en la publicidad y la distribución</a> dentro del mercado discográfico (¿debemos seguir llamándolo así?), pero unos días atrás la revista norteamericana <a href="http://www.billboard.com/bbcom/index.jsp">Billboard</a> hizo un relevamiento sobre el tema y puso en su portada a <a href="http://topspinmedia.com/">Topspin</a>, una empresa que parece que se las trae. ¿Por qué? Principalmente, porque está formada por un verdadero "Dream ITeam" del negocio tecno-musical: <a href="http://topspinmedia.com/peter-gotcher">Peter Gotcher</a> (ex <a href="http://www.digidesign.com/intl_selector.cfm?">Digidesign</a>, creadores del ProTools) y <a href="http://topspinmedia.com/shamal-ranasinghe">Shamal Ranasinghe</a> (ex <a href="http://www.realnetworks.com/">Real Networks</a> y Musicmatch) como fundadores; e <a href="http://topspinmedia.com/ian-rogers">Ian Rogers</a> como CEO, un tipo con ideas y opiniones muy interesantes sobre el actual estado del negocio discográfico quien, hasta hace solo unos meses, fue vicepresidente del sector <em>Video and Media Applications</em> en <a href="http://www.yahoo.com/">Yahoo!</a> (y otro de los tantos cerebros que se están fugando del buscador, que <a href="http://www.rollingstone.com.ar/weblogs/mixedmedia/nota.asp?nota_id=1022249">vive momentos de incertidumbre</a>).</p>
<p>Según explica Rogers en el <a href="http://topspinmedia.com/">blog</a> de Topspin, la compañía "está fundada sobre el principio de que, <strong>mientras los costos de producción y distribución en la industria musical están cayendo, la ilimitada variedad de elección que tienen los clientes solo incrementa la importancia de un marketing efectivo</strong>. Marketing significa conectar y cultivar la relación con los fans existentes y descubrir nuevos, y Topspin está construyendo herramientas de software que hacen más eficiente el mercado del artista".  Así se presenta la firma: no como una discográfica ni una agencia de marketing, sino como una compañía de soft. ¿Y qué ofrece?</p>
<p>Por lo pronto, una plataforma tecnológica (o una suerte de "suite de aplicaciones"), que permite administrar el contenido y la relación con el cliente para que los artistas puedan distribuir y comercializar su música directamente. Acá se incluye:<br />
a) Un <strong>sistema de gestión</strong> de canciones, fotos, videos y otros productos de los músicos.<br />
b) Otro de "<strong>gestión de fans</strong>", que reúne y organiza datos como e-mail, ubicación, edad, fecha de nacimiento e historial de ventas, así como información sobre cuántas veces un fanático busca música en sitios que usan Topspin, si comparte temas con otros amigos y qué otras bandas escucha.<br />
c) Una <strong>herramienta de creación de productos</strong> que permite a los artistas desarrollar ofertas especiales de su contenido, como suscripciones, paquetes de <em>tickets / tracks</em> u otras metodologías para comercializar su catálogo.</p>
<p>A diferencia de <a href="http://www.myspace.com/">MySpace</a> o <a href="http://www.reverbnation.com/">ReverbNation</a>, Topspin no es una red social ni un sitio de promoción de bandas, sino que ofrece un conjunto de soluciones informáticas que se montan sobre el website de cualquier artista para que este "autogestione su oferta".  <a href="http://www.davidbyrne.com/">David Byrne</a>, <a href="http://www.dandywarhols.com/">Dandy Warhols</a> y <a href="http://www.jubilee.la/">Jubilee</a> (banda formada por el bajista de Queens of Stone Age con el ex violero de NIN) están usando Topspin para ofrecerles a sus fans suscripciones, canciones, contenido exclusivo y otra clase de promociones digitales.  En la disquería online de "la larga cola", la diferencia la hace la publicidad, para la cual es fundamental la tecnología, no un sello.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Planering och styrning på företaget]]></title>
<link>http://hugoochkojan.wordpress.com/2008/07/06/planering-och-styrning-pa-foretaget/</link>
<pubDate>Sun, 06 Jul 2008 07:51:16 +0000</pubDate>
<dc:creator>hugoochkojan</dc:creator>
<guid>http://hugoochkojan.wordpress.com/2008/07/06/planering-och-styrning-pa-foretaget/</guid>
<description><![CDATA[Inom varje företag, stor eller litet, finns det som bekant en rad olika behov av styrning. Ett full]]></description>
<content:encoded><![CDATA[<p>Inom varje företag, stor eller litet, finns det som bekant en rad olika behov av styrning. Ett fullvärdigt sätt att tillgodose dessa behov är att förse företaget med ett <a href="http://www.mobilasystem.se/ataio">affärssystem</a>. På så sätt kan man få styrning över ekonomi, reskontror, order, lager, redovisning, planering, personaladministration med mera. Dessa moduler är sammanlänkade till en databas. Affärssystemet anpassas efter företagets behov genom olika parametrar. Tack vare affärssystem med CRM, customer relations management, kan man få en total bild över företagets samtliga kunder, beställningar, försäljningsaktiviteter och orderingång. I dag är det ett viktigt att ha ett välfungerande och uppdaterat affärssystem med tanke på all kontinuerlig förändring. </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[High Hopes Part-One. IT Salad and the Fiascoes that Follow]]></title>
<link>http://abmw.wordpress.com/?p=125</link>
<pubDate>Sun, 06 Jul 2008 03:21:26 +0000</pubDate>
<dc:creator>Alan Wilensky</dc:creator>
<guid>http://abmw.wordpress.com/?p=125</guid>
<description><![CDATA[This is part one of a two part series by Alan Wilensky.
&#8220;I had high hopes for that Tuna Salad]]></description>
<content:encoded><![CDATA[<p>This is part one of a two part series by Alan Wilensky.</p>
<p>"I had high hopes for that <a class="zem_slink" title="Tuna salad" rel="wikipedia" href="http://en.wikipedia.org/wiki/Tuna_salad" target="_blank">Tuna Salad</a>", said the IT director, "It didn't really deliver".</p>
<p>I was <a class="zem_slink" title="Thought" rel="wikipedia" href="http://en.wikipedia.org/wiki/Thought" target="_blank">thinking</a> about his IT problems, but in the middle of lunch with him, I thought I would respond by conjoining the two issues:</p>
<p>I said, "It's full of <a class="zem_slink" title="Heavy metals" rel="wikipedia" href="http://en.wikipedia.org/wiki/Heavy_metals" target="_blank">heavy metals</a>, they have signs at <a class="zem_slink" title="Whole foods" rel="wikipedia" href="http://en.wikipedia.org/wiki/Whole_foods" target="_blank">Whole Foods</a> that you shouldn't eat too much, and certainly not if pregnant".</p>
<p>He was not thinking about his IT problems at that precise moment, and why should he? <a class="zem_slink" title="Luncheon" rel="wikipedia" href="http://en.wikipedia.org/wiki/Luncheon" target="_blank">Lunchtime</a> was his one daytime hour away from the nightmare that had been plaguing him for months; unless I could convince him to take drastic action, the issue would continue to fester until the budget was spent, he was fired, or a decision to undertake a complete roll-back to the formerly reliable processes was made. They had certainly left  the realm of the familiar and functional for a stinking pile of <a class="zem_slink" title="Enterprise resource planning" rel="wikipedia" href="http://en.wikipedia.org/wiki/Enterprise_resource_planning" target="_blank">ERP</a>.</p>
<p>He continued: "Well, everyone here gets the Tuna Salad, and I'm not pregnant!"<!--more--></p>
<p>I answered with a piquant anecdote that would steer the question back to where we could discuss his real problem: Big, heavy <a class="zem_slink" title="Enterprise software" rel="wikipedia" href="http://en.wikipedia.org/wiki/Enterprise_software" target="_blank">enterprise software</a>, ill matched to the strategic mission, integrated, installed, and manhandled by a <a class="zem_slink" title="Value-added reseller" rel="wikipedia" href="http://en.wikipedia.org/wiki/Value-added_reseller" target="_blank">VAR</a>'s enterprise sales team of butchers. These stooges didn't know him or his industry from Adam.</p>
<p>This was indeed a phantasmagoria of errors with the proportions of a tragicomedy - nay, a comedia of epic dimensions that would be humorous if not for the high stakes.</p>
<p>Surely, like the Tuna Salad at this overpriced Luncheonette,  it was a recipe for disaster.</p>
<p>Related articles by Zemanta</p>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.computerworld.com/action/whitepapers.do?command=viewWhitePaperDetail&#38;contentId=9073218&#38;source=rss_topic121" target="_blank">11 Criteria For Selecting The Best ERP System Replacement</a></li>
<li class="zemanta-article-ul-li"><a href="http://ericbrown.com/factors-affecting-productivity-it-management-and-process.htm" target="_blank">Factors affecting Productivity - IT, Management and Process</a></li>
<li class="zemanta-article-ul-li"><a href="http://www.regdeveloper.co.uk/2007/11/13/oracle_virtualization_middleware/">Oracle takes open source love to virtualization</a></li>
<li class="zemanta-article-ul-li"><a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&#38;articleId=9029501&#38;source=rss_topic120">SAP describes road ahead for its PLM software</a></li>
<li class="zemanta-article-ul-li"><a href="http://thingamy.typepad.com/sigs_blog/2007/12/sap-influence-2.html">SAP Influencer Summit #3 - SAP missing the biggest opportunity ever?</a></li>
<li class="zemanta-article-ul-li"><a href="http://www.computerworld.com/taxonomy/000/000/100//taxonomy_000000120_index.jsp">More CRM News...</a></li>
<li class="zemanta-article-ul-li"><a href="http://thingamy.typepad.com/sigs_blog/2007/10/sap-teced-munic.html">SAP TechEd Munich - preamble</a></li>
<li class="zemanta-article-ul-li"><a href="http://www.infoworld.com/article/08/05/30/SAP-ends-low-price-support-but-promises-24/7-ERP-maintenance_1.html?source=rss&#38;url=http://www.infoworld.com/article/08/05/30/SAP-ends-low-price-support-but-promises-24/7-ERP-maintenance_1.html">SAP ends low-price support, but promises 24/7 ERP maintenance</a></li>
</ul>
<p>Everyone gets the Tuna Salad. Everyone in our business uses <a class="zem_slink" title="SAP ERP" rel="homepage" href="http://www.sap.com/solutions/business-suite/erp/index.epx">SAP</a> or some other honking server-based 'bloat anchor'. For some, it's great, it works, they can lavish resources and support on it - the features and alignment of these systems can be put to good use. In many cases, like the one at hand, however, they are too much, or just plain wrong for the task at hand. Oftentimes, it's not the application itself which is to blame, but the process for integrating and deploying it that causes havoc and destruction - particularly in the mid-tier companies in which I ply my trade. These organizations are too big for desktop or generic solutions, and too small, broadly speaking, for most of the ERP and <a class="zem_slink" title="Customer relationship management" rel="wikipedia" href="http://en.wikipedia.org/wiki/Customer_relationship_management">CRM</a> being shoved down their throat.</p>
<p>That's that lunchtime segue. My counterpart is not concerned about the <a class="zem_slink" title="Heavy metal music" rel="wikipedia" href="http://en.wikipedia.org/wiki/Heavy_metal_music">heavy metal</a> (bloated solutions enterprise-ware), and he's in pregnancy semi-denial (he suspected that he was on the path to delivering a bastard child). Well, he had enough sense to have me in to bid on the re-engineering.</p>
<p><a href="http://bizcast.typepad.com/.shared/image.html?/photos/uncategorized/2008/07/05/449pxmrp2.jpg" target="_blank"><img style="float:left;width:149px;height:168px;margin:0 5px 5px 0;" src="http://bizcast.typepad.com/clients/images/2008/07/05/449pxmrp2.jpg" border="0" alt="449pxmrp2" /></a> <strong>It's complicated, though -</p>
<p>This fine example of a 30 year old, family owned and run business of 300+ employees had made it to this stage, and profitably, without the burden of ERP. One of the brothers who inherited the executive mantle was gung-ho to innovate...and good for him, Jack!</strong></p>
<p>They had an organically grown process-based business that their dad and uncles built brick by brick. Their IT was lovingly transitioned from a paper forms method to AS400, then to a custom Oracle system with <a class="zem_slink" title="Effective radiated power" rel="wikipedia" href="http://en.wikipedia.org/wiki/Effective_radiated_power">Power</a> builder, and then some faltering, tentative steps to mobilize the processes, adding partners to the extranet over time. They had many successes and minor setbacks over a 10 year period mirroring the IT boom of the 90's.</p>
<p>It all started falling apart when a slick SAP VAR told the go-getter brother what kind of "efficiencies" he could gain by instituting automation for certain processes (that were not broken), such as their rapid replenishment system. And you know, he may have been technically right, in theory, but the way it was rolled out was wrong, so wrong. It kills me to see the waste and angst that occurred. What I uncovered in my analysis was ghastly.</p>
<p><em>The business had good, efficient, in-place processes that were refined over years of real-word use.</em> One could say with confidence that <strong>they</strong> were the experts in <strong>their</strong> business of brokering specialty PCB  manufacturing components.  With a system of carefully maintained files, an aging yet stable <a class="zem_slink" title="Oracle Database" rel="homepage" href="http://www.oracle.com/">Oracle database</a>, and an integrated fax and imaging server, (not to mention a cadre of smart staffers), they had their shizzle down proper.</p>
<p>Now in comes SAP, whoo-hoo, and with a VAR completes a one week (!), once-over-lightly, pre-sale process study that concludes....wait for it now....that the processes must be changed to thus and so, and SAP SCN is the way to do it.</p>
<p>Can't do it your way anymore, only this wholesale re-engineering with THIS  package, this support, this training, and these database upgrades (by the way, you will need this hardware list), is the way to enter this new and efficient era. Baby brother, the go-getter, was sold!  With this complex burdening of the IT infrastructure, he had the means to unconsciously usurp his older brother while maintaining an appearance of propriety. It all seems to be good for the business, no? No. He probably believed it, too.</p>
<p>Many elementary rules were broken, once the trigger was pulled. They signed agreements, did no competitive RFPs, and neither held nor researched vendor cook-offs and comparisons. But most of all, they turned over their process studies to a vendor with skin in the game. This is a no-no.</p>
<p>Rule Number One: Never examine work processes in light of a software project. Corollary: make all examinations of process purely IT systems neutral. NEVER let a vendor run your process studies.</p>
<p>This company had every reason to examine process and systems upgrades, with possible concomitant IT systems augmentations. They had numerous human-centered processes in their daily grind that were bound by the expertise of a sole person who owned the processes - a scenario ripe for automation. Such solutions not only multiply an incumbent expert's productivity, but also empower other employees to  cover the expert's mission in their absence. That's what system re-engineering is all about.</p>
<p>Not the wholesale destruction of processes cultured over a thirty year life-cycle, no sir.</p>
<p><em>Changes to mature processes must fit the ultimate strategy and purposes of the business, not the IT vendor.</em></p>
<p>This misalignment is common, and has led to some un-G-dly statistic that a large percentage of SAP client licenses go un-deployed after the sale is closed and the project is found to be irredeemably broken. It figures that these un-implemented SAP seats are most often found in mid-tier companies.</p>
<p>These mid-tier stalwarts are the vulnerable ones - too big to do nothing, too small to afford the massive resources to de-funk badly screwed up ERP projects that are in their second phase of non-performance by anyone's yardstick.</p>
<p>In the next Installment, I will tell you what I discovered, and what my recommendations were. That's where I left it; I billed them for the analysis, and left a quote for the follow-on work. I think I heard the screaming start to rise in their throats (with the exception of the poor IT director, the guy who had been saddled with a thing he never recommended) as I exited the building.</p>
<p>One thing before I go: If you are mid-project, and you are fighting over when to pull the plug on the old stable systems, and the new one isn't working quite right, and the meetings have like 20-30 stakeholders in the room with vendors with MS Project CPM's and power points and memos to move onto the next 125k phase....</p>
<p>You've got a problem.</p>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/7f9548ae-17c3-4b88-b377-ea2a9ea6fbef/"><img class="zemanta-pixie-img" style="border:medium none;float:right;" src="http://img.zemanta.com/reblog_e.png?x-id=7f9548ae-17c3-4b88-b377-ea2a9ea6fbef" alt="Zemanta Pixie" /></a></div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Patient Relationship Management: Streamlined Approaches for Defragmenting Healthcare]]></title>
<link>http://alfredopascali.wordpress.com/?p=12</link>
<pubDate>Fri, 04 Jul 2008 12:29:50 +0000</pubDate>
<dc:creator>alfredopascali</dc:creator>
<guid>http://alfredopascali.wordpress.com/?p=12</guid>
<description><![CDATA[Segnalo questo illuminante articolo pubblicato on line su NHS Connecting for Health, che argomenta i]]></description>
<content:encoded><![CDATA[<p>Segnalo questo illuminante <a href="http://www.connectingforhealth.nhs.uk/newsroom/worldview/protti11/" target="_blank">articolo</a> pubblicato on line su NHS Connecting for Health, che argomenta in modo approfondito (approccio strategico - non solo tecnologico -, cos'è e cosa non è il CRM in sanità, differenze uso tra profit e no profit, riferimenti bibliografici) come il CRM è utile in sanità in UK per deframmentare l'assistenza sanitaria nella rete di erogatori di servizi, focalizzando la rete sulla reale centralità del singolo paziente.</p>
<p><a href="http://www.connectingforhealth.nhs.uk/newsroom/worldview/protti11/">http://www.connectingforhealth.nhs.uk/newsroom/worldview/protti11/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[SAP Best Practices for CRM: Positioning and Concept of Use]]></title>
<link>http://hptv04.wordpress.com/?p=486</link>
<pubDate>Fri, 04 Jul 2008 07:08:58 +0000</pubDate>
<dc:creator>hptv</dc:creator>
<guid>http://hptv04.wordpress.com/?p=486</guid>
<description><![CDATA[This paper attempts to position SAP Best Practices for CRM and answer several key questions regardin]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;">This paper attempts to position SAP Best Practices for CRM and answer several key questions regarding the use of SAP BEST PRACTICES. It also provides a useful overview of SAP BEST PRACTICES for consultants and project leads that are interested in SAP BEST PRACTICES and are considering using them in their projects.</p>
<p style="text-align:justify;">...download here: <a href="http://hptv04.files.wordpress.com/2008/07/sap_best_practice_for_crm.pdf">sap_best_practice_for_crm</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Top 5 Customer Information Bottlenecks]]></title>
<link>http://dataforcecrm.wordpress.com/?p=134</link>
<pubDate>Thu, 03 Jul 2008 15:50:28 +0000</pubDate>
<dc:creator>SalesGuy</dc:creator>
<guid>http://dataforcecrm.wordpress.com/?p=134</guid>
<description><![CDATA[Putting Our Arms Around the Customer Data Problem
5 Customer Data Integration Problems
Jill Dyche an]]></description>
<content:encoded><![CDATA[<h1>Putting Our Arms Around the Customer Data Problem</h1>
<h2>5 Customer Data Integration Problems</h2>
<p>Jill Dyche and Evan Levy, gurus in this field, have boiled the challenges down to five primary categories:</p>
<ol>
<li><strong>Completeness</strong> – You don’t have all the data you need to make sound business or organizational decisions</li>
<li> <strong>Latency</strong> – It takes too long to make the data valuable…by the time you can use it, too much is obsolete or outdated (slowed by operational systems or extraction methods)</li>
<li> <strong>Accuracy</strong> – What percentage of your data is inaccurate…your Achilles’ heel</li>
<li> <strong>Management</strong> – Data integration, governance, stewardship, operations and distribution all combine to make-or-break data-value and</li>
<li> <strong>Ownership</strong> – The more disparate data-source owners, the more silos of data, the more difficult it will be to solve the problems.</li>
</ol>
<p>Our consultants have written a new Journal addressing the top 5 customer data integration issues. Get yours here:<a title="customer Data Integration Guide" href="http://www.pim-data.com/customer_data_integration"> Customer Data Integration Journal</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Your Company Rocks in a Rough Ocean of Customer Data]]></title>
<link>http://dataforcecrm.wordpress.com/?p=133</link>
<pubDate>Thu, 03 Jul 2008 15:47:14 +0000</pubDate>
<dc:creator>SalesGuy</dc:creator>
<guid>http://dataforcecrm.wordpress.com/?p=133</guid>
<description><![CDATA[Customer Data Changes Constantly
Customer information changes constantly, or can be entered in error]]></description>
<content:encoded><![CDATA[<h2>Customer Data Changes Constantly</h2>
<p>Customer information changes constantly, or can be entered in error, or fraudulently. And, for most medium to large business or organizations, the data is stored in several different places, different departments, different locations,in different formats, etc.</p>
<p>This stuff is extremely complex and ultra-dynamic due to the many changes individuals go through in the course of their lives. Multiply all these fields by the millions of records a business or organization has in its data sources, then consider how quickly and how often this information changes.</p>
<h2>The Amount of Inaccurate Customer Data is Staggering</h2>
<p>The results are staggering. The Data Warehousing Institute (TDWI)says, “The problem with data is that its quality quickly degenerates over time. Experts say 2% of records in a customer file become obsolete in one month because customers die, divorce, marry and move.”</p>
<p>To put this statistic into perspective, assume that a company or charity has 500,000 customers, donors or prospects in its databases. If 2% of these records become obsolete in one month, that is 10,000 records per month or 120,000 records every year. So, in two years, about half of all the records are obsolete, if left unchecked.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Termina con éxito el curso de Certificación en CRM]]></title>
<link>http://mundocontact.wordpress.com/?p=163</link>
<pubDate>Thu, 03 Jul 2008 02:10:01 +0000</pubDate>
<dc:creator>Valdir Ugalde</dc:creator>
<guid>http://mundocontact.wordpress.com/?p=163</guid>
<description><![CDATA[Con los módulos &#8220;Identificando y Creando Valor para el Cliente&#8221;, presentado por José C]]></description>
<content:encoded><![CDATA[<p>Con los módulos "Identificando y Creando Valor para el Cliente", presentado por <a title="José Corona" href="http://mundocontact.wordpress.com/category/autores/jose-corona/" target="_self">José Corona</a>, y "La Gestión de Cambios en CRM", impartido por <a title="Jesús Hoyos" href="http://mundocontact.wordpress.com/category/autores/jesus-hoyos-autores/" target="_self">Jesús Hoyos</a>, terminó el <a title="Certificación en CRM" href="http://www.customersforever.com/content.aspx?page_id=22&#38;club_id=210565&#38;module_id=19128" target="_blank">curso de Certificación de CRM</a> en la Ciudad de México.</p>
<p>A este curso asistieron cerca de 30 ejecutivos provenientes de diversos sectores, desde el de seguros y finanzas hasta el de entretenimiento y la academia.</p>
<p>Creo que se aprendieron lecciones muy valiosas, además de que hubo una participación muy activa por parte de los asistentes. Las presentaciones por parte de Jesús y de José fueron extraordinarias, y sin duda estaremos pendientes de las siguientes fechas en las que se impartirá el curso en otras ciudades alrededor de Latinoamérica.</p>
<p>He aquí una foto de los participantes:</p>
<p style="text-align:center;"><a href="http://mundocontact.files.wordpress.com/2008/07/dsc_04781.jpg"><img class="size-medium wp-image-169 aligncenter" src="http://mundocontact.wordpress.com/files/2008/07/dsc_04781.jpg?w=300" alt="" width="300" height="200" /></a></p>
]]></content:encoded>
</item>

</channel>
</rss>
