Friday, January 20, 2012

Launch MenuItem from x++

you can call the menuitem itself using Menufunction.


Here is an example that should work.
static void Menuitem_job(Args _args)
{
MenuFunction mf;
;
mf = new menufunction(menuitemdisplaystr(CustTable), MenuItemType::Display);
mf.run();
}


Above code will open the CustTable From.

No comments:

Post a Comment

How to stop updating existing records while importing Data through Data Management Framework (DMF)

Problem Statement : I was working on a requirement involving file-based integration using the Data Management Framework (DMF). The data ent...