<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title><![CDATA[Atcore Systems]]></title>
    <link>http://www.atcoresystems.com/blog</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>jsweeney@atcoresystems.com</dc:creator>
    <dc:rights>Copyright 2009</dc:rights>
    <dc:date>2009-01-09T20:35:45+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title><![CDATA[SugarCRM Documentation and Resources]]></title>
      <link>http://www.atcoresystems.com/blog/view/sugarcrm-documentation-and-resources</link>
      <guid>http://www.atcoresystems.com/blog/view/sugarcrm-documentation-and-resources#When:16:35:30Z</guid>
      <description><![CDATA[<p>
	Over a year ago I wrote the original <a href="http://www.crmstage.com/articles/sugarcrm-documentation-and-resources/">SugarCRM Documentation and Resources</a> piece and after taking a look back I discovered that like many articles on the web it has become a bit dated.</p>
<p>
	<br />
	SugarCRM users have more information available than ever before and today I would like to provide a rollup of many of those resources so that you can find them more easily.</p>
<p>
	<br />
	<strong>Official SugarCRM Documentation and Resources:</strong></p>
<ol>
	<li>
		<a href="http://www.sugarcrm.com/crm/support/documentation">SugarCRM Documentation for SugarCRM, Sugar Mobile, Sugar Mobile Plus and SugarCRM Plugins. &nbsp;</a></li>
	<li>
		<a href="http://www.sugarcrm.com/kb/">SugarCRM Knowledge Base&nbsp;</a></li>
	<li>
		<a href="http://developers.sugarcrm.com/wordpress/">SugarCRM Developer Blog&nbsp;</a></li>
	<li>
		<a href="http://developers.sugarcrm.com/tutorials/Recent_Additions/recent/">SugarCRM Developer Zone&nbsp;</a></li>
	<li>
		<a href="http://www.sugarcrm.com/forums/">SugarCRM Forum&nbsp;</a></li>
</ol>
<p>
	&nbsp;</p>
<p>
	<strong>Blogs:</strong></p>
<p>
	<br />
	The blogs below cover an array of topics but contain many posts related to SugarCRM usage, development and events.</p>
<ol>
	<li>
		<a href="http://blog.sugarcrm.com/">SugarCRM Corporate&nbsp;</a></li>
	<li>
		<a href="http://www.crmoutsiders.com/">CRMOutsiders</a></li>
	<li>
		<a href="http://www.eontek.rs/">EonTek&nbsp;</a></li>
	<li>
		<a href="http://cheleguanaco.blogspot.com/">Cheleguanaco</a></li>
	<li>
		<a href="http://jmertic.wordpress.com">John Mertic&nbsp;</a></li>
	<li>
		<a href="http://h2ik.co/">H2ik </a></li>
</ol>
<p>
	<strong>SugarCRM Partner Blogs:</strong></p>
<p>
	<br />
	I cannot say that I have been through every partner blog but I have been through a number of them and only two popup for the quality of SugarCRM related content. One of them is the Atcore Systems Blog and the other is Epicom which we are not affiliated with. The reason that I enjoy both of these is because they both provide details about features that have been built for other customers and include screenshots.&nbsp; This is great for anyone searching for ideas or who just wants to see how far you can go with SugarCRM as a platform.</p>
<p>
	&nbsp;</p>
<ol>
	<li>
		<a href="http://www.epicom.com/blog">Epicom Blog</a></li>
	<li>
		<a href="http://www.atcoresystems.com/blog">Atcore Systems Blog&nbsp;</a></li>
</ol>
<p>
	If you have other links that you feel should be considered then please forward them along and I would be glad to update this list.</p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2012-02-22T16:35:30+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Storing Custom SugarCRM Module Configuration Options]]></title>
      <link>http://www.atcoresystems.com/blog/view/storing-custom-sugarcrm-module-configuration-options</link>
      <guid>http://www.atcoresystems.com/blog/view/storing-custom-sugarcrm-module-configuration-options#When:16:55:30Z</guid>
      <description><![CDATA[<p>
	&nbsp;</p>
<p>
	If you ever had to build a SugarCRM module that held configuration options then you probably needed to address where to store those configuration options. For example: You may have wanted to save the API key used for integration.</p>
<p>
	Sugar comes prepared with 2 ways to do this.</p>
<p>
	&bull; File based saving of options<br />
	&bull; Database saving of options</p>
<p>
	There are no disadvantages to either method and sometimes if can be a matter of preference. It comes down to what&#39;s more easy to maintain.</p>
<p>
	Each of the methods is realized through their PHP classes. Those PHP classes are Configurator and Administrator.</p>
<p>
	<strong>SugarCRM Configurator Class:</strong></p>
<p>
	Configurator is the PHP class that will enable us to easily create additional values that are available in the global $sugar_config array. It will store additional values in the custom_override.php file and the options will be easily available by just declaring global $sugar_config.</p>
<p>
	The Configurator class is located at modules/Configurator/Configurator.php</p>
<p>
	To initialize the class we would add this to our code:</p>
<pre class="brush:php;">
require_once &#39;modules/Configurator/Configurator.php&#39;;&#10;$configurator = new Configurator();</pre>
<p>
	Now that we have created our configuration object we can use it to manipulate data.</p>
<p>
	To add a value or change an existing value we can use the follow code:</p>
<pre class="brush:php;">
$configurator-&gt;loadConfig(); // it will load existing configuration in config variable of object&#10;$configurator-&gt;config[&#39;our_new_value&#39;] = "value"; // declare new or change old value from sugar_config&#10;$configurator-&gt;saveConfig(); // save changes</pre>
<p>
	By calling the saveConfig function, the Configurator object will create new entries in config_override.php that will reflect the changes we wanted.</p>
<p>
	To read a value in code we can follow the example below:</p>
<pre class="brush:php;">
global $sugar_config; // declare global $sugar_config array&#10;$something = $sugar_config[&#39;our_new_value&#39;]; // use our new value to assign it to a variable</pre>
<p>
	<strong>Benefits:</strong></p>
<p>
	One benefit of this option is that the $sugar_config global is used in many places in Sugar so the values may be more readily available.</p>
<p>
	<strong>SugarCRM Administrator Class:</strong></p>
<p>
	The SugarCRM Administrator class will enable us to modify config parameters from the config table in the SugarCRM database. The config table has the columns category, name and value.</p>
<p>
	&bull; The category column enables the developer to group names and values.<br />
	&bull; Name represents an option from a category<br />
	&bull; Value represents a value for the name option for a category.</p>
<p>
	An Example for storing an API key could be:<br />
	Category: mailchimp<br />
	Name: api_key<br />
	Value: 12345</p>
<p>
	To initialize the SugarCRM Administrator class we can add this to our code:</p>
<pre class="brush:php;">
require_once(&#39;modules/Administration/Administration.php&#39;);&#10;$admin = new Administration();</pre>
<p>
	Now that we have created our Administrator object we can use it to write and read config data from our db.</p>
<p>
	To add a value or change existing we can use:</p>
<pre class="brush:php;">
$admin-&gt;saveSetting("category", "name", "value"); // changes are immediately made in db, so there is no special save function</pre>
<p>
	To read a value in code we can follow the example below:</p>
<pre class="brush:php;">
$admin-&gt;retrieveSettings(); // load all settings from db&#10;$something = $admin-&gt;settings[&#39;category_name&#39;]; // take a look how we need to type underscore between category and name</pre>
<p>
	<strong>Benefits:</strong></p>
<p>
	The benefits of this method are that it is easier to maintain and sync with multiple developers and with code management solutions since changes are stored in a file.</p>
<p>
	It also makes troubleshooting remote issues easier since every computer can easily read a file but every computer may not have a database tool.</p>
<p>
	&nbsp;</p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-12-13T16:55:30+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Project Management Enhancements in SugarCRM]]></title>
      <link>http://www.atcoresystems.com/blog/view/project-management-enhancements-in-sugarcrm</link>
      <guid>http://www.atcoresystems.com/blog/view/project-management-enhancements-in-sugarcrm#When:12:13:53Z</guid>
      <description><![CDATA[<p>
	SugarCRM offers project management functionality that includes Gantt charts, Resource assignment, Project Tasks and other common project management needs. Over time we have heavily customized our internal version as well as customer version to include a range of additional functionality. In one of our prior posts we mentioned the&nbsp; TimeConsult Quick Time entry functionality as well as other enhancements. For our latest round of enhancements we opted to solve two key problems.</p>
<p>
	<br />
	<strong>1. Resource Allocation</strong></p>
<p>
	With the out of the box functionality there is a Resources subpanel in Projects were resources can be assigned to a project. These resources can then be matched to a Project Task through the Gantt chart. If you enjoy Gantt charts or are used to MS Project then this is probably a great piece of functionality. For us and many that I speak to, this is not the case.</p>
<p>
	Since we didn&rsquo;t find Gantt charts very friendly or visually appealing we built a new module called Resource Allocation where we can assign Contacts or Users to a project and set the start and end dates for each record relative to the project.</p>
<p>
	<img alt="" src="http://atcoresystems.com/images/uploads/sugarcrm-projects-resource-allocation.jpg" style="width: 629px; height: 176px;" /></p>
<p>
	The additional enhancement provided with this configuration is the ease of reporting. This customization enables a user to run reports on Resource Allocation across multiple projects, Users or Contacts to get a better view of their capacity.</p>
<p>
	<strong>2. Project Calendaring</strong></p>
<p>
	Since we were no longer using the Gantt chart we needed a way to visualize timelines in the most straightforward way possible. With the addition of a project calendar we could easily see resource allocation at a weekly or monthly level in a form factor that everyone was most comfortable with.</p>
<p>
	<img alt="" src="http://atcoresystems.com/images/uploads/sugarcrm-project-calendar(1).jpg" style="width: 600px; height: 308px;" /></p>
<p>
	The next set of customizations are already in progress and will enable users to have a Project Calendar that spans all projects and resource allocations as well as manage percentage of allocation.</p>
<p>
	If you are looking to enhance SugarCRM Projects to more closely match your business processes and would like assistance then <a href="http://www.atcoresystems.com/about/contact">please let us know</a>.</p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-10-20T12:13:53+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Announcing PandEE for Expression Engine]]></title>
      <link>http://www.atcoresystems.com/blog/view/announcing-pandee-for-expression-engine</link>
      <guid>http://www.atcoresystems.com/blog/view/announcing-pandee-for-expression-engine#When:20:10:12Z</guid>
      <description><![CDATA[<p>
	Today we are pleased to announce our first packaged Expression Engine addon. In the past we developed many EE addons for both internal and customer projects but this is the first packaged released with many more on the way. <a href="http://www.atcoresystems.com/products/expression-engine-addons/pandee">PandEE</a> is a custom Expression Engine field type that integrates the PandaStream video service with Expression Engine so that EE developers and businesses can encode, control and release their own videos.<br />
	You may think to yourself, with services like YouTube, why would you want to host your own videos?</p>
<p>
	<br />
	Here are a few reasons that we came up with:</p>
<p>
	<br />
	1. Paid Content &ndash; You can host videos that other must pay to see such as training material.<br />
	2. Internal Videos &ndash; You can host videos that are only available to internal resources.<br />
	3. Video Control &ndash; You have full control over encoding, size and other factors.&nbsp;</p>
<p>
	<br />
	If you find yourself requiring video capabilities in Expression Engine then look no further than <a href="http://www.atcoresystems.com/products/expression-engine-addons/pandee">PandEE.</a></p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-09-23T20:10:12+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[TimeConsult for SugarCRM - Quicker Time Entry]]></title>
      <link>http://www.atcoresystems.com/blog/view/timeconsult-for-sugarcrm-quicker-time-entry</link>
      <guid>http://www.atcoresystems.com/blog/view/timeconsult-for-sugarcrm-quicker-time-entry#When:02:20:19Z</guid>
      <description><![CDATA[<p>
	A few months ago we told you about <a href="http://www.atcoresystems.com/blog/view/beta-module-timeconsult-for-sugarcrm-time-tracking">TimeConsult for SugarCRM</a> which is time tracking module for companies who need to easily track time against Cases, Bugs, Projects and Project Tasks in SugarCRM.</p>
<p>
	<br />
	Shortly after that post we decided that we needed to make adding time even easier and expand the functionality. With this additional functionality we were looking to solve 2 key problems.</p>
<p>
	<br />
	1. We wanted make logging time even easier.<br />
	2. We wanted to be able to track time against Opportunities.</p>
<p>
	One issue that we had while using <a href="http://www.atcoresystems.com/products/sugarcrm-modules/beta-time-consult-for-sugarcrm">TimeConsult</a> was that a user had to enter Start Date/Time and End Date/Time which was multiple clicks across multiple inputs. This worked very similar to a time clock but we found that for a services company only the date and duration was required. Instead of changing the module completely we made this a configuration option in the Admin panel so that new users could choose how to use the module.</p>
<p>
	<img alt="SugarCRM TimeConsult Fields" src="http://atcoresystems.com/images/uploads/sugarcrm-time-consult-fields.jpg" style="width: 689px; height: 127px;" /></p>
<p>
	In addition to simplifying time entry by remove fields, we also decided to add it to the Project Task subpanel so that users no longer have to go into a Project Task detail view to log time.</p>
<p>
	<img alt="" src="http://atcoresystems.com/images/uploads/sugarcrm-time-consult-clock-icon.jpg" style="width: 408px; height: 136px;" /></p>
<p>
	Clicking the Clock icon now provides a pop box with multiple fields related to entering time.</p>
<p>
	<img alt="" src="http://atcoresystems.com/images/uploads/sugarcrm-time-consult-entry-popup.jpg" style="width: 387px; height: 267px;" /></p>
<p>
	Lastly, we decided to add a new relationship between <a href="http://www.atcoresystems.com/products/sugarcrm-modules/beta-time-consult-for-sugarcrm">TimeConsult</a> and Opportunities. We found this useful for our business processes and tracking, maybe you will also.<br />
	If you are interested in knowing more about <a href="http://www.atcoresystems.com/products/sugarcrm-modules/beta-time-consult-for-sugarcrm">TimeConsult</a> or would like to purchase TimeConsult then <a href="http://www.atcoresystems.com/about/contact">please contact us</a>.</p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-09-14T02:20:19+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[SugarCRM Quick Notes]]></title>
      <link>http://www.atcoresystems.com/blog/view/sugarcrm-quick-notes</link>
      <guid>http://www.atcoresystems.com/blog/view/sugarcrm-quick-notes#When:18:24:21Z</guid>
      <description><![CDATA[<p>
	Often times it is the little changes that increase user adoption of a CRM solution. This can easily be exhibited through a SugarCRM customization that we made for a customer at the request of their sales staff.</p>
<p>
	During one of our regularly occurring CRM sessions with the sales staff many of the team members outlined that they wanted to be able to make notes on a Contact or Account more quickly. At first this seemed a little odd since making Notes in the SugarCRM Activities Subpanel requires is extremely easy ( Click Add Note- &gt; Type -&gt; Save ) but I decided to dig deeper before making any decisions.</p>
<p>
	The group came to the conclusion that since 90% of the time they were making Notes on records that they shouldn&rsquo;t have to Click Add Note. I also discovered that many of them were working on laptops, some of which had small screens. This meant that to make a Note they had to scroll to the History panel which is usually below Activities.</p>
<p>
	Like the Left Voicemail button, the solution was simple but was high impact on user adoption and phyche. The end result was a Notes field in the Activities Subpanel where a user could quickly type and Submit.</p>
<p>
	<img alt="" src="http://atcoresystems.com/images/uploads/sugarcrm-quick-notes.jpg" style="width: 663px; height: 80px; " /></p>
<p>
	<br />
	Do you need a small but high impact change? <a href="http://www.atcoresystems.com/about/contact">We invite you to tell us about it.</a></p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-08-31T18:24:21+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Sales Calls from a SugarCRM Target List]]></title>
      <link>http://www.atcoresystems.com/blog/view/sales-calls-from-a-sugarcrm-target-list</link>
      <guid>http://www.atcoresystems.com/blog/view/sales-calls-from-a-sugarcrm-target-list#When:17:41:29Z</guid>
      <description><![CDATA[<p>
	In <a href="http://www.atcoresystems.com/blog/view/quick-disposition-buttons-in-sugarcrm">Quick Disposition Buttons in SugarCRM</a> we highlighted an easy way to disposition a call from a SugarCRM detail view. Adding diposition buttons are an easy way to log calls while paginating through SugarCRM Leads, Contacts or Accounts one by one.</p>
<p>
	Many sales people and their organizations work a little differently in that they want to create lists first and then make calls.&nbsp; By creating a target list of records the organization can more easily assign call lists to a certain sales person by reassigning the Target List. Following assignment, the sales person can rapidly move through each call and disposition that call appropriately all in one screen.</p>
<p>
	In or to enable this functionality we had to make a few customizations to the SugarCRM Target List screen.</p>
<p>
	First we added multiple Target List configuration settings. With these settings you could preset how many records to display into a subpanel and decide what subpanels to expose to the user.</p>
<p>
	<img alt="" src="http://atcoresystems.com/images/uploads/sugarcrm-target-list-settings.jpg" /></p>
<p>
	<br />
	&nbsp;<br />
	Following the addition of the SugarCRM Target List options we made it dead simple to disposition calls by adding a few disposition buttons to the subpanel.</p>
<p>
	<img alt="" src="http://atcoresystems.com/images/uploads/sugarcrm-call-disposition-buttons.jpg" /></p>
<p>
	Each button is optimized to solicit the minimum amount of information so that the salesperson can move to the next call.</p>
<p>
	For example: Clicking the Log Call button only shows a description box to fill in details and automatically sets the Call Status to Held and Outbound as well as setting the subject to Call Held.</p>
<p>
	If your sales people require SugarCRM to be customized for telesales then <a href="http://www.atcoresystems.com/about/contact">please reach out</a>.</p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-08-31T17:41:29+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Quick Disposition Buttons in SugarCRM]]></title>
      <link>http://www.atcoresystems.com/blog/view/quick-disposition-buttons-in-sugarcrm</link>
      <guid>http://www.atcoresystems.com/blog/view/quick-disposition-buttons-in-sugarcrm#When:17:01:19Z</guid>
      <description><![CDATA[<p>
	When it comes to logging activities around sales calls, most sales people find it tedious. Instead of just making a sales call, leaving a voicemail or speaking with the customer and moving on, the sales person is asked to log each interaction. <a href="http://www.atcoresystems.com/blog/view/sugarcrm-cti-integration">SugarCRM CTI integrations</a> can ease this pain but for many it may not be in the budget. If a <a href="http://www.atcoresystems.com/blog/view/sugarcrm-cti-integration">SugarCRM CTI integration</a> is not feasible the only option is to optimize the application to make logging interactions easier.</p>
<p>
	Lets take an example such as logging a call activity on a Lead and indicating that a voicemail was left. If a sales person is on a lead record they must click Log Call, type in that they left a voicemail, change the status to Outbound and Held and then Save the record. This small task involves 6 clicks and some typing. This is not such a big deal when you have to execute the steps once but if your call quota is 60 per day and 80% are voicemails then it is going to get real annoying real quick.</p>
<p>
	This repeated action can cause multiple issues:</p>
<ul>
	<li>
		&nbsp;&nbsp;&nbsp; Decreased user adoption</li>
	<li>
		&nbsp;&nbsp;&nbsp; Poor Call Metrics - Since the disposition isn&rsquo;t standardized</li>
	<li>
		&nbsp;&nbsp;&nbsp; Less Efficiency</li>
</ul>
<p>
	&nbsp;</p>
<p>
	A simple solution that we recently implemented to correct this problem was a Left Voicemail button.</p>
<p>
	&nbsp;</p>
<p>
	<img alt="" src="http://atcoresystems.com/images/uploads/sugarcrm-telemarketing-left-voicemail-button.jpg" style="width: 604px; height: 264px; " /></p>
<p>
	&nbsp;</p>
<p>
	By clicking this button a sales person can log the call activity as well as have the Subject and Status fields automatically set. This not only made it significantly easier for the sales person to log the interaction but also increases the usefulness of call reporting since the Subject is now standardized.</p>
<p>
	<strong>Tech Details:</strong></p>
<p>
	Since this SugarCRM customization was implemented using the SugarWidgets functionality it can be easily replicated to other SugarCRM modules as well as easily customized to take different actions such as scheduling a follow up call automatically or closing a lead after a certain number of attempts.</p>
<p>
	If you are looking to make your sales team more efficient with even the smallest SugarCRM tweaks then<a href="http://www.atcoresystems.com/about/contact"> please let us know</a>.</p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-08-31T17:01:19+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Acumatica- Managing your Business]]></title>
      <link>http://www.atcoresystems.com/blog/view/acumatica-managing-your-business</link>
      <guid>http://www.atcoresystems.com/blog/view/acumatica-managing-your-business#When:17:29:57Z</guid>
      <description><![CDATA[<p>
	<br />
	<br />
	Our clients have a vast array of business needs, so I love how we partner with some very impressive companies to offer business solutions to our clients.&nbsp; One of the companies we work with is Acumatica.</p>
<p>
	<a href="http://www.atcoresystems.com/services/Acumatica/acumatica">Acumatica</a> offers a full line of Accounting ERP and business management software.</p>
<p>
	Recently, I sat down with a member of the Acumatica team for two hours to go through the software and see what Acumatica has to offer. I came away extremely impressed with this business management software, and I know that if you are looking for a complete ERP program, Acumatica can deliver.</p>
<p>
	<strong>What are some of the highlights?</strong></p>
<ul>
	<li>
		Your Acumatica solution can be housed either on site or in the cloud. The decision is yours as to where you want your information.</li>
	<li>
		Unlimited licensing. Whether you have one user or hundreds of users. One license covers your entire business</li>
	<li>
		Customizable dashboards to show you the reports and information you want to see.</li>
	<li>
		Build integrated websites within Acumatica using prebuilt templates</li>
	<li>
		Monitor sales, inventory, CRM database, and other business related from one solution</li>
</ul>
<br />
<p>
	Acumatica provides businesses with a complete ERP solution that is designed to grow with your business. Opensource development allows you to customize this ERP solution to fit your business.</p>
<p>
	In Addition, Acumatica comes with tools to customize dashboards and workflow to show you the information you need in the way you want to see it.<br />
	Companies that don&rsquo;t have a lot of experience with web design and development can use the internal templates to build a marketing website complete with your full product line, logos and company information.</p>
<p>
	<strong>Acumatica built in website templates allow you to automatically manage:</strong></p>
<ul>
	<li>
		inventory</li>
	<li>
		ordering</li>
	<li>
		revenue</li>
</ul>
<p>
	&nbsp;</p>
<p>
	<br />
	This ERP accounting solution saves not only time, but with all of the built in features, you will see a quick ROI after integrating it into your day to day activities.<br />
	The best part is the price. No more worrying about adding users. As your business grows, your cost won&rsquo;t.</p>
<p>
	<a href="http://www.atcoresystems.com/about/contact">Contact us</a> for a demonstration of how Acumatica can help you manage your business.</p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-08-30T17:29:57+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[SugarCRM Wins Top Honors]]></title>
      <link>http://www.atcoresystems.com/blog/view/sugarcrm-wins-top-honors</link>
      <guid>http://www.atcoresystems.com/blog/view/sugarcrm-wins-top-honors#When:20:07:52Z</guid>
      <description><![CDATA[<p>
	It is not a real surprise to those of us who use SugarCRM, but the CRM industry is recognizing the innovation that is the core of SugarCRM philosophy.<br />
	&ldquo;Clearly, the CRM market is continuing to evolve very quickly, and it continues to be shaped by this year&rsquo;s CRM Market Leaders like SugarCRM.&rdquo; David Myron, Editorial Director, CRM and Speech Technology magazines.</p>
<p>
	<strong>SugarCRM took four of the top awards in CRM Magazine&rsquo;s 10th annual Market Leaders Awards:</strong></p>
<ul style="list-style-type: square; ">
	<li>
		<strong>Winner</strong> &ndash; Open Source CRM category</li>
	<li>
		<strong>Leader</strong> &ndash; Midmarket Suite CRM category</li>
	<li>
		<strong>Leader&nbsp;</strong><strong>&ndash; </strong>Small-Business Suite CRM category</li>
	<li>
		<strong>One to Watch</strong> &ndash; Sales Force Automation category</li>
</ul>
<p>
	It was an honor for SugarCRM to receive awards in these areas, and maybe even more important is what the people who know CRM best are saying about SugarCRM.&nbsp;</p>
<ul>
	<li>
		<a href="http://www.mfauscette.com/">Michael Fauscette</a>, group vice president for software business solutions at IDC, said, &ldquo;&lsquo;Anytime you talk about open-source CRM, Sugar comes up; they&rsquo;re by far the best known and by far the largest.&rsquo;&rdquo; &ldquo;a very good value, particularly in the midmarket.&rdquo;</li>
	<li>
		<a href="http://denispombriant.wordpress.com/">Denis Pombriant</a>, CEO at Beagle Research Group, LLC, referred to SugarCRM as an &ldquo;&lsquo;out-of-the-box thinker,&rsquo;&rdquo; &ldquo; is a newcomer to the leaderboard in the midmarket category, having posted an especially impressive 4.1 in cost. As with its small-market product, SugarCRM excels in the midmarket segment because of its open-source CRM solution set.&rdquo;</li>
	<li>
		<strong>David Myron</strong>, Editorial Director, CRM and Speech Technology magazines &ldquo;SugarCRM has had a great year, and it was no surprise to us that they claimed so many awards at CRM Evolution,&rdquo;</li>
</ul>
<p>
	I spend a lot of time with people who own their own businesses and I see in almost every individual situation that SugarCRM will help them grow business. Because SugarCRM is so innovative and flexible in its customization, it makes it a natural fit for most business needs.</p>
<p>
	<a href="http://www.atcoresystems.com/services/sugarcrm">SugarCRM</a> is getting the recognition it deserves from the people who know CRM best. Maybe it is your time to check SugarCRM out for yourself and see your business grow.</p>
]]></description>
      <dc:subject><![CDATA[]]></dc:subject>
      <dc:date>2011-08-25T20:07:52+00:00</dc:date>
    </item>

    
    </channel>
</rss>
