View previous topic :: View next topic |
Author |
Message |
Vish Beginner
Joined: 17 Sep 2003 Posts: 21 Topics: 9 Location: Mumbai India
|
Posted: Wed Oct 15, 2003 7:59 am Post subject: Releasing the which are held on the commnad TYPERUN=HOLD |
|
|
Freinds,
We know when TYPERUN=HOLD is used the job will be held temporarily from running until the operator releases the job. But how will the job will be released after ?
Which command is used for releasing the job ?
Thanks _________________ Vish |
|
Back to top |
|
|
petluri Beginner
Joined: 05 Dec 2002 Posts: 19 Topics: 5 Location: Virginia, USA
|
Posted: Wed Oct 15, 2003 8:21 am Post subject: |
|
|
'A' against the job should release the job, if you are authorized for that |
|
Back to top |
|
|
Cogito-Ergo-Sum Advanced
Joined: 15 Dec 2002 Posts: 637 Topics: 43 Location: Bengaluru, INDIA
|
Posted: Thu Oct 16, 2003 3:57 pm Post subject: |
|
|
That is true for SDSF. _________________ ALL opinions are welcome.
Debugging tip:
When you have eliminated all which is impossible, then whatever remains, however improbable, must be the truth.
-- Sherlock Holmes. |
|
Back to top |
|
|
Mike Beginner
Joined: 03 Dec 2002 Posts: 114 Topics: 0 Location: Sydney, Australia
|
Posted: Sun Oct 19, 2003 10:56 pm Post subject: |
|
|
SDSF just issue the correct JES command $AJnnnnn where nnnnn is the Jes number of the submitted job, $ may be another character dependant upon how JES has been setup (frequently in the UK it is the pound sign).
There are numerous variations of the command. The command can be issued outside of SDSF, from a console or by sending it to the internal reader (assuming that you have the access to do so). You can also issue the command directly from SDSF, it you have the appropriate authority. _________________ Regards,
Mike. |
|
Back to top |
|
|
Vish Beginner
Joined: 17 Sep 2003 Posts: 21 Topics: 9 Location: Mumbai India
|
Posted: Mon Oct 20, 2003 10:54 am Post subject: |
|
|
Mike ,
Thanks a lot. How to issue the command outside SDSF and through internal reader ? If you have synatax or examples it will be of great help.
Thanks, _________________ Vish |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Mon Oct 20, 2003 1:27 pm Post subject: |
|
|
Vish,
There are several ways of doing it. one way is to code an IEBGENER step so that it will issue a jes2 command.Most shops modified the internal reader to ignore these commands.My shop ignores all the commands which starts with a $ sign.
Code: |
//STEP0100 EXEC PGM=IEBGENER
//SYSUT1 DD *
$AJOBnnnnn
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD DUMMY
|
Note that if you are in europe the subsitute $ with |
|
Back to top |
|
|
Vish Beginner
Joined: 17 Sep 2003 Posts: 21 Topics: 9 Location: Mumbai India
|
Posted: Tue Oct 21, 2003 10:43 am Post subject: |
|
|
Thanks Kolusu _________________ Vish |
|
Back to top |
|
|
|
|