Skip to main content

Enable breakpoint through Ax Server Configuration utility

1. Click Start > Control Panel > Administrative Tools > Microsoft Dynamics AX 2009
Server Configuration to open the Microsoft Dynamics AX Server Configuration utility .
2. Click Manage and then select Create configuration. .
3. In the Create Configuration form, name the new configuration and click OK.
4. On the Application Object Server tab, select Enable breakpoints to debug code X++ code running on this server.
5. Click Apply.
6. If a message is displayed that indicates that the AOS should be restarted, click OK.

Popular posts from this blog

X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )

Below is sample X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )      Args                       args = new Args();     CustInvoiceJour            custInvoiceJour;     SalesInvoiceJournalPrint   salesInvoiceJournalPrint;       select firstonly custInvoiceJour where custInvoiceJour.SalesId != '';       // Add record to be printed.     // In order to have the context table we need to set args.record().     args.record(custInvoiceJour);       salesInvoiceController = new SalesInvoiceController();     salesInvoiceController.parmReportName(         PrintMgmtDocType::construct(PrintMgmtDocumentType::SalesOrderInvoice).getDefaultReportFormat());       salesInvoiceContract = salesInvoiceController.parmReportContrac...