TPX - How to report users with Stage 1 timeout greater than 30 minutes and remove the override at the user level.
search cancel

TPX - How to report users with Stage 1 timeout greater than 30 minutes and remove the override at the user level.

book

Article ID: 216351

calendar_today

Updated On:

Products

TPX - Session Management

Issue/Introduction

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.                     

Environment

Release : 5.4

Component : CA-TPX for z/OS

Resolution

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(         ))