ACFRPTSL Report options to report Expiring passwords without an explicit date
search cancel

ACFRPTSL Report options to report Expiring passwords without an explicit date

book

Article ID: 245770

calendar_today

Updated On:

Products

ACF2 - z/OS

Issue/Introduction

Is there an ACF2 report option where the specific number of days until a password is to expire can be specified as opposed to calculating a date that is the equivalent of that date? How can a report be run to provide a list of ID's where the passwords will have to be changed in 90 days?

 

Environment

Release : 16.0

Component :

Resolution

The ACFRPTSL report does support the value D'CURRDATE' as part of the IF(field-name-operators) which can specify the actual date, and optionally plus or minus days. For example, if MAXDAYS is 90, to report on logonids that will expire in the next 5 days:

IF(PSWD-TOD GE D'CURRDATE-90' AND PSWD-TOD LE D'CURRDATE-85')

 TITLE(LIST LIDS WITH TSOCMDS)    
 INPUT(ACF2)                      
 REPORT(SHORT)                    
 IF(PSWD-TOD GE D'CURRDATE-90' AND PSWD-TOD LE D'CURRDATE-85')