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

<channel>
	<title>Levementum&#039;s Blog:  &#34;The Open Source Pragmatist&#34; &#187; Geoffrey Mobisson</title>
	<atom:link href="http://opensource-pragmatist.com/author/geoffrey-mobisson/feed/" rel="self" type="application/rss+xml" />
	<link>http://opensource-pragmatist.com</link>
	<description>pragmatist (n). one who has a practical, matter-of-fact way of approaching or assessing situations or of solving problems.</description>
	<lastBuildDate>Fri, 13 Jan 2012 02:02:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>A Review of SugarCRM Web Services &#8211; from a Business Value Perspective</title>
		<link>http://opensource-pragmatist.com/2011/12/23/a-review-of-sugarcrm-web-services-from-a-business-value-perspective/</link>
		<comments>http://opensource-pragmatist.com/2011/12/23/a-review-of-sugarcrm-web-services-from-a-business-value-perspective/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 01:18:14 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Insight & Thoughts]]></category>
		<category><![CDATA[Software & Technology]]></category>
		<category><![CDATA[cloud-computing]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[Geoffrey Mobisson]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[levementum]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[sugarcrm]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=484</guid>
		<description><![CDATA[In this review, you will learn how and why the SugarCRM Web Services Platform is a reliable, scalable, and cost-effective method of integrating to your SugarCRM application, regardless of the selection of an On-Demand or On-Premise infrastructure.]]></description>
			<content:encoded><![CDATA[<h2>Introduction</h2>
<address>An introduction to SugarCRM’s web Service framework</address>
<p>In this review, you will learn how and why the SugarCRM Web Services Platform is a reliable, scalable, and cost-effective method of integrating to your SugarCRM application, regardless of the selection of an On-Demand or On-Premise infrastructure.</p>
<p>The flexibility of SugarCRM’s Web Services allows you to choose the integration programming models, languages, and operating systems that you are already using or that are best suited for your project. With SugarWS, you can bring your existing skills and knowledge to the platform; you don&#8217;t have to learn lots of new skills.</p>
<p>SugarCRM dramatically reduces the effort to integrate with either on-premises applications including Microsoft, Oracle, SAP, or other third-party solutions and external cloud services such as Amazon Web Services, Facebook, Google AppEngine, and Twitter.  A large percentage of the traffic in SugarCRM’s On-Demand infrastructure is system-to-system integration, showing that it is a trusted and successful enterprise API that is used globally by SugarCRM clients worldwide.</p>
<h2>SugarCRM Web Services</h2>
<address>A summary of the features and capabilities of SugarCRM web services</address>
<p>SugarWS provides a number of paths to integration success—all based on our industry-leading Web services API. Integration with SugarWS means faster, simpler, and less-risky integration that doesn’t break during upgrades and delivers a new level of access and agility to your existing IT investments.   SugarWS is designed to work with all major integration middleware solutions, and for building custom integrations plus maximum flexibility and choice, the SugarWS platform supports all major development environments and tools, including .NET, Java, PHP, Ruby on Rails, and many more.</p>
<p>Besides a robust SOAP interface with a revamped list of available calls, SugarWS introduced major updates to the framework in 2009 such as Versioning and Extensibility, and the addition of a new REST interface.</p>
<p>Prior to 2009, the SugarCRM web services API had a wide variety of calls allowing you to get at almost any piece of data in the system. One downside of the diversity of calls, was that accomplishing certain tasks via the API could be burdensome in that while flexible, an integration might require multiple calls to complete a task (traversing and retrieving the details of related items is one such example). In 2009 SugarCRM rewrote all of the API calls. Based on the improvements to the framework, SugarCRM was able to reduce the number of calls down to 20 by allowing for the passing of extra parameters in to certain calls and eliminate the number of round trips to the server.</p>
<p>Call 	Description<br />
login() 	Logs the user into the Sugar application and create a session<br />
logout() 	Logs out the user and ends the current session<br />
seamless_login() 	Used for Sugar Offline Client or to accomplish single sign on<br />
get_user_id() 	Returns the user_id of the user who is logged into the current session<br />
get_entry() 	Retrieves a single record with details based on the ID<br />
get_entries() 	Retrieves multiple records based on IDs. This API is not applicable to the Reports module.</p>
<p>get_entry_list() 	Retrieves a list of records for a given module<br />
get_relationship() 	Retrieves a collection of module records that are related to a target record and optionally return relationship data for the related beans.<br />
get_note_attachment() 	Retrieves an attachment from a note<br />
get_document_revision() 	Allows an authenticated user with the appropriate permission to download a document.<br />
set_entry() 	Creates or updates a single module record<br />
set_entries() 	Creates or updates a list of module records<br />
set_relationship() 	Sets a single relationship between two records where they are related by module name and ID.<br />
set_relationships() 	Sets multiple relationships between two records where they are related by module name and ID<br />
set_note_attachment() 	Adds or replaces an attachment to a note<br />
set_document_revision() 	Sets a new revision to the document<br />
search_by_module() 	Returns the ID, module_name, and fields for the specified modules as specified in the search string.<br />
get_server_info() 	Obtains server information such as version and GMT time<br />
get_module_fields() 	Retrieves the vardef information on fields of the specified module</p>
<p>SOAP is probably the most used web services protocol. It provides a way of exchanging structured information of application functionality. A SOAP interface can be defined by its WSDL (Web Service Description Language) file. To access the WSDL for Sugar Web Services API you can read it by going to this URL in your browser: http://sugar_root_url/service/v2/soap.php?wsdl. The WSDL file will give complete explanation of all the methods with input/output data type.</p>
<p>Sugar Web Services also supports a robust REST interface. This adds a lightweight integration to gain access to data in a system. REST is preferable for higher transactional web integrations, as well as browser client side implementations where all rendering happens in the browser. To connect to the REST interface in the new web services framework you will connect to the following URL: http://your_sugar_url/service/v2/rest.php.</p>
<h2>Widely Available Web Service “Stubs” from SugarExchange – notable examples</h2>
<address>A list of popular “ready-to-consume” integrations for SugarCRM that are available on the Sugar Exchange (http://www.sugarexchange.com), and that utilize Sugar Web Services</address>
<p>The following integration sets are readily available from SugarExchange.  These allow for communication to/from SugarCRM, and make use of the SugarWS for integration purposes.  This is NOT an exhaustive list:</p>
<ul>
<li>QuickBooks Real-time Integration</li>
<li>Adobe Echo Sign Integration</li>
<li>Authorize.Net Integrations</li>
<li>BonitaSoft Workflow Integration</li>
<li>Contivio Integration for Telephony</li>
<li>eXo Plug-in for SugarCRM</li>
<li>IBM Websphere CastIron
<ul>
<li>Salesforce.com</li>
<li>Oracle Applications</li>
<li>SAP</li>
<li>Oracle CRM</li>
<li>Amazon</li>
<li>Chatter</li>
<li>Microsoft Dynamics</li>
<li>Eloqua</li>
<li>PROS</li>
<li>SignalDemand</li>
<li>Zuora</li>
<li>Google Apps</li>
<li>NetSuite</li>
<li>RightNow</li>
<li>Teleo</li>
<li>SPS Commerce</li>
</ul>
</li>
<li>iZeno Integration</li>
<li>JigSaw Integration</li>
<li>ProcessMaker API</li>
<li>Sage MAS90 Integration</li>
<li>Talend Integration</li>
<li>Velaro Chat Integration</li>
</ul>
<h2>Example Scenarios of Web Service Use</h2>
<address>A set of varied customer examples of SugarCRM Web Services in use…in production environments today!  All of these are current Levementum customers.</address>
<address> </address>
<address><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/12/MobileERP.jpg"><img class="alignleft size-full wp-image-493" title="MobileERP" src="http://opensource-pragmatist.com/wp-content/uploads/2011/12/MobileERP.jpg" alt="" width="598" height="269" /></a></address>
<address> </address>
<address><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/12/InvestWork.jpg"><img class="alignleft size-full wp-image-491" title="InvestWork" src="http://opensource-pragmatist.com/wp-content/uploads/2011/12/InvestWork.jpg" alt="" width="598" height="268" /></a></address>
<address><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/12/CRMCiscoValeroERP.jpg"><img class="alignleft size-full wp-image-489" title="CRMCiscoValeroERP" src="http://opensource-pragmatist.com/wp-content/uploads/2011/12/CRMCiscoValeroERP.jpg" alt="" width="599" height="264" /></a></address>
<address> </address>
<address><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/12/ComplexOps.jpg"><img class="alignleft size-full wp-image-488" title="ComplexOps" src="http://opensource-pragmatist.com/wp-content/uploads/2011/12/ComplexOps.jpg" alt="" width="605" height="270" /></a></address>
<address> </address>
<h1>Summary</h1>
<p>Web services create compatibility and interoperability among various packaged and customized Web applications – in a standardized and vendor-neutral manner. Web services are most economical – and beneficial – when used in an enterprise-level business scenario that combines the functionality of multiple applications into easy-to-use enterprise services. Such a business scenario requires a service-oriented architectural approach.</p>
<p>For SugarCRM, Web services play an important role in the concept of enterprise service-oriented architecture (enterprise SOA). Web services ensure interoperability between platforms, and all communication within enterprise SOA is based on Web services. Enterprise services expose the functionality and data of applications so that they can be accessed by any service user. Just as Web services take the complexity out of platform connectivity, enterprise services take the complexity out of application integration</p>
<p>&nbsp;</p>
<address> </address>
<address> </address>
<address> </address>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/12/23/a-review-of-sugarcrm-web-services-from-a-business-value-perspective/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jive &#8211; a passionate and disruptive slant on Social CRM (retort &#8211; part 2)</title>
		<link>http://opensource-pragmatist.com/2011/12/05/jive-a-passionate-and-disruptive-slant-on-social-crm-retort-part-2/</link>
		<comments>http://opensource-pragmatist.com/2011/12/05/jive-a-passionate-and-disruptive-slant-on-social-crm-retort-part-2/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 18:19:37 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Insight & Thoughts]]></category>
		<category><![CDATA[Software & Technology]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=470</guid>
		<description><![CDATA[CRM isn’t SRM (Sales Relationship Management)…its "x"-RM, which covers customer support, highly transactional operational models, team collaboration, oversight, and varied vertical applications]]></description>
			<content:encoded><![CDATA[<p><a title="Jive – a passionate and disruptive slant on Social CRM (part 1)" href="http://opensource-pragmatist.com/2011/12/05/jive-a-passionate-and-disruptive-slant-on-social-crm-part-1/">&lt;see Part 1&gt;</a></p>
<p>&#8220;OK&#8230;well allow me to retort&#8230;&#8221; &#8211; Samuel L. Jackson in Pulp Fiction.</p>
<p>This is very very interesting.  But also a horrifically flawed assessment.  The fundamental premise of this whole paper is that “history” is useless.  Now I understand the debate platform at the micro level – yes CRM’s traditional value at the level of the Salesperson can be argued to be an after-the-fact model, that doesn’t do a whole lot for the sales person in real time, and in a predicative sense….but so what.  We use it at the macro – to assess trends, to identify our weakness and strength organizationally, and to support resourcing and planning decisions.  Furthermore, the basis of the paper really only sees the B2B sales model as its fundamental use case.</p>
<p>I think that’s the problem – 1. Its really NOT about the salesperson, its about the organization as a whole, and providing clarity to leadership as they plot macro changes.  2. CRM isn’t SRM (Sales Relationship Management)…its XRM, which covers customer support, highly transactional operational models, team collaboration, oversight, and varied vertical applications that simply need clarity in terms of how the various folks involved not only in sales, but operational concerns, come together to deliver value.</p>
<p>In any case – I like the passion in the presentation…we’ll see how it plays.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/12/05/jive-a-passionate-and-disruptive-slant-on-social-crm-retort-part-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SugarCRM Demonstration Videos on Levementum.com</title>
		<link>http://opensource-pragmatist.com/2011/08/31/sugarcrm-demonstration-videos-on-levementum-com/</link>
		<comments>http://opensource-pragmatist.com/2011/08/31/sugarcrm-demonstration-videos-on-levementum-com/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 01:19:21 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=422</guid>
		<description><![CDATA[Levementum just added a host of SugarCRM demonstration videos to their sites.  Thes include Sales, Marketing, Support, Adminstrative and MObile demos&#8230;take a look:  http://www.levementum.com/technology/sugarcrm/sugarcrm-demonstration-videos]]></description>
			<content:encoded><![CDATA[<p>Levementum just added a host of SugarCRM demonstration videos to their sites.  Thes include Sales, Marketing, Support, Adminstrative and MObile demos&#8230;take a look:  <a href="http://www.levementum.com/technology/sugarcrm/sugarcrm-demonstration-videos">http://www.levementum.com/technology/sugarcrm/sugarcrm-demonstration-videos</a></p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/08/31/sugarcrm-demonstration-videos-on-levementum-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Industry analysis on SugarCRM as an alternative to Salesforce.com</title>
		<link>http://opensource-pragmatist.com/2011/07/12/industry-analysis-on-sugarcrm-as-an-alternative-to-salesforce-com/</link>
		<comments>http://opensource-pragmatist.com/2011/07/12/industry-analysis-on-sugarcrm-as-an-alternative-to-salesforce-com/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 21:06:38 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Software & Technology]]></category>
		<category><![CDATA[levementum]]></category>
		<category><![CDATA[salesforce]]></category>
		<category><![CDATA[software advice]]></category>
		<category><![CDATA[sugar vs salesforce]]></category>
		<category><![CDATA[sugarcrm]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=403</guid>
		<description><![CDATA[We are seeing the erosion of Salesforce.com's first mover advantage, as players like SugarCRM are delivering higher value across multiple dimensions.]]></description>
			<content:encoded><![CDATA[<p>Make no mistake about it, Salesforce.com is the 800 lb. gorilla of CRM.  It is what it is&#8230;just as Siebel was 10 years ago. The good news is that just as Siebel introduced core &#8220;model&#8221; concepts around CRM in the 90s, Salesforce.com has introduced and energized the SAAS/Cloud delivery strategy for enterprise applications in the 21st century. The end result?  A set of highly competitive and differentiated choices for CRM today.  Furthermore, we are seeing the erosion of first mover advantage, as players like <a href="www.levementum.com/technology/sugarcrm">SugarCRM </a>are delivering higher value than Salesforce.com in specific dimensions.</p>
<p><a href="http://www.softwareadvice.com/articles/lauren-carlson/"><strong>Lauren Carlson</strong> of <strong>Software Advice</strong></a><strong>,</strong> makes a compelling case to this effect in her article<a href="http://www.softwareadvice.com/articles/crm/salesforce-alternatives-5-systems-to-consider-1052011/" target="_blank"> &#8220;<strong>Salesforce Alternatives | 5 Cloud CRM Systems to Consider</strong>&#8220;.</a></p>
<p>Carlson writes a great article that presents SugarCRM, Oracle CRM On-Demand, NetSuite, Microsoft Dynamics and Sage Saleslogix, as viable, and in some cases, superior options to Salesforce.</p>
<p>I found her thoughts on SugarCRM to be very interesting: a focus not only on price, but on flexibility: &#8220;SugarCRM allows for a more personalized customer experience,&#8221; cites Carlson, &#8220;There are multiple dashboards that can be customized based on your role or what metrics you need to track.&#8221;</p>
<p><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/03/Professional-Level-Chart.jpg"><img class="alignleft size-full wp-image-240" title="Professional Level Chart" src="http://opensource-pragmatist.com/wp-content/uploads/2011/03/Professional-Level-Chart.jpg" alt="" width="463" height="479" /></a></p>
<p>Of course the value equation is also clear in her rearh conclusions,&#8221;SugarCRM is competitive in terms of features for basic sales, service and marketing activities, but where it really stands out is on price. The most basic offering is free to download. There are also the Professional CRM and Enterprise CRM editions that start at $30 and $50 per user, per year, respectively. This makes SugarCRM one of the most cost-effective CRM options available.&#8221;</p>
<p>Read Lauren&#8217;s full article here: <a href="http://www.softwareadvice.com/articles/crm/salesforce-alternatives-5-systems-to-consider-1052011/">&#8220;Salesforce Alternatives | 5 Cloud CRM Systems to Consider&#8221;.</a></p>
<p>As the owner of a SugarCRM VAR, I’ve spent a lot of time over the past years comparing, selling and writing about SugarCRM relative to Salesforce in particular&#8230;so I believe SugarCRM has a distinct advantage: in a nutshell it often does come down to cost/functional parity….where SugarCRM beats just about everyone, but perhaps the two areas of real differentiation for Sugar are, one….the fact that SugarCRM provides you not only with a SAAS offering, but also an option to install on-Premise, at no additional cost….and two, the open source characteristics of SugarCRM which essentially eliminate any and all barriers to integration, customization, or data extraction…which for most firms, is critical.  In variably, CRM is most effective (from an adoption perspective) when its integrated with other social and operational systems, and is most valuable (from an intelligence perspective) when you can freely assess and analyze the facts contained in them, to demystify what has been traditionally understood to be “tribal knowledge”.</p>
<p>Achieving these results requires an open and un-impeded ability to integrate and extract data to and from your CRM, and that’s where Sugar wins.</p>
<p>What has helped Sugar though as of late, has been the improvement to the User Interface, the expansion of Security features, and the alignment to technology partners like Pardot, GoodData, InsideView and Contivio, which allows SugarCRM to finally compete in the mid to large enterprise markets.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/07/12/industry-analysis-on-sugarcrm-as-an-alternative-to-salesforce-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>eBay buys Magento&#8230;what does it mean?</title>
		<link>http://opensource-pragmatist.com/2011/06/06/ebay-buys-magento-what-does-it-mean/</link>
		<comments>http://opensource-pragmatist.com/2011/06/06/ebay-buys-magento-what-does-it-mean/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 00:05:22 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Industry]]></category>
		<category><![CDATA[Insight & Thoughts]]></category>
		<category><![CDATA[Software & Technology]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[levementum]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[mobisson]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=396</guid>
		<description><![CDATA[As most of you know, eBay bought out Magento last week, picking up the 51% of the company it didn&#8217;t own.  While I have no idea what they paid for it, we do know that its initial purchase of Magento (the 49%) valued the company at 45 million.  I would bet the farm that the &#8230; </p><p><a class="more-link block-button" href="http://opensource-pragmatist.com/2011/06/06/ebay-buys-magento-what-does-it-mean/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/06/6-6-2011-5-03-11-PM.jpg"><img class="alignnone size-full wp-image-397" title="magento" src="http://opensource-pragmatist.com/wp-content/uploads/2011/06/6-6-2011-5-03-11-PM.jpg" alt="" width="434" height="67" /></a></p>
<p>As most of you know, eBay bought out Magento last week, picking up the 51% of the company it didn&#8217;t own.  While I have no idea what they paid for it, we do know that its initial purchase of Magento (the 49%) valued the company at 45 million.  I would bet the farm that the remaining 51% cost them at least 2-3 times as much, netting them out at a valuation of between 100-200m, and fetching at least 50-100m in this transaction.  That is, of course, pure speculation.</p>
<p>More importantly, the question is, what does this mean for Customers and Partners? <a title="eBay Acquires Magento: What it means" href="http://blogs.forrester.com/brian_walker/11-06-06-ebay_acquires_magento_what_it_means?cm_mmc=RSS-_-MS-_-1711-_-blog_1919" target="_blank">I feel Brian Walker&#8217;s take on this at the Forrester Blog</a> is right on the money:</p>
<p><span style="color: #993300;"><strong>For Magento users, this is a very good thing.</strong> It is  time for Magento to mature as a solution and as a business. The same  development approach and business practices which can support a small  insurgent open source commerce platform do not scale to supporting  multiple products with very diverse needs and across many maturing  clients. Users of Magento’s enterprise solution have been struggling  with support and product traction as Magento invested in the MagentoGo  SaaS solution and tried to manage a rodeo of new and existing partners,  customer acquisition, and diverse product initiatives. In retrospect  this was too much to take on at once, and Magento may have outgrown  their ability to deliver on the expectations. With the completion of  this acquisition eBay has the ability to clarify the product  initiatives, add needed investment to product development, and mature  the support given to developers, partners and customers. A failure to do  so will erode the Magento value proposition and see a raft of clients  evaluating their long term commerce capability solution providers and  platforms.  It will take time for the core challenges to resolve, so for  Magento users struggling now this announcement will mean little in the  short-term. For Magento users in the longer-term this should be a  positive.</span></p>
<p>So, we will see&#8230;.and Levementum, as a Magento partner is excited about the change, and optimistic about the future!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/06/06/ebay-buys-magento-what-does-it-mean/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Notes fom SugarCON 2011: Mindtouch&#8217;s Product Help session&#8230;.DO NOT MISS THIS!</title>
		<link>http://opensource-pragmatist.com/2011/04/06/notes-fom-sugarcon-2011-mindtouchs-product-help-session-do-not-miss-this/</link>
		<comments>http://opensource-pragmatist.com/2011/04/06/notes-fom-sugarcon-2011-mindtouchs-product-help-session-do-not-miss-this/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 23:22:10 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Industry]]></category>
		<category><![CDATA[Insight & Thoughts]]></category>
		<category><![CDATA[Software & Technology]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[document management]]></category>
		<category><![CDATA[levementum]]></category>
		<category><![CDATA[mindtouch]]></category>
		<category><![CDATA[product help]]></category>
		<category><![CDATA[sugarcon]]></category>
		<category><![CDATA[sugarcon 2011]]></category>
		<category><![CDATA[sugarcrm]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=370</guid>
		<description><![CDATA[So  &#8211; I just got a preview of Aaron Fukerson&#8217;s presentation at SugarCON.   I will not steal his thunder before his session &#8211; but holy toledo, was I impressed by it! So&#8230;.without any spoilers, here is the 30,000 ft summary:   &#8230;We all know how hard it is to take the tweets, blogs, forums, threads, likes, &#8230; </p><p><a class="more-link block-button" href="http://opensource-pragmatist.com/2011/04/06/notes-fom-sugarcon-2011-mindtouchs-product-help-session-do-not-miss-this/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/03/2011SugarConLogo.png"><img class="alignleft size-full wp-image-210" title="2011SugarConLogo" src="http://opensource-pragmatist.com/wp-content/uploads/2011/03/2011SugarConLogo.png" alt="SugarCON 2011" width="587" height="99" /></a></p>
<p>So  &#8211; I just got a preview of Aaron Fukerson&#8217;s presentation at SugarCON.   I will not steal his thunder before his session &#8211; but <em><strong>holy toledo,</strong></em> was I impressed by it!</p>
<p>So&#8230;.without any spoilers, here is the 30,000 ft summary:   &#8230;We all know how hard it is to take the <strong>tweets, blogs, forums, threads, likes, shares, and rich dynamic content</strong>&#8230;.and turn them into a recognizable element or artifact for use in a business context.</p>
<p>Aaron and his team at Mindtouch have it figured out.</p>
<p>Go listen&#8230;5:05 pm at SugarCON 2011.  Track 4.</p>
<p>UPDATE 4/6/2011 4:11 PST &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;Spoiler alert!!!</p>
<p><a href="http://www.slideshare.net/mindtouch/sugarcon-2011-product-help-as-the-foundation-for-scrm">He uploaded his presentation on slideshare before the event&#8230;heh heh heh</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/04/06/notes-fom-sugarcon-2011-mindtouchs-product-help-session-do-not-miss-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes from SugarCON 2011: In the world of Marketing&#8230;Pardot is a winner.</title>
		<link>http://opensource-pragmatist.com/2011/04/06/notes-from-sugarcon-2011-in-the-world-of-marketing-pardot-is-a-winner/</link>
		<comments>http://opensource-pragmatist.com/2011/04/06/notes-from-sugarcon-2011-in-the-world-of-marketing-pardot-is-a-winner/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 23:04:04 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Insight & Thoughts]]></category>
		<category><![CDATA[Software & Technology]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[levementum]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[marketing automation]]></category>
		<category><![CDATA[pardot]]></category>
		<category><![CDATA[saas]]></category>
		<category><![CDATA[sugarcon]]></category>
		<category><![CDATA[sugarcon 2011]]></category>
		<category><![CDATA[sugarcrm]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=359</guid>
		<description><![CDATA[So SugarCON 2011 is in its 2nd day&#8230;.and its hard to believe that its over in 2 hours.  You will not find a more intense 48 hours of organized conference chaos anywhere else in Silicon Valley. So&#8230;IBM and its pragmatic play with SugarCRM and LotusLive, definitely real, definitely NOT vapor, and definitely a winner. Another &#8230; </p><p><a class="more-link block-button" href="http://opensource-pragmatist.com/2011/04/06/notes-from-sugarcon-2011-in-the-world-of-marketing-pardot-is-a-winner/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>So SugarCON 2011 is in its 2nd day&#8230;.and its hard to believe that its over in 2 hours.  You will not find a more intense 48 hours of organized conference chaos anywhere else in Silicon Valley.</p>
<p>So&#8230;IBM and its pragmatic play with SugarCRM and LotusLive, definitely real, definitely NOT vapor, and definitely a winner.</p>
<p><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/04/pardot.jpg"><img class="alignleft size-full wp-image-360" title="pardot" src="http://opensource-pragmatist.com/wp-content/uploads/2011/04/pardot.jpg" alt="" width="213" height="82" /></a>Another winner?  Pardot.  Pardot.  Pardot.</p>
<p>Now this might seem like old news &#8211; but its pretty clear to me that either A) Pardot is having a lot of success working it way into the SugarCRM customer base, B) They view their SugarCRM partnership as strategic, and thus are investing aggressively in it, or C) A &amp; B.</p>
<p>Either way, Pardot&#8217;s comprehensive (and well integrated offering) turbocharges SugarCRM in the area of Marketing Automation.  Flexible campaigns, DRIPS, analytics, tight data integration with Leads and Contacts in Sugar, a great UI integration with SugarCRM.</p>
<p>Levementum (my company) is not  a customer (or partner) of Pardot&#8230;but I&#8217;ve seen enough to buy the solution.  And after we figure it out (&#8230;we do &#8220;eat our own dog food&#8221; at Levementum), I have little doubt that Pardot is going to be a valuable complement to our SugarCRM practice offering.</p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/04/06/notes-from-sugarcon-2011-in-the-world-of-marketing-pardot-is-a-winner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes from SugarCON2011: SugarCRM and LotusLive?&#8230;.it&#8217;s the real deal</title>
		<link>http://opensource-pragmatist.com/2011/04/05/notes-from-sugarcon2011-sugarcrm-and-lotuslive-its-the-real-deal/</link>
		<comments>http://opensource-pragmatist.com/2011/04/05/notes-from-sugarcon2011-sugarcrm-and-lotuslive-its-the-real-deal/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 23:55:34 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Industry]]></category>
		<category><![CDATA[Insight & Thoughts]]></category>
		<category><![CDATA[Software & Technology]]></category>
		<category><![CDATA[cloud-computing]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[levementum]]></category>
		<category><![CDATA[lotuslive]]></category>
		<category><![CDATA[sugarcon]]></category>
		<category><![CDATA[sugarcon2011]]></category>
		<category><![CDATA[sugarcrm]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=338</guid>
		<description><![CDATA[Day 1 at SugarCON 2011&#8230;.and at any software conference or exposition, its easy to get carried away with the hyperbole and &#8220;vapor&#8221; of new product releases, new alliances, the latest &#8220;foo&#8221;-CRM idea. There is one solution offering though, that appears to be the real deal, and I am betting is going to get traction&#8230;fast&#8230;.and its &#8230; </p><p><a class="more-link block-button" href="http://opensource-pragmatist.com/2011/04/05/notes-from-sugarcon2011-sugarcrm-and-lotuslive-its-the-real-deal/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/04/lotuslive.jpg"><img class="alignleft size-full wp-image-339" title="lotuslive and sugarcrm" src="http://opensource-pragmatist.com/wp-content/uploads/2011/04/lotuslive.jpg" alt="lotuslive and sugarcrm" width="232" height="179" /></a></p>
<p>Day 1 at SugarCON 2011&#8230;.and at any software conference or exposition, its  easy to get carried away with the hyperbole and &#8220;vapor&#8221; of new product releases, new alliances, the latest &#8220;foo&#8221;-CRM idea.</p>
<p>There is one solution offering though, that appears to be the real deal, and I am betting is going to get traction&#8230;fast&#8230;.and its the <a href="https://www.sugarcrm.com/crm/products/webcast/LotusLive">SugarCRM &#8211; Lotus Live Collaboration integration </a>being touted by IBM and SugarCRM.</p>
<p>The short story is that LotusLive Meetings and LotusLive Documents are now integrated into SugarCRM&#8230;the details though spell out the power behind these integrations.  LotusLive Meetings cleanly integrates into the framework of CRM activity that is cataloged and managed in SugarCRM&#8217;s world of tasks, meetings, calls, etc.  Perhaps more impressively, LotusLive Documents provides a context sensitive (i.e. related to Opps, Accts, Contacts, explicitly) document management cloud, that fits cleanly into SugarCRM, and is accessible throughout the application.</p>
<p>I suppose its probably easiest to put it this way.  Levementum sells a lot of SugarCRM&#8230;.and from my perspective, its going to be fairly easy to position and sell the LotusLive offering on a large percentage of the deals we see.  Perhaps the key thing here is that I don&#8217;t see this as a &#8220;risky add-on&#8221; that potentially is a headache in the long run.  It works &#8211; and its got Big Blue behind it.</p>
<p>In any case &#8211; I&#8217;ll keep you posted on our LotusLive journey.  In the meantime, take a look at the LotusLive demo on SugarCRM&#8217;s website: <a title="https://www.sugarcrm.com/crm/products/webcast/LotusLive" href="https://www.sugarcrm.com/crm/products/webcast/LotusLive"> https://www.sugarcrm.com/crm/products/webcast/LotusLive</a></p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/04/05/notes-from-sugarcon2011-sugarcrm-and-lotuslive-its-the-real-deal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Reasons to Pick SugarCRM Over Salesforce #4: Money</title>
		<link>http://opensource-pragmatist.com/2011/03/28/top-10-reasons-to-pick-sugarcrm-over-salesforce-4-money/</link>
		<comments>http://opensource-pragmatist.com/2011/03/28/top-10-reasons-to-pick-sugarcrm-over-salesforce-4-money/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 19:48:43 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Insight & Thoughts]]></category>
		<category><![CDATA[Software & Technology]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[levementum]]></category>
		<category><![CDATA[sugarcon]]></category>
		<category><![CDATA[sugarcrm]]></category>
		<category><![CDATA[sugarcrm salesforce comparison]]></category>
		<category><![CDATA[sugarcrm vs salesforce]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=243</guid>
		<description><![CDATA[The goal of a CRM solution is to drive growth (i.e. revenue) and maximize efficiencies (i.e. profit) in business practices, processes, and relationship management (sales).  Should you have to pay a premium and be restricted on how you do this?  SugarCRM says NO!  This is why they are an open source product, why they allow &#8230; </p><p><a class="more-link block-button" href="http://opensource-pragmatist.com/2011/03/28/top-10-reasons-to-pick-sugarcrm-over-salesforce-4-money/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>The goal of a CRM solution is to drive growth (i.e. revenue) and maximize efficiencies (i.e. profit) in business practices, processes, and relationship management (sales).  Should you have to pay a premium and be restricted on how you do this?  SugarCRM says NO!  This is why they are an open source product, why they allow you to try &amp; sample their community edition solution for free, why they offer more offerings at each service level, and why they do it all at <strong>less than half the price</strong> of Salesforce.</p>
<p>SugarCRM&#8217;s Professional ready solution is $30 per month while Saleforce&#8217;s Enterprise solution is $125 per month and has FEWER KEY FEATURES! Why should your business pay more for less?  If you want to add those missing key features to Salesforce, you need to get out your wallet again because you will have to pay for the addition.  Wait, you want it customized&#8230;better pull that wallet back out.  <strong>THERE IS A BETTER WAY: SUGARCRM! </strong>They offer more at their Enterprise level, if there are additions you want to make you can select one from more that 5,700 FREE 3rd party add on applications, and since the code for SugarCRM and the application are provided to you, you can customize everything to meet your needs without paying more!</p>
<p><a href="http://opensource-pragmatist.com/wp-content/uploads/2011/03/cost.jpg"><img class="aligncenter size-large wp-image-325" title="cost" src="http://opensource-pragmatist.com/wp-content/uploads/2011/03/cost-1024x325.jpg" alt="" width="590" height="187" /></a></p>
<p>SugarCRM offers so much more, for so much less.  Is there really a comparison?</p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/03/28/top-10-reasons-to-pick-sugarcrm-over-salesforce-4-money/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top 10 Reasons to Pick SugarCRM Over Salesforce #5: Powerful Entry Commercial Offering</title>
		<link>http://opensource-pragmatist.com/2011/03/25/top-10-reasons-to-pick-sugarcrm-over-salesforce-5-powerful-entry-commercial-offering/</link>
		<comments>http://opensource-pragmatist.com/2011/03/25/top-10-reasons-to-pick-sugarcrm-over-salesforce-5-powerful-entry-commercial-offering/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 16:41:11 +0000</pubDate>
		<dc:creator>Geoffrey Mobisson</dc:creator>
				<category><![CDATA[Insight & Thoughts]]></category>
		<category><![CDATA[Software & Technology]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[sugar vs salesforce]]></category>
		<category><![CDATA[sugarcrm]]></category>
		<category><![CDATA[sugarcrm salesforce comparison]]></category>
		<category><![CDATA[sugarcrm vs salesforce]]></category>

		<guid isPermaLink="false">http://opensource-pragmatist.com/?p=239</guid>
		<description><![CDATA[SugarCRM&#8217;s Professional offering is equivalent to the Enterprise offering of Salesforce.  Salesforce&#8217;s &#8220;Professional&#8221; offering lacks basic sales force automation features which a professional CRM should have.  Who wants to pay for a &#8220;professional&#8221;  CRM solution that won&#8217;t support  a professional sales force appropriately? SugarCRM wants their customers to get the most out of their CRM &#8230; </p><p><a class="more-link block-button" href="http://opensource-pragmatist.com/2011/03/25/top-10-reasons-to-pick-sugarcrm-over-salesforce-5-powerful-entry-commercial-offering/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>SugarCRM&#8217;s Professional offering is equivalent to the Enterprise offering of Salesforce.  Salesforce&#8217;s &#8220;Professional&#8221; offering lacks basic sales force automation features which a professional CRM <em><strong>should </strong></em>have.  <a href="http://opensource-pragmatist.com/wp-content/uploads/2011/03/Professional-Level-Chart.jpg"><img class="alignnone size-medium wp-image-240" title="Professional Level Chart" src="http://opensource-pragmatist.com/wp-content/uploads/2011/03/Professional-Level-Chart-289x300.jpg" alt="" width="289" height="300" /></a></p>
<p>Who wants to pay for a &#8220;professional&#8221;  CRM solution that won&#8217;t support  a professional sales force appropriately?</p>
<p>SugarCRM wants their customers to get the most out of their CRM solution which is why they offer flexibility and more options at every level.  If you don&#8217;t believe us&#8230;review the functional comparison chart above.</p>
<p><a href="http://opensource-pragmatist.com/contact-us/"><strong>To learn more, contact us for our complete white paper and product comparison matrices!</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://opensource-pragmatist.com/2011/03/25/top-10-reasons-to-pick-sugarcrm-over-salesforce-5-powerful-entry-commercial-offering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

