Hi All,

Relatively new to Sugar, so any help would be much appreciated. I have built and deployed a custom module named Jobs. I modified the searchfields.php file as it related to Open Items as follows. The goal is to have only active Jobs displayed when the open items checkbox is checked.

Code:
'open_only' => array(
			'query_type'=>'default',
			'db_field'=> array('jobstatus'),
			'operator'=>'not in',
			'closed_values' => array('Completed'),
			'type'=>'bool',
		),
I'm not sure if I need to make changes in another file, or If the code above is incorrect.

I am running CE 6.3

Thanks!