We have a need to get a close count of the active RPF in our Roscoe's environment and since I was told all the Roscoe RPF start with '<<name>>' as the 1st statement in RPF, if there is a utility that would scan the libs where the RPF are usually stored and select all those members with the matching '<<name>> statement and save them in any TSO/ISPF PDS lib
Is there a way we could do that
Release : 6.0
Component : CA Roscoe Interactive Environment
This sample for LIBSERVE should get what you need. Make the update to the JCL to fit your environment.
//STEP1 EXEC PGM=LIBSERVE,PARM='ROSCOE.
//STEPLIB DD DSN=your. ROSCOE.RO60.RO60LIB,DISP=
//ROSLIB00 DD DSN=your.SUPPORT.ROSLIB00,
//ROSLIB01 DD DSN=your.SUPPORT.ROSLIB01,
//ROSLIB02 DD DSN=your.SUPPORT.ROSLIB02,
//ROSLIB03 DD DSN=your.SUPPORT.ROSLIB03,
//ROSLIB04 DD DSN=your.SUPPORT.ROSLIB04,
//ROSLIB05 DD DSN=your.SUPPORT.ROSLIB05,
//SNAP DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
SCAN ALL,TRUNC=NO /<</ ---> /<</ denotes anything that begins with a << will be reported. Put the string you require here.
The LIBSERVE Utility is documented in the Roscoe Programs and Utilities Guide Chapter 4