Can TPX report use Boolean logic to report on users with Stage 1 timeout value greater than 30 minutes?
Need to remove the user override so the stage 1 timeout is picked up from what is defined in the system defaults.
Release : 5.4
Component : CA-TPX for z/OS
The TPX batch reporting only does the extracts and reports on the variables extracted.
JCL sample : This report is at the user level, showing all users and their Stage 1 timeout value if they have one.
//BATCHADM EXEC TPXEH,VNODE='*BATCH*'
//EXTFILE DD UNIT=SYSDA,SPACE=(CYL,(1,1)),DISP=(MOD)
//RPTFILE DD SYSOUT=*
C
C Extract users with Time out
C
EXTRACT GIVING(EXTFILE) USER AND NO SESSIONS (UIDXNAME(--------))
SET RTITLE1
' Users with Stage one timeout'
SET RTITLE2
' USERID STAGE ONE'
SET RTITLE3
' ======== ========== '
REPORT GIVING(RPTFILE) USING(EXTFILE)
((' &UIDXNAME' ' &UIDXTOU1' ))
//
In order to do a mass update to remove the Stage 1 timeout value at the user level, add the update statement right after the report giving statement.
See below:
UPDATE USING(EXTFILE) (UIDXTOU1( ))