This question is related to my previous question: conditional, dynamic field domain.
Example:
<field name="xxx"/>
<field name="yyy_ids" widget="many2many" domain="....DOMAIN......">
I know how to change the domain for yyy_ids when signal change is generated
@api.onchange('xxx')
def do_xxx(self):.... here code to change DOMAIN...
return {'domain': {'yyy_ids': ....DOMAIN_VALUE....}}
but how generate onchange signal, at the start, when form will be loaded?
Thanks, I will check soon.