View previous topic :: View next topic |
Author |
Message |
Nancy Beginner
Joined: 23 May 2003 Posts: 77 Topics: 26
|
Posted: Thu Aug 07, 2003 2:49 am Post subject: Problem in running REXX exec |
|
|
When I try to run my REXX exec on READY command it gives the below erro message.
READY exec
ENTER DATA SET NAME - exec(r0807c)
DATA SET userid.EXEC.CLIST NOT IN CATALOG OR CATALOG CAN NOT BE ACCESSED
READY
My dataset name is userid.exec and r0807c is a member in it which I want to run. Can anybody tell me why it is talking it as a CLIST program and not as REXX one ? |
|
Back to top |
|
 |
Dibakar Advanced

Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Thu Aug 07, 2003 3:05 am Post subject: |
|
|
When you give exec(member), it executes userid.exec.clist(member).
Either change your pds to userid.exec.clist or against the dateset give full name in quotes - 'userid.exec(member)' |
|
Back to top |
|
 |
Nancy Beginner
Joined: 23 May 2003 Posts: 77 Topics: 26
|
Posted: Thu Aug 07, 2003 3:58 am Post subject: |
|
|
Is there any way to make my own dataset as active one. I mean instead of looking into userid.exec.clist, it starts searching in userid.exec only ? |
|
Back to top |
|
 |
Nancy Beginner
Joined: 23 May 2003 Posts: 77 Topics: 26
|
Posted: Thu Aug 07, 2003 5:28 am Post subject: |
|
|
I've got the solution now. TSO ALTLIB command is the one I was looking for.
I just executed TSO ALTLIB DATASET('USERID.PDS.EXEC') command and now I can execute my rexx by just typing TSO r0807b on the command line.
Regards |
|
Back to top |
|
 |
warp5 Intermediate

Joined: 02 Dec 2002 Posts: 429 Topics: 18 Location: Germany
|
Posted: Fri Aug 08, 2003 1:10 am Post subject: |
|
|
You should look into your site standards. Very often a user or private clist is automatically used when it has the right dataset name (I made it so in our shop). |
|
Back to top |
|
 |
|
|