To delete a user from an IBM i validation list, the parameters used with the W3@P2301 program would be:
Parameter | Type | Description |
|---|---|---|
Action | CHAR(3) | This will be 'DLT' if you want to delete a user profile. |
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. |
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('DLT' 'USERIST' 'WEBUSER')