在SAP SCRIPT中,如何添加分页符或在新页面中打印记录
我想每次合同号发生变化时都在新页面中打印记录。 SAP SCRIPT 中新页面的语法是什么?
如果您知道如何实现这一目标,请告诉我。
I would like to print the records in a new page every time the contract number changes. What is the syntax for new page in the SAP SCRIPT.
Kindly let me know if you know how to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SAPSCRIPT(事务SE71)内部使用控制命令NEW-PAGE。 (控制命令通过在格式列中键入 /: 来识别)。
在打印程序(事务 SE38)内,使用功能模块 CONTROL_FORM 调用命令 NEW-PAGE:
您只需使用这些选项之一,具体取决于您将确定是否需要分页的位置。
Inside of SAPSCRIPT (Transaction SE71) use the control command NEW-PAGE. (Control Commands are identified by typing /: in the format column).
Inside the Print Program (Transaction SE38) use Function Module CONTROL_FORM to call the command NEW-PAGE:
You only need to use one of these options, depending on where you will determine if a page-break is needed.