4 Apr 2013

Call Import data file in button in axapta

First write code on button clicked event

void clicked()
{
super();
new MenuFunction(menuitemactionstr(SysDataImportExcel),MenuItemType::Action).run();
}

then select file to import data in table.

No comments:

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...