Add Fields in Basic Search – SugarCRM / SuiteCRM

SugarCRM, SuiteCRM Navin Rakhonde
Here assume that we are going to add Datepicker in the Basic search panel on Case Module List view. create the fileSearchFields.php at the custom/modules/Cases/metadata/and add the following code to this file $searchFields[‘<module_name>’] = array( ’email_notification_date’ => array( ‘query_type’ => ‘default’, ‘operator’ => ‘subquery’, ‘subquery’ => ‘SELECT parent_id FROM emails…
Read More

How to add any field to Mass Update in SugarCRM / SuiteCRM

SugarCRM, SuiteCRM Navin Rakhonde
By default, SugarCRM / SuiteCRM allow to Mass Update only fields of Data Types: CheckboxDatetimeDateDropDownDynamic DropDownIntegerMultiple SelectionRadio However I found an ​Upgrade-Safe​ method to add any field to Mass Update. First of all, you need to know that for several fields you'll not add them to Mass Update from ​Studio​, but this can be done only by code. To do…
Read More