xml:
1<record model="ir.ui.view" id="form_view_unique_id">
2 <field name="name">name.of.form.view</field>3 <field name="model">model.name</field>
4 <field name="arch" type="xml">
5 <form string="Form Name" create="false" >
6 <sheet>
7 <group>
8
9 </group>
10 </sheet>
11 </form>
12 </field>
13</record>
Code Description:
To hide "Save" button we only need to add (create="false") as we added in our code in line no 5. In the below screen shot you can see there is no "Save" button.