How can I run my Rexx program as a batch job?

后端 未结 3 1333
别那么骄傲
别那么骄傲 2021-01-22 15:34

I have a Rexx program that I want to run as a batch job. How can I do this?

This is my program :-

/* Rexx – HELLO – Write Hello World */
Say \"hello Worl         


        
3条回答
  •  既然无缘
    2021-01-22 15:51

    Additional comments to the above answer.. The below technote may be helpful if you wish to run your REXX exec using ISPF services...

    http://www.ibm.com/support/docview.wss?uid=swg21023990

    Make sure that the ISPPROF file is concatenated as the first file in ISPTLIB. The example uses a temporary file that will be unique to the job. If the REXX exec does table services you may need an ISPTABL DD. I would suggest using the same file for ISPPROF and ISPTABL and concatenate it first in ISPTLIB. This can be a permanent file if the table needs to be save, however it should not be in use by other jobs or TSO users so as to avoid enqueue errors.

    As the previous update stated his answers suffice for the simple REXX exec.

提交回复
热议问题