IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

REXX Coding Problem


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
pbgunasekar

New User


Joined: 28 May 2005
Posts: 26
Location: Chennai

PostPosted: Tue Mar 21, 2006 11:56 am
Reply with quote

hi all,
i wrote a program to get all members from the PDS mentiones in the PS. but it giving nothing.
please correct the errors.

Code:

/* REXX */                                         
"ALLOC DA('PS.contains.pds') F(MAD) SHR REUSE"     
"EXECIO * DISKR MAD(STEM GUN. FINIS"               
DO I= 1 TO GUN.0                                   
PDS=GUN.I                                           
     PDS= "'"STRIP(PDS,"B","'")"'"                 
     SAY PDS                                       
     A=0                                           
     X = OUTTRAP("LIBMEM.")                         
         ADDRESS TSO "LISTDS "PDS" M"               
     X = OUTTRAP("OFF")                             
     DO I = 7 TO LIBMEM.0                           
         A = A + 1                                 
         ARR.A = LIBMEM.I                           
         SAY ARR.A                                 
     END                                           
end.


PS.contains.PDS having the values
'pds.aaa.bbb'
'pds.bbbb.ccc'

Please correct the errors.
Back to top
View user's profile Send private message
Paddy

New User


Joined: 12 Sep 2005
Posts: 46
Location: Paris France

PostPosted: Tue Mar 21, 2006 3:21 pm
Reply with quote

Hi friend,


Here the modified code that works at my place, try the and said me this that you some think.

Code:

/* REXX */
"ALLOC DA('"Your PS name"') F(MAD) SHR REUSE"
"EXECIO * DISKR MAD(STEM GUN. FINIS"
DO I= 1 TO GUN.0
         PDS = GUN.I
         PDS = STRIP(PDS,B,)
         SAY PDS
         A=0
         X = OUTTRAP("LIBMEM.")
         ADDRESS TSO "LISTDS '"PDS"' M"
         X = OUTTRAP("OFF")
    DO I = 7 TO LIBMEM.0
              A = A + 1
              ARR.A = LIBMEM.I
              SAY ARR.A
    END
END


I hope to have to help you

Regards.

Paddy icon_razz.gif
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Tue Mar 21, 2006 6:40 pm
Reply with quote

pbgunasekar, a couple of points:

1. Do NOT post code and ask the forum members to fix it for you.

2. Did you not notice that you have a loop within a loop using the same loop control (DO I= 1 TO GUN.0 and DO I = 7 TO LIBMEM.0). Use a different loop control, i.e. DO J = 7 TO LIBMEM.0.

3. You did not mention what the attributes of your input dataset 'PS.contains.pds' are, but unless it is defined as RECFM=VB, or, if there are imbedded blanks after the list of PDS names, then you need to
strip the trailing blanks off. Is your LISTDS command ending with RC(12)?
Back to top
View user's profile Send private message
pbgunasekar

New User


Joined: 28 May 2005
Posts: 26
Location: Chennai

PostPosted: Wed Mar 22, 2006 10:05 am
Reply with quote

ok,
hereafter i will take on this.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
No new posts run rexx code with jcl CLIST & REXX 15
No new posts Execute secondary panel of sdsf with ... CLIST & REXX 1
Search our Forums:

Back to Top