rexx

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

天大地大妈咪最大 提交于 2019-12-02 07:52:30
问题 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 World" The program is located as member HELLO in the PDS ME.USER.EXEC . A valid JOB CARD for my installation is (our environment includes ISPF/PDF as opposed to ROSCOE):- //MYJOB JOB ,,CLASS=1,MSGCLASS=H,NOTIFY=&SYSUID Note! this has been written as a tutorial 回答1: There are a number of ways that you can run the program via batch. I will cover 3

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

时光毁灭记忆、已成空白 提交于 2019-12-02 05:02:57
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 World" The program is located as member HELLO in the PDS ME.USER.EXEC . A valid JOB CARD for my installation is (our environment includes ISPF/PDF as opposed to ROSCOE):- //MYJOB JOB ,,CLASS=1,MSGCLASS=H,NOTIFY=&SYSUID Note! this has been written as a tutorial There are a number of ways that you can run the program via batch. I will cover 3 ways all of which are different according to the environment (i.e. what they can utilise.) Method 1 - Run the

Executing a DFSORT using REXX

两盒软妹~` 提交于 2019-11-28 12:21:07
问题 I would like to know,is it possible to invoke DFSORT through REXX? I have used the below code,but the result is not as expected. /*REXX*/ QUEUE "//ISDNNNN JOB XXX,XX" QUEUE"//STEP003 EXEC PGM=SORT" "FREE FI(SYSOUT SORTIN SORTOUT)" "ALLOC FI(SYSOUT) DA(*)" "ALLOC FI(SORTIN) DA('XXX.XXX.XXX') REUSE' "ALLOC FI(SORTOUT) DA('XXX.XXX.XXX.OUT') REUSE' QUEUE"//SYSIN DD*" " SORT FIELDS = COPY" " INCLUDE COND = (1,2,CH,EQ,C'AR')" QUEUE"/*" QUEUE"//SYSPRINT DD SYSOUT=*" QUEUE"$$" "SUBMIT * END($$)" 回答1: