View previous topic :: View next topic |
Author |
Message |
chikdu Beginner
Joined: 06 Jul 2005 Posts: 29 Topics: 20
|
Posted: Fri Jul 15, 2005 5:35 am Post subject: Executing a REXX routine without giving the exec command |
|
|
Hi,
I want to view a member of a PDS.For this i want to develop a REXX routine. Instead of using an exec command, can i directly give "TSO VW member name". I am new to REXX.
Can anyone help me do this ?
Thanks. |
|
Back to top |
|
|
Dibakar Advanced
Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Fri Jul 15, 2005 6:27 am Post subject: |
|
|
your question is not clear, do you want to code something like "ispexec view dataset('dsn(member)')" in your rexx code. |
|
Back to top |
|
|
Manas Biswal Intermediate
Joined: 29 Nov 2002 Posts: 382 Topics: 27 Location: Chennai, India
|
Posted: Wed Jul 20, 2005 2:09 pm Post subject: |
|
|
chikdu,
Concat the dataset containing the REXX routine to SYSPROC. That way you can directly invoke the REXX routine from Option 6 or using TSO "Rexx Routine Name" instead of using an EXEC.
Regards,
Manas _________________ There is no path to peace. Peace is the path.
- Mahatma Gandhi (1869-1948) |
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Thu Jul 21, 2005 12:29 am Post subject: |
|
|
or use ISREPDF which is already part of ISPF
TSO ISREPDF dsn(member)
or often, just
EPDF dsn(member) |
|
Back to top |
|
|
|
|