View previous topic :: View next topic |
Author |
Message |
karavi2000 Beginner
Joined: 17 Aug 2003 Posts: 51 Topics: 26 Location: Chennai
|
Posted: Wed Feb 18, 2004 11:44 pm Post subject: TSO ISRFIND |
|
|
Hi,
I came across a command TSO ISRFIND yesterday. Can anyone please tell me whatz the purpose it serve and how it can be used?
Thanks & Regards,
Ravishankar |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Thu Feb 19, 2004 6:18 am Post subject: |
|
|
karavi2000,
ISRFIND is a REXX exec that issues a LISTA STATUS and searches for a specified member or load module. Also, the exec optionally calls AMBLIST to check the MODIFIED, FIXED, and PAGEABLE LPAs and checks LPALIST and LNKLST (pointed to by system control blocks) for the specified load module. If invoked under ISPF, the information is displayed via an ISPF table display (panel ISRFINDP) and allows the user to BROWSE or EDIT the specified member.
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
karavi2000 Beginner
Joined: 17 Aug 2003 Posts: 51 Topics: 26 Location: Chennai
|
Posted: Fri Feb 20, 2004 3:04 am Post subject: |
|
|
Kolusu,
Yeah. ISRFIND lists the sameset of datasets as of LISTA. But is there any way by which we can add userdefined set of dataset into that and then find a particular member in that.
Please let me know.
Thanks & Regards,
Ravishankar |
|
Back to top |
|
 |
Dibakar Advanced

Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Fri Feb 20, 2004 3:35 am Post subject: |
|
|
One way is to allocate user libraries first
Code: |
/* REXX to get allocate my dsns
*/
address TSO "alloc f(mydsns) da(",
"'ab.DIBakar.REXX',",
"'ab.DIBakar.REXXII',",
"'tso1234.uti.clist',",
"'ab.DIBakar.REXX3'",
") shr reuse"
exit
|
|
|
Back to top |
|
 |
anand_hack Beginner
Joined: 16 May 2004 Posts: 1 Topics: 0 Location: Pune, India
|
Posted: Mon May 17, 2004 2:43 am Post subject: |
|
|
Can you tell some links ..
for learning REXX..
I know the basic part.. a little advanced is what is required now !! |
|
Back to top |
|
 |
|
|