View previous topic :: View next topic |
Author |
Message |
tempuser Beginner
Joined: 05 Oct 2005 Posts: 28 Topics: 20 Location: INDORE
|
Posted: Tue Dec 05, 2006 5:08 pm Post subject: REXX problem |
|
|
Hi,
Could any body let me know the mistake that I am doing ?
I am trying to use LISTD command i rexx with the below code.
Code: |
/* REXX */
PDS1 = XXXX.YYYY.P.TEMP1
LISTDS 'PDS1'
SAY 'PDS1' PDS1
|
After execution of this,I am getting the error saying that PDS1 not found.
PDS1 DATA SET XXXX.YYYY.P.TEMP1 NOT IN CATALOG.BUT ACTUALLY THE FILE IS AVAILABLE.
IF I REMOVE THE QUOTE LIKE BELOW
LISTDS PDS1
I AM GETTING THE ERROR myid.XXXX.YYYY.P.TEMP1 not found.
Thanks |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
moyeenkhan Beginner
Joined: 04 Dec 2002 Posts: 64 Topics: 21
|
Posted: Thu Dec 07, 2006 10:21 am Post subject: |
|
|
Try LISTDS "'"PDS1"'" |
|
Back to top |
|
 |
|
|