Customize query in popup view

SugarCRM, SuiteCRM Navin Rakhonde
This is a way to customize the SQL queries inside the popup( view.popup.php ) in SugarCRM / SuiteCRM. Create a file called view.popup.php in \custom\modules\< module >\views with this: if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); class <module>ViewPopup extends ViewPopup{ public function listViewProcess(){ parent::listViewProcess(); $this->params['custom_select'] = " CUSTOM SELECT";…
Read More