Friday, 11 October 2019

METHOD TO LINK TO PARENT FORM IN D365

HOW TO CREATE A LINK TO ITEM FORM ON A FIELD.
public void jumpRef()
{
Args args;
MenuFunction menuFunction;
args = new args();
args.record(InventTable::find(this.valueStr()));
menuFunction = new MenuFunction(menuitemDisplayStr(EcoResProductDetailsExtended), MenuItemType::Display);
menuFunction.run(args);
}
THANKS,
Vikas Mehta

No comments:

Post a Comment

Blog Post 6: Bonus – Building Your First Custom Copilot Plugin in X++

Blog Post 6: Bonus – Building Your First Custom Copilot Plugin in X++  Introduction In our previous posts, we explored what Copilot can do o...