Field assignment

For that you need to go to /var/www/custom/Extension/modules/your_module/Ext/Vardefs

and Edit the relationshipt that corresponds to the fields you want to make required and then you need to add ‘required’ => true, in the name relation like this example

$dictionary["your_module"]["fields"]["accounts_your_module_name"] = array (
  'name' => 'accounts_your_module_name',
  'type' => 'relate',
  'required' => true,
  'source' => 'non-db',
  'vname' => 'LBL_ACCOUNTS_YOUR_MODULE_FROM_ACCOUNTS_TITLE',
  'save' => true,
  'id_name' => 'accounts_your_module_IDA',
  'link' => 'accounts_your_module',
  'table' => 'accounts',
  'module' => 'Accounts',
  'rname' => 'name',
);

Always run quick repair after

Best Regards

2 Likes