Posts

Showing posts from September, 2015

Code to import Employee Master data in ax 2012 R3 x++

Hello , Here I am sharing with you the code to import the Employee Master data in ax 2012 R3. I have used this code for one of my Saudi Arabian client so some line would be new for you. Customize the code as per your requirement. Hope it will help you thanks :) ------------------------------------------------------------------------------------------------------------ static   void  ImportWorkerthruExcel(Args _args) {     SysExcelApplication xlsApplication;     SysExcelWorkBooks xlsWorkBookCollection;     SysExcelWorkBook xlsWorkBook;     SysExcelWorksheets xlsWorkSheetCollection;     SysExcelWorksheet xlsWorkSheet;     SysExcelRange xlsRange;     SysExcelCells Cells;     SysExcelCell RCell;     CommaIO inFile;      int  nRow,i;     DialogField dialogPath;   ...