ACF2 IMS OPTS - Idle time limit column
search cancel

ACF2 IMS OPTS - Idle time limit column

book

Article ID: 224773

calendar_today

Updated On:

Products

ACF2 - z/OS ACF2 ACF2 - MISC

Issue/Introduction

Where is the time limit set that causes an IMS session to be cancelled if the IMS user of that session has been idle for some 'set' time ?

Resolution

The IMS OPTS record specifies IDLE(IDLE) - this means that the logonid field IDLE will contain a value (in minutes) that will be used for that user only.

If a user's logonid has IDLE(120) that would equate to an idle time of two hours.

Review the logonids and see what values are in use.

For example, you could run an ACFRPTSL report for all logonids with an idle value greater than 60 minutes:

//STEP1  EXEC  PGM=ACFRPTSL,REGION=4096K    
//SYSPRINT   DD  SYSOUT=*                   
//SYSIN   DD  *                             
 INPUT(ACF2)                                
 REPORT(SHORT)                              
 SFLDS(IDLE)                                
 IF(IDLE > 60)                      
//