|
|
| Author |
Message |
som_infotech
New User
Joined: 25 Feb 2006 Posts: 22 Location: chennai-india
|
|
|
|
| I have 10 PDS with 100 JCLs in it and I want to submit the all the JCLs out of it. whether it is possible with any simple methods. |
|
| Back to top |
|
 |
References
|
Posted: Thu May 08, 2008 11:58 pm Post subject: Re: Executing the JCLSs in a PDS |
 |
|
|
 |
gcicchet
Senior Member
Joined: 28 Jul 2006 Posts: 363
|
|
|
|
Hi,
here is one way if you have FILEAID.
| Code: |
//FILEAID EXEC PGM=FILEAID
//SYSPRINT DD SYSOUT=*
//DD01 DD DSN=PDS1,
// DISP=SHR
// DD DSN=PDS2,
// DISP=SHR
//INTRDR DD SYSOUT=(A,INTRDR)
//SYSIN DD *
$$DD01 USER MEMBERS=ALL,WRITE=INTRDR
/*
|
Gerry |
|
| Back to top |
|
 |
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 2569 Location: Brussels once more ...
|
|
|
|
| Use REXX to get a list of members in each PDS, and then use the SUBMIT command. |
|
| Back to top |
|
 |
|
|