Exporting data to Excel from axapta x++ Hi All! Sometimes we need to export data from Microsoft Dynamics AX to Excel using axapta x++ code and we don't know how to do this... Exists some differents ways to do this, but I think the best way is using the SysExcel class of Dynamics AX and its related. The only problem I found using this class... is that it can not be used in a batch process. Sample code: static void TheaxaptaCreateExcel(Args _args) { SysExcelApplication xlsApplication; SysExcelWorkBooks...(read more)
↧