Excel import in Dynamics AX 365 or AX7 using Dialog

Excel import in Dynamics AX 365

Now Dynamics AX 365 is running on Web browser so import the data in AX using Excel, CSV, text etc. has been changed. FileName,FilenameOpen extended data type is no more supported to browse the excel file.

If we compare Excel file import process between AX 2012 and Dynamics AX 365 then in AX 2012 file was importing from Client (from local system) to AX database directly but now the new AX is running on web server over the IIS so to import file in AX mean first file need to import on server and need to store in File server or SharePoint or Database. And then read the file from stored location may be from File server, SharePoint or Database.

So how we can import data in AX using Excel file? The simple way is via using Data entities and if data entity does not exist then need to create new Data entity for table and then we can import data via using the excel file or any other supported file using that Data entity.

But sometime required to import the data in AX using dialog in that case Data entities will not help, so in this blog I will describe how we can import data in Dynamics AX 365 using excel file.

In ax 2012 we have used the below classes to import data in AX via using excel file:-

SysExcelApplication application;SysExcelWorkbooks workbooks;SysExcelWorkbook workbook;SysExcelWorksheets worksheets;SysExcelWorksheet worksheet;SysExcelCells cells;

But now in Dynamics AX 365 the above classes does not exist anymore to read excel file.

So how we can import data in AX via Excel file? ,

So first step to import the excel file in AX , create a new class (TestExcelImport) and extend with RunBase and add a new button in dialog with upload caption (Same as AX 2012)

 Object Dialog()

   {

       FormBuildButtonControl buttonControl;

       DialogGroup            dlgGroup;

       FormBuildGroupControl  buttonGroup;

       dialog = super();

              

       dlgGroup       = dialog.addGroup('');

       buttonGroup    = dialog.formBuildDesign().control(dlgGroup.formBuildGroup().id());

       buttonControl  = buttonGroup.addControl(FormControlType::Button, 'Upload');

       buttonControl.text("Upload file");

 

       buttonControl.registerOverrideMethod(methodStr(FormButtonControl, clicked),

                                        methodStr(TestExcelImport, uploadClickedEvent),

                                        this);

       return dialog;

   }

 

And below is the upload button click event (click event already registered in above dialog method)

private void uploadClickedEvent(FormButtonControl _formButtonControl)

   {

       FileUploadTemporaryStorageResult result = File::GetFileFromUser() as FileUploadTemporaryStorageResult;

       if (result && result.getUploadStatus())

       {

           result.getFileContentType();

           //result.

           fileUrl = result.getDownloadUrl();

           info(fileUrl);

       }

   }

FileUploadTemporaryStorageResult is the class has been introduced in AX and this class is responsible to browse and upload the file on server (On File server, SharePoint or Database). And from here store the file path (for me fileUrl) in a variable to read the file later in run method.

Now next step to read the data from uploaded excel file:-

 Public  void   run()

   {

       System.Byte[] byteArray;

       System.IO.Stream     stream;

       try

       {

           stream = File::UseFileFromURL(fileUrl);

           this. readExcelData(stream);

           //info("Done"); 

       }

       catch(Exception::Error)

       {

           info(strFmt("%1 %2",Exception::Error,fileUrl));

       }

   }

 

File class has been used to read excel data from the url (file location from server) and will return the data in stream. Now the task is to read excel Stream data in AX.

So to read stream data of excel file Microsoft have used ExcelPackage (EPPlus ), we can manipulate the file using this package (Create excel,create new worksheet , pivot table , design ,formatting etc.). Developer can access the classes of  EPPlus using OfficeOpenXml namespace. the below classes is responsible to read the data from stream.

       OfficeOpenXml.ExcelWorksheet;

       OfficeOpenXml.ExcelPackage;

And below is the method which is responsible to read the data from stream into container

public container  readExcelData(System.IO.Stream      _stream)

   {

       OfficeOpenXml.ExcelWorksheet _worksheet;

       OfficeOpenXml.ExcelPackage package = new OfficeOpenXml.ExcelPackage(_stream);

       int iRowCount,iCellCount;

       anytype        anyData;

       

       try

       {

           if(package)

           {

               _worksheet = package.get_Workbook().get_Worksheets().Copy("Sheet1","Journal");

               var cells = _worksheet.get_Cells();

               iRowCount = _worksheet.get_Dimension().get_End().get_Row();

 

               iCellCount = _worksheet.get_Dimension().get_End().get_Column();

 

               for (int i=2;i<=iRowCount;i++)

               {

                   conRow = conNull();

                   for (int j=1;j<=iCellCount;j++)

                   {

                       anyData= cells.get_Item(i, j).get_Value();

                       if(!anyData && j ==1)

                           break;

 

                       if(anyData)

                           conRow += anyData;

                       else

                           conRow += "";

                      

                   }

                       if(conRow)

                       {

                           conRow += iRowCount;

                           conData = conIns(conData,i,conRow);

                       }

               

                       

               }

             info(con2Str(conData));

           }

           

       }

       catch (Exception::CLRError)

       {

           throw error("@SYS135884");

       }

       return conData;

   }

ExcelPackage class is responsible to create  excel package from stream (can be file also in place of Stream), ExcelWorksheet class where the worksheet has been copied with data. And then looping the data of rows from the excel cells.

conData container variable declared in class declaration of class. So now enjoy the excel import in AX.

Note:-Import the data via using CSV or text file still easy and we can use CommaIo or Comma7Io.

For any query kindly let me know.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值