Hi,
I have created an Action at item level to add the selected item to another item. So, I added a method with the following code:
Innovator inn = this.getInnovator();
string item_id = this.getID();
Item eqe= inn.getItemById("EQE",item_id);
eqe = eqe.apply();
Item qua = inn.newItem("QUA","add");
qua.setPropertyItem("eqe_id",eqe);
qua = qua.apply();
return this;
This is adding a new 'QUA' item and also setting the value to the field without opening the item. But I was hoping to open the item immediately to fill in the other fields.
How to open a new item from an Action?
Thank you-Erg