Adds a product group to a user group.
Input
Parameter | Type | Description |
|---|---|---|
p_productgroup | VARCHAR2 | The name of the product group. |
p_writable | VARCHAR2 | 'Y' if the user group has write access to the product group, 'N' otherwise. |
p_usergroup | VARCHAR2 | The name of the user group. |
Example
exec p_AccessControlAPI.addProductGroupToUserGroup('ProductGroup1', 'Y', 'UserGroup1'); |
Exceptions
Product group is invalid or does not currently exist. User group is invalid or does not currently exist.