View previous topic :: View next topic |
Author |
Message |
soumya_vema Beginner
Joined: 03 Mar 2008 Posts: 2 Topics: 1
|
Posted: Tue Mar 04, 2008 1:32 am Post subject: 3.14 search |
|
|
Can a 3.14 search accept a PS file as an input. This file will contain the list of the components to be searched. |
|
Back to top |
|
 |
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Tue Mar 04, 2008 4:41 am Post subject: |
|
|
1 - This is not a JCL question but TSO
2 - Have you tried hitting the F1 key while in the panel where you sepcify your criteria? I have - and read parts of the manual - and I do not recall such a facility. _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|
Back to top |
|
 |
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Tue Mar 04, 2008 4:45 am Post subject: |
|
|
3 - of course, running in batch you have to supply data to a DDNAME and this can be either as card images or a dataset (flat or PDS) _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|
Back to top |
|
 |
soumya_vema Beginner
Joined: 03 Mar 2008 Posts: 2 Topics: 1
|
Posted: Tue Mar 04, 2008 7:55 am Post subject: |
|
|
Yaa ,but my question is whether the program ISRSUPC can accept a file has an input (which will contain the list of components to be searched) or can it be modified to do the same. Also how can I get an idea of this program |
|
Back to top |
|
 |
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Tue Mar 04, 2008 9:27 am Post subject: |
|
|
yes. The SYSIN data set has SELECT statements. Go to a member list in 3.15 Search-For and generate JCL based to search just a few members. Then have a look in the ISPF user's guide (appendix?) for details...
Sample... Code: | //SEARCH EXEC PGM=ISRSUPC,
// PARM=(SRCHCMP,
// 'IDPFX')
//NEWDD DD DSN=ISP.SISPMENU,
// DISP=SHR
//OUTDD DD SYSOUT=(A)
//SYSIN DD *
SRCHFOR 'something'
SELECT FLMS10,FLMS20,FLMS30,FLMU00,ISPA32,ISPA33,ISPA40
/* |
_________________ New members are encouraged to read the How To Ask Questions The Smart Way FAQ at http://www.catb.org/~esr/faqs/smart-questions.html. |
|
Back to top |
|
 |
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Wed Mar 05, 2008 4:46 am Post subject: |
|
|
Quote: |
Yaa ,but my question is whether the program ISRSUPC can accept a file has an input (which will contain the list of components to be searched) |
And my answer said 'Yes'
Quote: | or can it be modified to do the same. |
I very much doubt it as it is an IBM program and copyrighted.
Quote: |
Also how can I get an idea of this program |
As I suggested - hit the F1 key (Help) and, as semigeezer said, read the manual. _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|
Back to top |
|
 |
|
|