Page breaks in Dynamic Ax Reports
Asked Answered
A

1

6

How do you insert page breaks in Dynamic AX reports?

Adenine answered 11/10, 2008 at 6:51 Comment(0)
I
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();
}
Isomorphism answered 11/10, 2008 at 13:55 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.