by aeug » Fri Jun 17, 2011 3:32 pm
Robert,
Thank you for your reply again.
I've checked on related documentation available in my site. I suspect the data I would like to have should be located in "CICS Statistics datasets".
According the DOCPDB member in my site's MXG sourcelib, I learn the follow:
"CICS Statistics datasets are created in //WORK but
are not output to the PDB. You have choices:
- Write them to the "PDB" DDname as SMF is read,
unsorted. They will take no space in //WORK.
//SYSIN DD *
%LET CICSTAT=PDB;
_CICSTAT;
%INCLUDE SOURCLIB(BUILDPDB);
Macro _CICSTAT is a special purpose macro that
changes the &WCICddd and &PCICddd macro variable
values to the value of macro variable CICSTAT.
- Leave them written to //WORK, but use the exit
member EXPDBOUT to SORT them into your PDB:
In member EXPDBOUT, add:
%LET CICSTAT=PDB;
_CICSTAT;
_S110ST
Macros are defined in member VMAC110, for details."
From the about paragraph, I assume I should follow either one of the above methods to extract the type 110 SMF data. I've tried to follow the coding suggested but seems fail. Would you give me some suggestion?
Thank you very much!