AOW_Workflows

Hi,
in workflow i’d like to send an email to the Contract related Account,

how can i add it on the dropdown you see in the attached pic?

Thanks in advance

Hi, i digged deeper in code and i found that:

the problem is that this field:

 'contract_account'

isn’t defined with type = relate.

Even if in modules/AOS_Contracts/vardefs.php
you get:

        'contract_account' =>
            array(
                'required' => true,
                'source' => 'non-db',
                'name' => 'contract_account',
                'vname' => 'LBL_CONTRACT_ACCOUNT',
                'type' => 'relate',
                'massupdate' => 0,
                'comments' => '',
                'help' => '',
                'importable' => 'true',
                'duplicate_merge' => 'disabled',
                'duplicate_merge_dom_value' => '0',
                'audited' => 0,
                'reportable' => true,
                'relationship' => 'account_aos_contracts',
                'len' => '255',
                'id_name' => 'contract_account_id',
                'ext2' => 'Accounts',
                'module' => 'Accounts',
                'quicksearch' => 'enabled',
                'studio' => 'visible',
            ),

any ideas?