我在 ax 2009 中有一份报告,我想为每个供应商编号创建一个新页面。
我在相关部分使用了executesSction
- element.newpage()
,该部分有效,但始终显示空白页作为第一页。
如何摆脱空白页?
我在 ax 2009 中有一份报告,我想为每个供应商编号创建一个新页面。
我在相关部分使用了executesSction
- element.newpage()
,该部分有效,但始终显示空白页作为第一页。
如何摆脱空白页?
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!
这个答案也适用于你。
你不应该newpage
第一次打电话。使用控制变量,ClassDeclation
在报表中声明。