I have a parent view id V which is a form F and inside this form a Goup with 3 fields F1, F2 and F3.
My inherited view looks like:
<record model="ir.ui.view" id="view_v_form">
<field name="name">My view</field>
<field name="model">my.module.class</field>
<field name="inherit_id" ref="parent_module.V"/>
<field name="type">form</field>
<field name="arch" type="xml">
<xpath expr="//form/field[@name='F3']" position="before">
<field name="myField"/>
</xpath>
</field>
</record>
But it doesn't appear anywhere, any idea?