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
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.