IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

submit all the member in a PDS as batch JOB


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
jeevajeeva

New User


Joined: 13 May 2006
Posts: 17

PostPosted: Sat Jul 01, 2006 10:17 am
Reply with quote

hi,

i have a PDS consist more than 100 members i need to submit all the members as batch jobs at one shot.

is there any way to do that?
Back to top
View user's profile Send private message
Sahoo

New User


Joined: 08 Jun 2006
Posts: 53

PostPosted: Sat Jul 01, 2006 10:40 am
Reply with quote

You can write a rexx to sumit all the Jobs.

Get the member list by using
x = outtrap("i.",'*',"concat")
" listds " "'" || word(dsn,1) || "' members "
x = outtrap("off")

Then in a loop sumit the Jobs using
do J = 7 to i.0
JCLConcat = dsn||"("||strip(i.J)||")"
address tso "Submit '"JCLConcat"'"
end
Back to top
View user's profile Send private message
jeevajeeva

New User


Joined: 13 May 2006
Posts: 17

PostPosted: Sat Jul 01, 2006 10:45 am
Reply with quote

hi,

its ok,

but is there any JCL or TSO command to do the same.

if yes then post the JCl
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Sat Jul 01, 2006 5:04 pm
Reply with quote

Use TSO PRINTDS to convert the entire PDS into a single sequential dataset. Then, submit that dataset.
Back to top
View user's profile Send private message
jeevajeeva

New User


Joined: 13 May 2006
Posts: 17

PostPosted: Mon Jul 03, 2006 8:51 am
Reply with quote

hi superk,

after submitting the job how can i convert the sequential dataset into PDS.
Back to top
View user's profile Send private message
Hanfur

Active User


Joined: 21 Jun 2006
Posts: 104

PostPosted: Thu Jul 13, 2006 4:28 pm
Reply with quote

Jeev,
Put XDC left to the jobname in spool and give space parameters and name to save that as sequential file.


Sahoo's soln too work but you need to give your PDS name (where all of ur job resides ) to DSN as DSN=XXXX.YYYY.JCLDATASET in the above REXX to work..

-Han.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts How to get a stack trace on a looping... ABENDS & Debugging 5
No new posts Calling Java method from batch COBOL ... COBOL Programming 5
No new posts Help in Automating Batch JCL jobs mon... JCL & VSAM 3
No new posts Submit multiple jobs from a library t... JCL & VSAM 14
No new posts Batch install term/printer CICS 2
Search our Forums:

Back to Top