Customer asked the way not to timeout some specific users
search cancel

Customer asked the way not to timeout some specific users

book

Article ID: 137678

calendar_today

Updated On:

Products

Roscoe

Issue/Introduction

Trying to find a way to disable AUTOFF ON setting for some specific users.                                

Environment

Release: 6.0


Component: Roscoe

Resolution

When AUTOFF in SYSIN parameter has ON, you can not change this to     

OFF by normal command. To make it OFF, you need to code AUTEXIT.      

                                                                      

When AUTOFF has OFF, you can change it to ON by SET AUTOFF ON command.

Roscoe provides ONRPF for RPF to run during signon.                   

                                                                      

To use both AUTOFF ON and OFF by each user, set AUTOFF = OFF in sysin 

parameter, and define a RPF to code  SET AUTOFF ON by each user.      



This is RPF example ; When user is other than USER001, USER002, USER003,

                      issue SET AUTOFF ON.                              

                                                                        

SELECT                                                                  

  WHEN (S.KEY EQ 'UESR001')                                             

  WHEN (S.KEY EQ 'UESR002')                                             

  WHEN (S.KEY EQ 'UESR003')                                             

  WHEN NONE                                                             

    SET AUTOFF ON                                                       

ENDSEL