我在ax 2009中有一份报告,我想为每个供应商编号创建一个新页面。
我在相关部分使用了executesSction
- element.newpage()
,但总是显示空白页作为第一页。
如何摆脱空白页?
答案 0 :(得分:0)
This answer也适用于您。
您不应该第一次致电newpage
。使用控制变量,在报告的ClassDeclation
中声明它。
答案 1 :(得分:0)
您需要做的就是在页面执行完所有内容后调用newpage。
例如:
while (some condition)
{
this.execute(1);
this.execute(2);
if(!lastpage)
this.newpage();
}
希望有所帮助!