Hi guys.. i have a question with inheritance view, i've just got what is inheritance view for the function. But i have next question, why must default view, such as: res.partner, must have more than one inheritance view, such as : res.partner.emails.info.inherit
<?xml version="1.0"?>
<xpath expr="//field[@name='active']" position="after">
<field name="opt_out"/>
</xpath>
and res.partner.opt_out.form
<?xml version="1.0"?>
<xpath expr="//sheet" position="after">
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread" options="{"thread_level": 1}"/>
</div>
</xpath>
, and many more. why must separated into different file? why just no united it? and then, when i finished making new inheritance view in xml, how to update it? so that it can be inserted to database and directly applied in parent view.. really need your help guys.. thank's in advance.