To add a new user to an IBM i validation list, you can call the W3@P2301 program with the following parameters:
Parameter | Type | Description |
|---|---|---|
Action | CHAR(3) | This will be 'ADD' if you are adding a new user. |
Validation list name | CHAR(10) | This is the IBM i validation list name. |
Web User profile | CHAR(256) | This is the IBM i user profile name. |
Web user password | CHAR(256) | This is the password associated with the IBM i user profile. |
Convert user profile name and password to uppercase | CHAR(1) | This is an optional parameter. The default is "Y" which converts both user profile name and password to upper case. A value of "N" will not convert to upper case. |
For example:
CALL W3@P2301 PARM('ADD' 'USERIST' 'QPGMR' 'PASSWD')