从 JCL 批处理调用 CICS 程序
是否可以从 JCL 批处理调用 CICS 程序?
如果是的话怎么办?如果没有为什么不呢?
Is it possible to call a CICS program from JCL batch?
If yes how? If no why not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。从技术上讲,COBOL 批处理程序正在与 CICS 通信,并且您从 JCL 执行 COBOL 批处理程序。您可以在 CICS Transaction Server 手册中阅读更多内容。
外部CICS接口介绍
我相信你的CICS程序不能使用映射(必须是会话式的),但是我已经有一段时间没有使用CICS了,所以我可能是错的。
Yes. Technically, a COBOL batch program is communicating with CICS, and you execute the COBOL batch program from JCL. You can read more in the CICS Transaction Server manual.
Introduction to the external CICS interface
I believe that your CICS program cannot use maps (must be conversational), but it's been a while since I've worked with CICS, so I might be mistaken.
可以通过三种方法来执行此操作:
或者如果可能的话,就不要这样做。将逻辑移动到共享,或者共享 DB2 中的数据,或者其他东西。
There are three ways to do this:
Or if possible, just don't do it. Move the logic to a share, or share data in DB2, something else.