vote up 1 vote down star

How do you insert page breaks in Dynamic AX reports?

flag

40% accept rate

1 Answer

vote up 0 vote down check

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();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.