59.96 LOCK_ACCOUNT Procedure

This procedure sets a user account status to locked. Must be run by an authenticated workspace administrator in the context of a page request.

Syntax

APEX_UTIL.LOCK_ACCOUNT (
     p_user_name IN VARCHAR2 ); 

Parameters

Parameter Description
p_user_name The user name of the user account.

Example

The following example locks all Oracle APEX accounts (workspace administrator, developer, or end user) in the current workspace.

BEGIN
    FOR c1 IN (SELECT user_name from apex_workspace_apex_users ) LOOP
        APEX_UTIL.LOCK_ACCOUNT(p_user_name => c1.user_name);
        htp.p('User Account:'||c1.user_name||' is now locked.');    
    END LOOP;
END;