I added a field action to the lookup field that populates the price field with the price of the product selected using this:
- crmResp = zoho.crm.getRecordById("Products", input.Product_ID);
- x = crmResp.get("Unit Price");
- input.Price = x;
This works fine. However, when I access the the subform through the main form, called sales order, the field action does not execute. Does anybody know how to make the same action (populating the price field of the product selected) when the subform is accessed through a parent form