<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Sugar Developer Blog - Latest Comments</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-9b0eeee2" type="application/json"/><link>http://sugardeveloper.disqus.com/</link><description></description><atom:link href="http://sugardeveloper.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Tue, 21 May 2013 20:39:18 -0000</lastBuildDate><item><title>Re: HOWTO: Add your own admin panels</title><link>http://developers.sugarcrm.com/wordpress/2011/07/15/howto-add-your-own-admin-panels/#comment-904435457</link><description>&lt;p&gt;Good morning Everyone, I was wondering if where to find the panels code that gets to be displayed when I click Admin link.. the one that says: &lt;br&gt;LBL_ASOL_WFM_PANEL &lt;/p&gt;

&lt;p&gt;because I want to remove that panel but I don't know where to find it's source ... *help Newbie :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guest</dc:creator><pubDate>Tue, 21 May 2013 20:39:18 -0000</pubDate></item><item><title>Re: Change module level search to not use wildcards</title><link>http://developers.sugarcrm.com/wordpress/2013/01/09/change-module-level-search-to-not-use-wildcards/#comment-904023679</link><description>&lt;p&gt;I did department dependent views for Cases. We have Customer Service and Tech Support groups, I added a support_group_c field to the Users module to determine which group people belonged to and used that to dynamically choose the Cases view for each. It's a bit of a high-maintenance solution and working in Studio becomes a bit tricky but it works.&lt;br&gt;For me, the CS view is the default for those that don't have a support group.&lt;/p&gt;

&lt;p&gt;In custom/modules/Cases/views/view.edit.php&lt;/p&gt;

