If change accumulation is enabled for a VSAM sphere, CICS® VR is notified of DFSMShsm logical backups created for the VSAM sphere. You can then view the backup times of the DFSMShsm logical backups in both local and GMT format through the CICS VR panel interface.
However, if change accumulation is not enabled for a VSAM sphere, you can only view the DFSMShsm logical backup times in local format through the CICS VR panel interface. If you want to view the DFSMShsm logical backup times in GMT format, and do not want to activate change accumulation for the sphere, you can perform the following tasks for each sphere:
//*-------------------------------------------------------------------*/
//* ISSUE DFSMSHSM HBACKDS (BACKUP DATA SET) */
//*-------------------------------------------------------------------*/
//STEP1 EXEC PGM=IKJEFT01
//SYSPRINT DD SYSOUT=*
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
HBACKDS 'CICS33N.HSM' WAIT
HLIST DSNAME ('CICS33N.HSM') BCDS SYSOUT(H)
/*
//*-------------------------------------------------------------------*/
//* ISSUE DFSMSHSM HSEND FIXCDS TO ENABLE CICSVR NOTIFICATION */
//*-------------------------------------------------------------------*/
//STEP2 EXEC PGM=IKJEFT01
//SYSPRINT DD SYSOUT=*
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
HSEND FIXCDS B CICS33N.HSM PATCH(X'2E' BITS(.....1..))
HLIST DSNAME ('CICS33N.HSM') BCDS SYSOUT(H)
/*