Excel Import through code in D365fo X++
Excel Import through code in D365fo X++ using System.IO; using OfficeOpenXml; using OfficeOpenXml.ExcelPackage; using OfficeOpenXml.ExcelRange; class CBLImportCartonsData { str myFileType; public static void main(Args _args) { } public str setFileType(str _FileType) { myFileType = _FileType; return myFileType; } public Void Execute(FormControl sender) { this.uploadFile(sender); } public void uploadFile(FormControl sender) { System.IO.Stream stream; ExcelSpreadsheetName sheeet; FileUploadBuild fileUpload; DialogGroup dlgUploadGroup; FileUploadBuild ...