&lt;p&gt;class CasesViewEdit extends ViewEdit {&lt;br&gt;public function preDisplay(){&lt;br&gt;global $current_user;&lt;br&gt;// support group dependent views&lt;br&gt;TemplateHandler::clearCache($this-&amp;gt;module,'EditView.tpl');&lt;br&gt;$metadataFile = 'custom/modules/' . $this-&amp;gt;module . '/metadata/editviewdefs_CS.php';&lt;br&gt;if ($current_user-&amp;gt;support_group_c == 'TS'){&lt;br&gt;$metadataFile = 'custom/modules/' . $this-&amp;gt;module . '/metadata/editviewdefs_TS.php';&lt;br&gt;}&lt;br&gt;$this-&amp;gt;ev = new EditView();&lt;br&gt;$this-&amp;gt;ev-&amp;gt;ss =&amp;amp;  $this-&amp;gt;ss;&lt;br&gt;$this-&amp;gt;ev-&amp;gt;setup($this-&amp;gt;module, $this-&amp;gt;bean, $metadataFile, get_custom_file_if_exists('include/EditView/EditView.tpl'));&lt;br&gt;}&lt;br&gt;)&lt;/p&gt;

&lt;p&gt;Similarly in custom/modules/Cases/views/view.detail.php&lt;/p&gt;

&lt;p&gt;class CustomCasesViewDetail extends ViewDetail&lt;br&gt;{&lt;br&gt;public function preDisplay(){&lt;br&gt;global $current_user;&lt;br&gt;TemplateHandler::clearCache($this-&amp;gt;module,'DetailView.tpl');&lt;br&gt;$metadataFile = 'custom/modules/' . $this-&amp;gt;module . '/metadata/detailviewdefs_CS.php';&lt;br&gt;if ($current_user-&amp;gt;support_group_c == 'TS'){&lt;br&gt;$metadataFile = 'custom/modules/' . $this-&amp;gt;module . '/metadata/detailviewdefs_TS.php';&lt;br&gt;$this-&amp;gt;dv = new DetailView2();&lt;br&gt;$this-&amp;gt;dv-&amp;gt;ss =&amp;amp;  $this-&amp;gt;ss;&lt;br&gt;$this-&amp;gt;dv-&amp;gt;setup($this-&amp;gt;module, $this-&amp;gt;bean, $metadataFile, get_custom_file_if_exists('include/DetailView/DetailView.tpl'));&lt;br&gt;}&lt;/p&gt;

&lt;p&gt;then in custom/modules/Cases/metadata/&lt;br&gt;I have the different versions of detail and edit views:&lt;/p&gt;

&lt;p&gt;detailviewdefs_CS.php&lt;br&gt;detailviewdefs_TS.php&lt;/p&gt;

&lt;p&gt;editviewdefs_CS.php&lt;br&gt;editviewdefs_TS.php&lt;/p&gt;

&lt;p&gt;Now, because I'm lazy and want to use studio for layouts, I copy the view that I want to modify to the standard detailviewdefs.php or editviewdefs.php, change what I need to change, save and deploy, then copy that file back to the _CS or _TS version.&lt;br&gt;You just need to be careful about copying back and forth of course.&lt;/p&gt;

&lt;p&gt;HTH.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Francesca S.</dc:creator><pubDate>Tue, 21 May 2013 12:42:50 -0000</pubDate></item><item><title>Re: How to get Document content through PHP code</title><link>http://developers.sugarcrm.com/wordpress/2013/05/15/how-to-get-document-content-through-php-code/#comment-903855274</link><description>&lt;p&gt;It is indeed. You can always find the most recent list in the core file ModuleInstall/ModuleScanner.php, the ModuleScanner::blackList array. There's also a set of blacklisted classes there. &lt;/p&gt;

&lt;p&gt;I've just found out that as of 6.7.0 (maybe 6.6.x) there's several additions to the list, including anything with a callback function. That includes lots of array-manipulation methods. &lt;/p&gt;

&lt;p&gt;        'array_diff_uassoc',&lt;br&gt;        'array_diff_ukey',&lt;br&gt;        'array_filter',&lt;br&gt;        'array_intersect_uassoc',&lt;br&gt;        'array_intersect_ukey',&lt;br&gt;        'array_map',&lt;br&gt;        'array_reduce',&lt;br&gt;        'array_udiff_assoc',&lt;br&gt;        'array_udiff_uassoc',&lt;br&gt;        'array_udiff',&lt;br&gt;        'array_uintersect_assoc',&lt;br&gt;        'array_uintersect_uassoc',&lt;br&gt;        'array_uintersect',&lt;br&gt;        'array_walk_recursive',&lt;br&gt;        'array_walk',&lt;br&gt;        'uasort',&lt;br&gt;        'uksort',&lt;br&gt;        'usort',&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matthew Poer</dc:creator><pubDate>Tue, 21 May 2013 09:23:38 -0000</pubDate></item><item><title>Re: SugarCon 2013: A recap</title><link>http://developers.sugarcrm.com/wordpress/2013/04/22/sugarcon-2013-a-recap/#comment-899995124</link><description>&lt;p&gt;can we have a link to the Sugar v7 demo?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jesal Bhowmick</dc:creator><pubDate>Fri, 17 May 2013 00:01:23 -0000</pubDate></item><item><title>Re: HOWTO: Using the bean instead of SQL all the time.</title><link>http://developers.sugarcrm.com/wordpress/2012/03/23/howto-using-the-bean-instead-of-sql-all-the-time/#comment-899612201</link><description>&lt;p&gt;I simplified the lookup to get the relationship name from two module names as follows:&lt;/p&gt;

&lt;p&gt;function getRelationshipByModules ($m1, $m2){&lt;br&gt;        global $db,$dictionary,$beanList;&lt;br&gt;        $rel = new Relationship;&lt;br&gt;        if($rel_info = $rel-&amp;gt;retrieve_by_sides($m1, $m2, $db)){&lt;br&gt;                $class = $beanList[$m1];&lt;br&gt;                $bean = new $class();&lt;br&gt;                $rel_name = $rel_info['relationship_name'];&lt;br&gt;                foreach($bean-&amp;gt;field_defs as $field=&amp;gt;$def){&lt;br&gt;                        if(isset($def['relationship']) &amp;amp;&amp;amp; $def['relationship']==$rel_name) return(array($def['name'], $m1));&lt;br&gt;                }&lt;br&gt;        }elseif($rel_info = $rel-&amp;gt;retrieve_by_sides($m2, $m1, $db)){&lt;br&gt;                $class = $beanList[$m2];&lt;br&gt;                $bean = new $class();&lt;br&gt;                $rel_name = $rel_info['relationship_name'];&lt;br&gt;                foreach($bean-&amp;gt;field_defs as $field=&amp;gt;$def){&lt;br&gt;                        if(isset($def['relationship']) &amp;amp;&amp;amp; $def['relationship']==$rel_name) return(array($def['name'], $m2));&lt;br&gt;                }&lt;br&gt;        }&lt;br&gt;        return(FALSE);&lt;br&gt;}&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Francesca S.</dc:creator><pubDate>Thu, 16 May 2013 15:27:57 -0000</pubDate></item><item><title>Re: HOWTO: Using the bean instead of SQL all the time.</title><link>http://developers.sugarcrm.com/wordpress/2012/03/23/howto-using-the-bean-instead-of-sql-all-the-time/#comment-899403499</link><description>&lt;p&gt;I had some trouble programmatically getting the relationship name to use in the $focus-&amp;gt;load_relationship('relationship_name_here') until I found function findRelationship($from,$to)  in modules/Leads/views/view.convertleads.php that given the two beans in question, returns the appropriate relationship name to use in the load_relationship. If anyone has a more efficient method than looping through all the fields as this function does please do share.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Francesca S.</dc:creator><pubDate>Thu, 16 May 2013 11:55:07 -0000</pubDate></item><item><title>Re: How to get Document content through PHP code</title><link>http://developers.sugarcrm.com/wordpress/2013/05/15/how-to-get-document-content-through-php-code/#comment-898456921</link><description>&lt;p&gt;Hello @Matthew Poer &lt;/p&gt;

&lt;p&gt;The sugar function sugar_file_get_contents is-it too blacklisted for OnDemand?&lt;/p&gt;

&lt;p&gt;Also perhaps you can try this:&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;&lt;pre&gt;&lt;code class="PHP"&gt;&lt;br&gt;require_once 'include/upload_file.php';&lt;br&gt;$uf = new UploadFile();&lt;br&gt;$uf-&amp;gt;temp_file_location = $download_location;&lt;br&gt;$file_contents = $uf-&amp;gt;get_file_contents();&lt;p&gt;&lt;/p&gt;

&lt;/code&gt;&lt;p&gt;&lt;code class="PHP"&gt;&lt;/code&gt;&lt;/p&gt;&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Cédric Mourizard</dc:creator><pubDate>Wed, 15 May 2013 15:50:41 -0000</pubDate></item><item><title>Re: How to get Document content through PHP code</title><link>http://developers.sugarcrm.com/wordpress/2013/05/15/how-to-get-document-content-through-php-code/#comment-898099295</link><description>&lt;p&gt;A useful snippet, but file_get_contents is a blacklisted function. If you were to create a Module-Installable package with that, it would be rejected by every OnDemand system and any on premise systems that enable security scanning of packages. &lt;/p&gt;

&lt;p&gt;On premise installations could get around this by adding file_get_contents to $GLOBALS['sugar_config']['moduleInstaller']['blackListExempt'] but my understanding is that OnDemand systems do not allow this.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matthew Poer</dc:creator><pubDate>Wed, 15 May 2013 09:40:02 -0000</pubDate></item><item><title>Re: Entry Points in Sugar 5.1</title><link>http://developers.sugarcrm.com/wordpress/2008/08/29/entrypoints-in-sugar-51/#comment-897166758</link><description>&lt;p&gt;thanks :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Francis Derequito</dc:creator><pubDate>Tue, 14 May 2013 11:45:29 -0000</pubDate></item><item><title>Re: Entry Points in Sugar 5.1</title><link>http://developers.sugarcrm.com/wordpress/2008/08/29/entrypoints-in-sugar-51/#comment-896989269</link><description>&lt;p&gt;Here's a good guide on interacting with the bean... &lt;a href="http://developers.sugarcrm.com/wordpress/2012/03/23/howto-using-the-bean-instead-of-sql-all-the-time/" rel="nofollow"&gt;http://developers.sugarcrm.com...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Mertic</dc:creator><pubDate>Tue, 14 May 2013 08:37:23 -0000</pubDate></item><item><title>Re: Entry Points in Sugar 5.1</title><link>http://developers.sugarcrm.com/wordpress/2008/08/29/entrypoints-in-sugar-51/#comment-896961379</link><description>&lt;p&gt;thank you for clearing it up... oh may I also ask if there is a tutorial or guide on how to use bean class, and db manager?..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Francis Derequito</dc:creator><pubDate>Tue, 14 May 2013 07:53:06 -0000</pubDate></item><item><title>Re: Entry Points in Sugar 5.1</title><link>http://developers.sugarcrm.com/wordpress/2008/08/29/entrypoints-in-sugar-51/#comment-896638551</link><description>&lt;p&gt;False just means you don't need to be authenticated to the instance in order to access the entrypoint. This is useful for entrypoints such as the campaign opt-out scripts.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Mertic</dc:creator><pubDate>Mon, 13 May 2013 21:35:33 -0000</pubDate></item><item><title>Re: Entry Points in Sugar 5.1</title><link>http://developers.sugarcrm.com/wordpress/2008/08/29/entrypoints-in-sugar-51/#comment-896628993</link><description>&lt;p&gt;Hi Dear Documentor,&lt;br&gt;what's the difference when having it false as it's default instead of true?.. because what I can see in most of the entry_points are false.. no need to recompile it right?.. when you add an entry point it can be used right away right?... help me verify my query .. Thanks..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Francis Derequito</dc:creator><pubDate>Mon, 13 May 2013 21:26:25 -0000</pubDate></item><item><title>Re: HOWTO: Add a search field that searches another module</title><link>http://developers.sugarcrm.com/wordpress/2011/04/19/howto-add-a-search-field-that-searches-another-module/#comment-895931182</link><description>&lt;p&gt;Hello, I would also appreciate the answer for this question. In my case it is a custom dropdown field in the accounts module: "employees_c". Does this make any difference, is it possible with a custom field? &lt;/p&gt;

&lt;p&gt;Thank you, Timi&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">IRsaved .</dc:creator><pubDate>Mon, 13 May 2013 11:16:27 -0000</pubDate></item><item><title>Re: HOWTO: Grab fields from a related record without Sugar Logic</title><link>http://developers.sugarcrm.com/wordpress/2012/03/13/howto-grab-fields-from-a-related-record-without-sugar-logic/#comment-893026669</link><description>&lt;p&gt;I have tried &lt;br&gt;But it not help me . I have created &lt;br&gt;custom/Extension/modules/drive_driversettlement/Ext/Vardefs/drive_movementtypesrate_typefield.php&lt;br&gt; with this code&lt;/p&gt;

&lt;p&gt;$dictionary['Drive_driversettlement']['fields']['drive_movementtypes_rate_type_c'] = array (&lt;/p&gt;

&lt;p&gt;		'name' =&amp;gt; 'drive_movementtypes_rate_type_c',&lt;/p&gt;

&lt;p&gt;		'id_name' =&amp;gt; 'movementtype_id',&lt;/p&gt;

&lt;p&gt;		'type' =&amp;gt; 'relate',&lt;/p&gt;

&lt;p&gt;		'rname' =&amp;gt; 'rate_type',&lt;/p&gt;

&lt;p&gt;		'vname' =&amp;gt; 'Rate Type',&lt;/p&gt;

&lt;p&gt;		'join_name'=&amp;gt;'drive_movementtypes',&lt;/p&gt;

&lt;p&gt;		'link' =&amp;gt; 'drive_movementtypes',&lt;/p&gt;

&lt;p&gt;		'module' =&amp;gt; 'Drive_movementtypes',&lt;/p&gt;

&lt;p&gt;		'source' =&amp;gt; 'non-db',&lt;/p&gt;

&lt;p&gt;		'dbType' =&amp;gt; 'non-db',&lt;/p&gt;

&lt;p&gt;		'studio' =&amp;gt; 'visible',&lt;/p&gt;

&lt;p&gt;);&lt;/p&gt;

&lt;p&gt;and in popupdef.php, I have added like that &lt;/p&gt;

&lt;p&gt;'MOVEMENT_TYPE' =&amp;gt; &lt;/p&gt;

&lt;p&gt;  array (&lt;/p&gt;

&lt;p&gt;    'type' =&amp;gt; 'relate',&lt;/p&gt;

&lt;p&gt;    'studio' =&amp;gt; 'visible',&lt;/p&gt;

&lt;p&gt;    'label' =&amp;gt; 'LBL_MOVEMENT_TYPE',&lt;/p&gt;

&lt;p&gt;    'id' =&amp;gt; 'DRIVE_MOVEMENTTYPES_ID_C',&lt;/p&gt;

&lt;p&gt;    'link' =&amp;gt; true,&lt;/p&gt;

&lt;p&gt;    'width' =&amp;gt; '10%',&lt;/p&gt;

&lt;p&gt;    'default' =&amp;gt; true,&lt;/p&gt;

&lt;p&gt;  ),&lt;/p&gt;

&lt;p&gt; 'DRIVE_MOVEMENTTYPES_RATE_TYPE_C'=&amp;gt;&lt;/p&gt;

&lt;p&gt;    array(&lt;/p&gt;

&lt;p&gt;    		'label' =&amp;gt; 'RATE TYPE',&lt;/p&gt;

&lt;p&gt;    		'type' =&amp;gt; 'relate',&lt;/p&gt;

&lt;p&gt;    		'width' =&amp;gt; '10%',&lt;/p&gt;

&lt;p&gt;    		'default' =&amp;gt; true,&lt;/p&gt;

&lt;p&gt;    		'id' =&amp;gt; 'DRIVE_MOVEMENTTYPES_ID_C',&lt;/p&gt;

&lt;p&gt;    		'studio' =&amp;gt; 'visible',&lt;/p&gt;

&lt;p&gt;    		'link' =&amp;gt; 'DRIVE_MOVEMENTTYPES',&lt;/p&gt;

&lt;p&gt;  ) ,&lt;/p&gt;

&lt;p&gt;Please let me know what is wrong in my code. I am using Sugarcrm CE 6.5.8&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mukesh Mishra</dc:creator><pubDate>Sat, 11 May 2013 09:32:23 -0000</pubDate></item><item><title>Re: Creating a SubPanel Filter</title><link>http://developers.sugarcrm.com/wordpress/2012/12/06/creating-a-subpanel-filter/#comment-892261295</link><description>&lt;p&gt;in the line you quoted you have double quotes inside double quotes which will give a syntax error.&lt;/p&gt;

&lt;p&gt;instead of:&lt;/p&gt;

&lt;p&gt;$button .= "&amp;lt;form&amp;gt;&amp;lt;input id="filter_param_{$subpanel_name}" name="search_params" type="text" value="{$prior_search_params[$subpanel_name]}"&amp;gt;";&lt;/p&gt;

&lt;p&gt;try:&lt;/p&gt;

&lt;p&gt;$button .= "&amp;lt;input id="filter_param_{$subpanel_name}" name="search_params" type="text" value="{$prior_search_params[$subpanel_name]}"&amp;gt;";&lt;/p&gt;

&lt;p&gt;or &lt;/p&gt;

&lt;p&gt;$button .= "&amp;lt;input id="\"filter_param_{$subpanel_name}\"" name="\"search_params\"" type="\"text\"" value="\"{$prior_search_params[$subpanel_name]}\""&amp;gt;";&amp;lt;/form&amp;gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Francesca S.</dc:creator><pubDate>Fri, 10 May 2013 10:23:04 -0000</pubDate></item><item><title>Re: Creating a SubPanel Filter</title><link>http://developers.sugarcrm.com/wordpress/2012/12/06/creating-a-subpanel-filter/#comment-891401580</link><description>&lt;p&gt;Hi Francesca, can't seem to get this to work on Corp 6.5.4. I'm assuming it's the SugarWidgetTopFilterInputButton.php file that is incorrect, or it don't like my version... &lt;/p&gt;

&lt;p&gt;The form appears on the sub-panel, custom module in Companies I've tried the original one posted above, no joy It reloads the entire page and no filter is applied. I have tried downloading the code from GitHub and using your adjusted code AND the code added by guest. Those two files give me a pop up window with an unexpected T_STRING error on line X, the second $button .= line&lt;/p&gt;

&lt;p&gt;$button .= "&amp;lt;form&amp;gt;&amp;lt;input id="filter_param_{$subpanel_name}" name="search_params" type="text" value="{$prior_search_params[$subpanel_name]}"&amp;gt;";&lt;/p&gt;

&lt;p&gt;Is there a missing instruction? add the entrypoint to include/MVC/Controller/entry_point_registry.php&lt;/p&gt;

&lt;p&gt;Any thoughts gratefully accepted..&lt;/p&gt;

&lt;p&gt;UPDATE&lt;br&gt;I edited the final lines and it is now working, changed to the following&lt;/p&gt;

&lt;p&gt;$button = '';&lt;br&gt;$button .= "&amp;lt;input id="filter_param_{$subpanel_name}" name="search_params" type="text" value="{$prior_search_params[$subpanel_name]}"&amp;gt;";&lt;br&gt;$button .= "&amp;lt;input href="javascript:void(0)" onclick="\"{$onclick}\"" style="margin:0 2px 0 2px;" type="submit" value="Filter"&amp;gt;";&lt;br&gt;$button .= "&amp;lt;input +="" ;{$onclick}\"="" current_child_field).value="" href="javascript:void(0)" onclick="\"document.getElementById('filter_param_'" type="submit" value="Clear Filter"&amp;gt;";&lt;br&gt;$button .= "";&lt;/p&gt;

&lt;p&gt;return $button;&lt;br&gt;    }&lt;br&gt;}&lt;/p&gt;

&lt;p&gt;Brilliant bit of work Francesca!!! and greatly appreciated code. Get a bit annoyed at times with the number of 'ad's' on/in these Blogs. &lt;/p&gt;

&lt;p&gt;Perhaps we could get the posters name added to the listing of each item so that we can choose which ones we want to view? &amp;lt;/form&amp;gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marty Peet</dc:creator><pubDate>Thu, 09 May 2013 19:27:46 -0000</pubDate></item><item><title>Re: New in Sugar 6.5 &amp;#8211; iCal support for Calendar</title><link>http://developers.sugarcrm.com/wordpress/2012/05/29/new-in-sugar-6-5-ical-support-for-calendar/#comment-890874911</link><description>&lt;p&gt;Thanks for the detailed guide! We will try to capture this in our support knowledge base as well.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Mertic</dc:creator><pubDate>Thu, 09 May 2013 09:58:39 -0000</pubDate></item><item><title>Re: HOWTO: Displaying Meetings related to Contact in Account’s subpanels.</title><link>http://developers.sugarcrm.com/wordpress/2011/03/11/howto-displaying-meetings-related-to-contact-in-account%e2%80%99s-subpanels/#comment-890786166</link><description>&lt;p&gt;hello john  , &lt;br&gt;i  have query , i have got stuck with subpanels , i HAVE A MODULE accounts that contains subpanels like opportunities ,targets ,leads. Now i want display total  of a particular field say amount under opportunities sub panel .&lt;br&gt;Where i can write the code to get the sum under subpanel opportunities.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rohan sharma</dc:creator><pubDate>Thu, 09 May 2013 07:41:08 -0000</pubDate></item><item><title>Re: HOWTO: Customize the Content of SugarFeeds</title><link>http://developers.sugarcrm.com/wordpress/2011/02/17/howto-customize-the-content-of-sugarfeeds/#comment-890551469</link><description>&lt;p&gt;How to 'DocumentRevision' to the 'Sugar Feed'?  Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">disqus_PAkBoCjv5P</dc:creator><pubDate>Thu, 09 May 2013 03:33:06 -0000</pubDate></item><item><title>Re: New in Sugar 6.5 &amp;#8211; iCal support for Calendar</title><link>http://developers.sugarcrm.com/wordpress/2012/05/29/new-in-sugar-6-5-ical-support-for-calendar/#comment-890487418</link><description>&lt;p&gt;This is quite useful, thanks. The two common questions I get re this are on how to add this to their Google Calendar and to their iPhone. So I thought I'd add those steps below:&lt;/p&gt;

&lt;p&gt;To view your SugarCRM Calendar in Google Apps Calendar, do the following:&lt;/p&gt;

&lt;p&gt;1. In SugarCRM Select your username from the top navigation bar&lt;br&gt;2.	Select Profile&lt;br&gt;3.	Select Advanced&lt;br&gt;4.	Copy the iCal integration URL&lt;br&gt;5.	Open Google Calendar&lt;br&gt;6.	In the left navigation bar, hit the drop down next to Other Calendars&lt;br&gt;7.	Select Add by URL&lt;br&gt;8.	Refresh your calendar view, you’ll see your SugarCRM Calendar now in your Google Apps Calendar.&lt;/p&gt;

&lt;p&gt;To add your SugarCRM Calendar to your iPhone or iPad&lt;br&gt;1.	On the iPhone,&lt;br&gt;2.	Go to Settings &lt;br&gt;3.	Select Mail, Contacts, Calendars&lt;br&gt;4.	Select Add Account…&lt;br&gt;5.	Select Other&lt;br&gt;6.	Select Add Subscribed Calendar&lt;br&gt;7.	Paste in the same URL as previously and click Next&lt;br&gt;8.	Click Save&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ben Hamilton</dc:creator><pubDate>Thu, 09 May 2013 02:23:21 -0000</pubDate></item><item><title>Re: New for Sugar 6.5: SugarHttpClient</title><link>http://developers.sugarcrm.com/wordpress/2012/05/11/new-for-sugar-6-5-sugarhttpclient/#comment-890358162</link><description>&lt;p&gt;How to 'DocumentRevision' to the 'Sugar Feed'?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">disqus_PAkBoCjv5P</dc:creator><pubDate>Thu, 09 May 2013 00:07:07 -0000</pubDate></item><item><title>Re: HOWTO: Customize the Content of SugarFeeds</title><link>http://developers.sugarcrm.com/wordpress/2011/02/17/howto-customize-the-content-of-sugarfeeds/#comment-890265662</link><description>&lt;p&gt;How to 'DocumentRevision' to the 'Sugar Feed'?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">disqus_PAkBoCjv5P</dc:creator><pubDate>Wed, 08 May 2013 22:51:45 -0000</pubDate></item><item><title>Re: HOWTO: Using the bean instead of SQL all the time.</title><link>http://developers.sugarcrm.com/wordpress/2012/03/23/howto-using-the-bean-instead-of-sql-all-the-time/#comment-889652361</link><description>&lt;p&gt;just in case anyone else has problems loading relationships with the above code in custom modules:&lt;/p&gt;

&lt;p&gt;the line&lt;br&gt;$focus-&amp;gt;load_relationship('contacts');&lt;br&gt;didn't work for me.&lt;/p&gt;

&lt;p&gt;however, since the name of the relationship was something like "myproject_contacts" this one worked:&lt;br&gt;$focus-&amp;gt;load_relationship('myproject_contacts');&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Armin Otto</dc:creator><pubDate>Wed, 08 May 2013 09:23:03 -0000</pubDate></item><item><title>Re: HOWTO: Bring back the Dashboard module from 5.5</title><link>http://developers.sugarcrm.com/wordpress/2011/07/13/howto-bring-back-the-dashboard-module-from-5-5/#comment-888459516</link><description>&lt;p&gt;I have the same issue, did you find the solution?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Julian</dc:creator><pubDate>Tue, 07 May 2013 16:00:30 -0000</pubDate></item></channel></rss>