用于运行COBOL程序调用子程序的JCL

发布于 2024-12-03 12:33:25 字数 120 浏览 1 评论 0原文

我有一个 COBOL pgm A,它正在调用另一个 COBOL pgm B。 在 pgm BI 中需要一个文件。我如何编写 JCL 以便我能够在 pgm B 中访问该文件?我已经在B中为该文件编写了select子句和FD条目。

I have one COBOL pgm A which is calling another COBOL pgm B.
In pgm B I need one file.How can I write JCL so that I would be able to access this file in pgm B? I have written select clause and FD entry for this file in B.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

想你只要分分秒秒 2024-12-10 12:33:26

您必须包含 DD 声明在 JCL 中查找执行程序 A 的步骤。

如果该文件存在,那就很容易了。

//ABCDEFGH DD DISP=SHR,DSN=your.file.name.here

其中 ABCDEFGH 是您在程序 B 的 SELECT 语句中使用的名称。

如果要创建新文件,则必须考虑文件将使用的估计空间以及要放置它的位置。

//ABCDEFGH DD DISP=(NEW,CATLG,DELETE),
//            DSN=your.file.name.here,
//            AVGREC=K,
//            RECFM=FB,
//            LRECL=your-lrecl-here,
//            MGMTCLAS=your-management-class-here,
//            SPACE=(your-lrecl-here,(primary-number-of-records,secondary),RLSE)

这只是徒手写的,您确实应该查看 JCL 参考JCL 用户指南

You must include a DD statement in the JCL for the step that executes Program A.

If the file exists, that's quite easy.

//ABCDEFGH DD DISP=SHR,DSN=your.file.name.here

Where ABCDEFGH is the name you uses in your SELECT statement in Program B.

If you are creating a new file, you must take into account the estimated space your file will use and where you want to place it.

//ABCDEFGH DD DISP=(NEW,CATLG,DELETE),
//            DSN=your.file.name.here,
//            AVGREC=K,
//            RECFM=FB,
//            LRECL=your-lrecl-here,
//            MGMTCLAS=your-management-class-here,
//            SPACE=(your-lrecl-here,(primary-number-of-records,secondary),RLSE)

This is just freehand, you really should look at the JCL Reference and JCL User's Guide.

人│生佛魔见 2024-12-10 12:33:26
  1. 在步骤中包含 DD 语句。
  2. 程序 B 甚至不必是 COBOL。
  3. 理想情况下,程序 B 是一个服务程序 - 打开、关闭、读取、写入、重写
    要求和您的需求。如果这种封装是预期的,它将使您的生活变得更加轻松。

我见过这样的情况,其中 B 是汇编器,在不交互运行时定期刷新写入磁盘,但在调试时立即写入。

  1. Include the DD Statement in the step.
  2. Program B does not even have to be COBOL.
  3. Ideally design so that program B is a service program - opens, closes, reads, writes re-writes according to
    request and your needs. It will make your life a lot easier if this encapsulation is anticipated.

I have seen this where B is assembler and flushes writes to disk periodically when not run interactively, but writes immediately when debugging.

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