Blog

Sugar 7 "Data not available" Error After Installing Module

Posted by on June 5, 2014
In the latest patches to SugarCRM version 7, you may have run into a "Data not available" error immediately after installing a module or while trying to go to your new module's end points using the Sugar App router. There is an easy fix to this common problem.

Add Fields to Existing Layouts in Sugar 7

Posted by on May 28, 2014
One of the many challenges in creating SugarCRM add-ons meant for mass distribution is adding new fields to a given installation's layouts. Simply instructing folks to go to Studio and add your key fields to each view causes so many issues. Any time you rely 100% on someone following an installation guide there is a much greater chance that...

Creating a Wizard for a Module in SugarCRM 7

Posted by on February 27, 2014
Continuing on our journey of creating a module from scratch in SugarCRM 7, we left off last week with getting the skeleton structure in place. Basically it was a "Hello World" implementation. This week we will start to build out the controller to handle stepping through various steps of a wizard.

Creating a Layout and View for a Module in SugarCRM 7

Posted by on February 20, 2014
Since we are completing rewriting SugarChimp for SugarCRM 7 we figured this would be a good opportunity to share how to create a module from scratch. More specifically, in this series we will cover how to create a nice onboarding process for a new user just getting started with the integration. To start, lets create our first layout and view in the new Sidecar framework.

Directly Calling an Action in SugarCRM 7

Posted by on February 12, 2014
In the old SugarCRM 6 world, if you wanted to create a custom action and call it directly it was as simple as creating a PHP file and dropping it in a directory. To illustrate, here is a simple example of an action called "HelloWorld". This exists in /custom/modules/Campaigns/HelloWorld.php...