views:

730

answers:

1

How do you insert page breaks in Dynamic AX reports?

+1  A: 

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();
}
Jay Hofacker

related questions