48.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 authentication. To execute this procedure, the current user must have administrative privileges in the workspace.

Syntax

APEX_UTIL.DELETE_USER_GROUP (
    p_group_name    IN VARCHAR2 );

Parameter

Table 48-18 DELETE_USER_GROUP Parameters

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;