Formatting the IEBGENER output of a CICS Logstream back to a readable format
search cancel

Formatting the IEBGENER output of a CICS Logstream back to a readable format

book

Article ID: 6422

calendar_today

Updated On: 10-16-2024

Products

SYSVIEW Performance Management

Issue/Introduction

After performing an offload/backup of my CICS Transaction Logstream file, using an IEBGENER as detailed in the Sysview

documentation, the output file is in an unreadable format when attempting to view it.    Do I need to run the output file through a 

conversion process?

Resolution

After running the IEBGENER to create a backup copy of your transaction logstream data, the output file will contain the

raw SMF data. To view the data in a readable format will require that you run it through a conversion process. This can

be accomplished by running it through an XPFRMAIN (Report Writer), Flashback report. The following sample JCL will

accomplish placing the data back into a readable format:

//REPORT EXEC PGM=XPFRMAIN,REGION=4M 

 

//STEPLIB DD DISP=SHR,DSN=SYSVIEW.CNM4RLOD 

//ERPTPRM DD DISP=SHR,DSN=SYSVIEW.CNM4RSAM 

//SYSUDUMP DD SYSOUT=* 

//SYSPRINT DD SYSOUT=* 

//* 

//TAPSMF DD DISP=SHR,DSN=YOUR.DATASET.FROM.THE GENER.JOB 

//SYSIN DD * 

FLASHBACK CICS 

END 

RUN 

/*