Quantcast
Channel: IBM Mainframe Computers Forums
Viewing all articles
Browse latest Browse all 8500

CLIST & REXX :: RE: find particular member name in PDS using REXX

$
0
0
Author: sergeyken
Posted: Thu Dec 29, 2016 11:59 pm (GMT 5.5)

If REXXTOOLS by Compuware are available in your environment then you could use some functions from there, like LISTM:

Code:
Parse Value LISTM("'USER01.LIBRARY'") With RC memcnt mlist
If RC = 0 Then
Do i=1 To memcnt
   Parse Var mlist mem mlist
   Say mem
End
Else Do
   Parse Var memcnt reason dsn message
   Say 'LISTM error:' message
End

_________________
Tyrannosaurus-REXX


Viewing all articles
Browse latest Browse all 8500

Trending Articles