58.20 DELETE_USER_GROUP Procedure Signature 2
This procedure deletes a user group by providing the name of the group when you are using Oracle APEX Accounts authentication. To execute this procedure, the current user must have administrative privileges in the workspace.
Note:
This procedure operates on the native APEX user accounts repository and is only applicable to applications configured with Oracle APEX Accounts authentication.
Syntax
APEX_UTIL.DELETE_USER_GROUP (
p_group_name IN VARCHAR2 );
Parameter
Parameter | Description |
---|---|
p_group_name |
Name of group. |
Example
The following example removes the user group Managers
by providing the name of the user group.
BEGIN
APEX_UTIL.DELETE_USER_GROUP (
p_group_name => 'Managers');
END;
Parent topic: APEX_UTIL