Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Page breaks in Dynamic Ax Reports

Tags:

axapta

x++

How do you insert page breaks in Dynamic AX reports?

like image 778
James Moore Avatar asked Oct 11 '08 06:10

James Moore


People also ask

How do I insert a page break in SSRS report?

On the design surface, right-click the corner handle of the data region and then click Tablix Properties. On the General tab, under Page break options, select one of the following options: Add a page break before. Select this option when you want to add a page break before the table.

What happened to Microsoft Dynamics AX?

Microsoft Dynamics AX was one of Microsoft's enterprise resource planning software products. It is part of the Microsoft Dynamics family. In 2018, its thick-client interface was removed and the web product was rebranded as Microsoft Dynamics 365 for Finance and Operations as a part of Microsoft's Dynamics 365 suite.

What is AOT in Dynamics AX?

In Microsoft Dynamics AX, the Application Object Tree (AOT) contains all of the definitions of elements that are used to build Microsoft Dynamics AX, such as classes, tables, forms, and so on. This topic provides an overview of the AOT and defines the top-level nodes.

Why is Microsoft AX so slow?

If Dynamics AX is running slowly, it could mean that you have increased the number of users and the workload you've placed on it without increasing the infrastructure to manage the growth. Load testing can put your system through its paces and allow you to gauge the amount of headroom you have for growth.


1 Answers

Call element.newPage(). If your report has no code on it and you want a page break before a particular section, add an executeSection method and call element.newpage() before the call to super().

public void executeSection()
{
    ;
    element.newPage();
    super();
}
like image 198
Jay Hofacker Avatar answered Sep 30 '22 05:09

Jay Hofacker