hi everyone! i would just like to ask if anyone knows how to extract Paging Activity Report directly from tape using the ERBRMFPP program?
I currently have a code like this:
//*--------------------------------------------------------------------
//* RMF POSTPROCESSOR REPORT ( PAGING)
//*--------------------------------------------------------------------
//RMFPP EXEC PGM=ERBRMFPP
//MFPINPUT DD DISP=SHR,DSN=SYS1.DATA.D0930
//MFPMSGDS DD SYSOUT=*
//PPSUM001 DD DSN=TEST.RMFLIST.SYS01.D0930.PAG,
// DISP=(NEW,CATLG),UNIT=DISK,
// SPACE=(TRK,(45,15),RLSE),VOL=SER=XXXXXX
//PPSUM002 DD DSN=TEST.RMFLIST.SYS02.D0930.PAG,
// DISP=(NEW,CATLG),UNIT=DISK,
// SPACE=(TRK,(45,15),RLSE),VOL=SER=XXXXXX
//SYSOUT DD SYSOUT=*
//SYSIN DD *
REPORTS(PAGING)
SYSOUT(M)
/*
//
my test machine is currently unavailable so i cannot test it to know if this would work or not..
i have tried doing this using local data set however it is my first time to use in to get data from tape..
i hope some could help me.
Thanks in advance!
Extracting RMF Report from SMF data in tape
-
- Posts: 278
- Joined: Thu May 15, 2008 9:45 pm
- Skillset: MVS
MQ
ISPF - Referer: sister site
Re: Extracting RMF Report from SMF data in tape
If your tape is an accumulation file make sure to sort it in date/time sequence first and drop non-RMF records, if any.
Code: Select all
SORT FIELDS=(11,4,PD,A,7,4,BI,A)
INCLUDE COND=(6,1,BI,GE,X'46',AND,6,1,BI,LE,X'4F')
Regards,
Bill Dennis
Disclaimer: My comments on this forum are my own and do not represent the opinions or suggestions of any other person or business entity.
Bill Dennis
Disclaimer: My comments on this forum are my own and do not represent the opinions or suggestions of any other person or business entity.