I need to add a custom ADD BUNDLE button to a form my prob is with the functionality, I want to use this : Xrm.Utility.openEntityForm("Entity"); to open the bundle form, but the only entity I can use is Product, How can I open the product form in Bundle type and not just a product form.
***edit : after researching online, basically I need know how to open a PRODUCT record which it's product structure is 3.
Like I answered in SO, use this snippet. stackoverflow.com/.../7920473
var parameters = {};
parameters["productstructure"] = 3;
Xrm.Utility.openEntityForm("product", null, parameters);
Hamza H
141
Daniyal Khaleel
132
DAnny3211
130