在SAP SCRIPT中,如何添加分页符或在新页面中打印记录

发布于 2024-07-07 05:15:28 字数 85 浏览 8 评论 0原文

我想每次合同号发生变化时都在新页面中打印记录。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苍景流年 2024-07-14 05:15:28

SAPSCRIPT(事务SE71)内部使用控制命令NEW-PAGE。 (控制命令通过在格式列中键入 /: 来识别)。

在打印程序(事务 SE38)内,使用功能模块 CONTROL_FORM 调用命令 NEW-PAGE:

CALL FUNCTION 'CONTROL_FORM'
  EXPORTING
      COMMAND   = 'NEW-PAGE'
  EXCEPTIONS
      UNOPENED  = 1
      UNSTARTED = 2
      OTHERS    = 3.

您只需使用这些选项之一,具体取决于您将确定是否需要分页的位置。

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:

CALL FUNCTION 'CONTROL_FORM'
  EXPORTING
      COMMAND   = 'NEW-PAGE'
  EXCEPTIONS
      UNOPENED  = 1
      UNSTARTED = 2
      OTHERS    = 3.

You only need to use one of these options, depending on where you will determine if a page-break is needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文