View previous topic :: View next topic |
Author |
Message |
Eduardo Jacob Beginner
Joined: 11 May 2006 Posts: 2 Topics: 2 Location: PT
|
Posted: Thu May 11, 2006 11:26 am Post subject: How to put a JCL in suspended state using REXX |
|
|
Hi,
I have a REXX which runs on Batch Region under JCL
Is there a way to put the Job in suspended state for a given time interval ?
Thanks |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
dz Beginner
Joined: 02 Apr 2006 Posts: 26 Topics: 0
|
Posted: Thu May 11, 2006 12:00 pm Post subject: |
|
|
Here is another REXX trick not mentioned elsewhere in the replies:
/* Rexx */
Arg seconds
<insert> - - - - - - - - - - -
address syscall 'SLEEP ' seconds
exit |
|
Back to top |
|
 |
|
|