Previous Topic: Logger Extract Utility TBELOGRX

Next Topic: Execution Parameters

JCL for the TBELOGRX Utility

Member BESLOGRX in the CTAPJCL library demonstrates how to run the TBELOGRX utility.

This example extracts all of the blocks of records from the CA Tape Encryption or CA Encryption Key Manager log data set specified in SYSUT1 into the extract log data set specified in SYSUT2. The job also generates a report on the log data set.

//JOBNAME JOB
//BESLOGRX EXEC PGM=TBELOGRX,
//         PARM=’ ’
//STEPLIB  DD DISP=SHR,DSN=@LIBPFX.CTAPLINK
//SYSPRINT DD SYSOUT=*
//SYSUT1   DD DISP=SHR,DSN=@CPYPFX.@CPYDSN
//         DCB=(RECFM=U,BLKSIZE=24576)
//SYSUT2   DD DISP=(,CATLG),
//         DSN=@EXTRDSN,
//         DCB=(RECFM=U,BLKSIZE=24576),
//         UNIT=@DUNIT,SPACE=(CYL,(100,50),RLSE),
//         VOL=SER=@DVOL
/*
@LIBPFX

Specifies the high level prefix to use CTAPLINK.

@CPYPFX

Specifies the high level qualifier of the log dataset to extract data from.

@CPYDSN

Specifies the low level level qualifier of the log dataset to extract data from.

@DUNIT

Specifies the DASD unit name.

@DVOL

Specifies the to the volume serial number.

PARM=’…’

(Optional) Specifies input options for TBELOGRX.

Note: For information on the supported options, see Execution Parameters.

STEPLIB

Indicates where TBELOGRX resides. (Optional if the CA Tape Encryption or CA Encryption Key Manager load library is in the link list.)

SYSPRINT

Specifies dataset name for the report generated by TBELOGRX.

SYSUT1

Specifies the dataset name for the input log or log stream.

SYSUT2

(Optional) Specifies the dataset name for the extract log dataset.