Hi thanks andopes, that did the trick.
I created the file as you said and used an existing vardefs.ext.php file for guidance. My code ended up as:
PHP Code:
<?php
// Added to remove massupdate fields
$dictionary["Account"]["fields"]["account_type"] = array (
'name' => 'account_type',
'vname' => 'LBL_TYPE',
'type' => 'enum',
'options' => 'account_type_dom',
'len' => 50,
'comment' => 'The Company is of this type',
'massupdate' => false,
);
$dictionary["Account"]["fields"]["industry"] = array (
'name' => 'industry',
'vname' => 'LBL_INDUSTRY',
'type' => 'enum',
'options' => 'industry_dom',
'len' => 50,
'comment' => 'The company belongs in this industry',
'merge_filter' => 'enabled',
'massupdate' => false,
);
?>
After this rebuilt the extensions and everything works correctly.
Thanks a lot!
Niks
Bookmarks