View previous topic :: View next topic |
Author |
Message |
DavidJUrban Beginner
Joined: 29 Dec 2004 Posts: 3 Topics: 2
|
Posted: Thu Jan 06, 2005 4:28 pm Post subject: Is it possible to concatenate sysinlib member libraries? |
|
|
Hello all. Was developing a proc that I could use in Prod, acceptance, and unit test libraries. I was hoping to be able to search all libraries for newer versions of sysin cards if in test region. I tried to code it as such..
SYSIN DD DSN=sysinlib1(member)
DD DSN=sysinlib2(member)
DD DSN=sysinlib3(member)
Unlike a steplib concatenation, using this method caused the job to try to process all the libraries and not the first member it found.
Is there any way to accomplish my goal?
thanx a bunch. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
|
Back to top |
|
|
Bill Dennis Advanced
Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Thu Jan 06, 2005 5:12 pm Post subject: |
|
|
You would need a pre-step to find the appropriate member and copy to a temp dset. Pass the temp dset to the SYSIN DD.
Search the board for ISRSCAN and ISRLEMX. They are ISPF utilities that search a concatenation and copy the desired member.
Regards,
Bill |
|
Back to top |
|
|
|
|