1

我在 ax 2009 中有一份报告,我想为每个供应商编号创建一个新页面。

我在相关部分使用了executesSction- element.newpage(),该部分有效,但始终显示空白页作为第一页。

如何摆脱空白页?

4

2 回答 2

0

All you need to do is call newpage AFTER everything is executed for the page.

For example:

while (some condition)
{
    this.execute(1);
    this.execute(2);

    if(!lastpage)
        this.newpage();
}

Hope that helps!

于 2013-01-18T16:53:31.283 回答
0

这个答案也适用于你。

你不应该newpage第一次打电话。使用控制变量,ClassDeclation在报表中声明。

于 2012-09-27T09:01:19.303 回答