by Peter Prokopecz DAXVision | Apr 25, 2023 | Dynamics 365FO
There is a new documentation from Microsoft with overview of end-to-end business scenarios. This will be very useful.
by Peter Prokopecz DAXVision | Apr 25, 2023 | Dynamics 365FO
I was following this documentation to debug our SandBox environment from one of our cloud Developer virtual machines, and it was generally working. But when I tried to debug a custom service (API call from PostMan) the debugger did not stop at my breakpoint. I spent...
by Bence Sólyom | Feb 9, 2023 | Dynamics 365FO
This code allows you to create customers by uploading a text/csv file that contains a list of customers. And thanks to the encoding method, it also handles special characters without problems (you can set any character table in the processOperation method at the...
by Peter Prokopecz DAXVision | Dec 9, 2022 | Dynamics 365FO
Here I share a simple example for exporting data in ASCII ‘csv’ file format. The file is saved to the folder that is set up in the web browser. public static void main(Args _args) { Filename fileName = ‘Filename.Txt’; AsciiStreamIo asciiIo =...
by Peter Prokopecz DAXVision | Apr 7, 2022 | Dynamics 365FO, AX 2012
2022-04-07 PowerCommunity FSCMDataMigration I have completed my presentation on Dynamics 365 Finance & Operations #ERP Summit 2022. My slides can be downloaded from my GitHub:...
by Tamas Z | Jan 21, 2022 | Dynamics 365FO
This post shows how to create an Excel file from x++ code and save it to the ‘DocuRef’ table without saving the file locally. using System.IO; using OfficeOpenXml; using OfficeOpenXml.Style; using OfficeOpenXml.Table; class ExcelExportToDocuRef_DV {...