How to add multiple values to the ACF2 GSO PSWD record PSWDPLST field without receiving ACF61011 error
search cancel

How to add multiple values to the ACF2 GSO PSWD record PSWDPLST field without receiving ACF61011 error

book

Article ID: 15197

calendar_today

Updated On:

Products

ACF2 ACF2 - DB2 Option ACF2 for zVM ACF2 - z/OS ACF2 - MISC

Issue/Introduction

How can more than one character be added to the PSWDPLST parameter?

Example of failure:

 ACF
set control(gso)
CONTROL
change pswd pswdplst(&!|*)
ACF61011 OPERAND TOO LARGE(LONG) FOR KEY - PSWDPLST  

 

 

Environment

Release: ACF2..001AO-16-ACF2
Component:

Resolution

The field PSWDPLST is a multi-valued field.
Each value is one byte long, and to add multiple values a delimiter needs to be specified between each value. The delimiter is a space.

Example:

 ACF
set control(gso)
CONTROL
change pswd pswdplst(& ! | *) ADD/REP/DEL
END

ADD will add the values to any existing values in the field. (default)
REP will replace whatever is currently in the field.
DEL will remove these values from the existing values in the field.