6

How do you insert page breaks in Dynamic AX reports?

Jay Hofacker
  • 3,439
  • 20
  • 14
James Moore
  • 2,501
  • 6
  • 26
  • 29

1 Answers1

7

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
  • 3,439
  • 20
  • 14