Skip to main content

Posts

Showing posts with the label Call go to main table form using jumpref method

Call go to main table form using jumpref method in axapta

public void jumpRef() { Args args; menuFunction menuFunctionobject; ; args = new Args(); menuFunctionobject = new menuFunction(menuitemDisplayStr(“FormName”), MenuItemType::Display); args = new Args(menuFunctionobject.object()); args.caller(element); args.record(“datasource which added in the current form”); menuFunctionobject.run(args); }