View previous topic :: View next topic
|
Author |
Message |
mox512
New User
Joined: 04 Feb 2024 Posts: 21 Location: united arab emirates
|
|
|
|
Hi every one
I have Several Jobs and this Job Submit as Start task in spool with Command (/s Name_job). I want to Submit this jobs as Start task with rexx. How can I submit Start task job with rexx?
what's you're Opinion? |
|
Back to top |
|
|
Joerg.Findeisen
Senior Member
Joined: 15 Aug 2015 Posts: 1329 Location: Bamberg, Germany
|
|
|
|
See REXX API for SDSF.
Code: |
.. Address SDSF ISFSLASH .. |
|
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10886 Location: italy
|
|
|
|
Quote: |
what's you're Opinion? |
that the explanation of your requirement is clear as mud
do you have a MD prescription to do it thu rexx ??? |
|
Back to top |
|
|
sergeyken
Senior Member
Joined: 29 Apr 2008 Posts: 2131 Location: USA
|
|
|
|
... to say nothing about
Quote: |
Compile Several JCL JOB |
- JCL jobs cannot be compiled, at all...
JCL can be only submitted! |
|
Back to top |
|
|
Pedro
Global Moderator
Joined: 01 Sep 2006 Posts: 2593 Location: Silicon Valley
|
|
|
|
Your statement is not clear because of some terminology problems.
job vs. started task:
They are different things. Jobs are in a JCL library and have a JOB card in the JCL and you use SUBMIT command to queue them for execution. After submitted, they have a job number that starts with a 'J'. Started tasks reside in PROCLIB (or concatenated) and do not have a JOB card. Plus they have a few restrictions. After started, they have a number that starts with a 'S'.
Spool:
Neither job or started task reside 'in spool'... at least not until they are actually queued for execution.
Submit vs. Start:
You can queue jobs for execution via a few methods; commonly through the TSO SUBMIT command. Started Tasks reside in PROCLIBx and must be queued by the operator START command, though SDSF allows users to specify operator commands through use of the '/' command. |
|
Back to top |
|
|
|