53.104 REMOVE_USER Procedure Signature 1
This procedure removes the user account identified by the primary key. To execute this procedure, the current user must have administrative privilege in the workspace.
Syntax
APEX_UTIL.REMOVE_USER (
    p_user_id   IN NUMBER);Parameters
Table 53-76 REMOVE_USER Parameters
| Parameter | Description | 
|---|---|
| 
 | The numeric primary key of the user account record. | 
Example 1
The following examples show how to use the REMOVE_USER procedure to remove a user account by the primary key using the p_user_id parameter.
                  
BEGIN
    APEX_UTIL.REMOVE_USER(p_user_id=> 99997);
END;
Example 2
BEGIN
	wwv_flow_security.g_security_group_id := 20;
END;Parent topic: APEX_UTIL