Hello, This bug is invalid because what you want to achieve is perfectly doable. The part you are missing is the fact that the dynamic definition of an ir.actions.act_window may contain an extra 'res_id' key, which combined with view_mode="form" will directly open the form view of the given record. As of v7.0 the res_id column is explicitly defined on ir.actions.act_window. Before v7.0 this key was only supported in dynamic action definitions, such as those returned by a method call. Based on the above, and assuming you have a many2one field 'opportunity_id' on the sale.order model, there are many different ways to directly open the form view of the related opportunity from the sale.order. Here are a few options: 1. The simplest way does not even use an action and does not need the 'res_id' trick at all. You simply add the opportunity_id field in the form view of sale.order, and make sure to pass a special context to choose the "Opportunity" form view instead of the default "Lead" form. This is as simple as adding the following field to the sale.order form view: Users can now open the form view of the opportunity from the sale.order directly. 2. As the 'res_id' value of the action will be dynamic, we can't simply create a static 'act_window' action in the database. But we can instead add a new method to sale.order that will return the appropriate action. An example method would be: def open_opportunity(self, cr, uid, ids, context=None): return { 'type': 'ir.actions.act_window', 'res_model': 'crm.lead', 'res_id': self.browse(cr, uid, ids[0], context).opportunity_id.id, 'view_mode': 'form', 'view_type': 'form', 'view_id': self.pool.get('ir.model.data').get_object(cr, uid, 'crm','crm_case_form_view_oppor').id, } And can be executed by adding a button in the form view of the sale.order, as follows: