Home > APEX_UTIL > EXPIRE_END_USER
Expires the login account for use as a workspace end user. Must be run by an authenticated workspace administrator in a page request context.
Syntax
APEX_UTIL.EXPIRE_END_USER_ACCOUNT ( p_user_name IN VARCHAR2 );
Parameters
Table: EXPIRE_WORKSPACE_ACCOUNT Parameters describes the parameters available in the EXPIRE_END_USER_ACCOUNT
procedure.
EXPIRE_END_USER_ACCOUNT Parameters
Parameter | Description |
---|---|
|
The user name of the user account |
Example
The following example shows how to use the EXPIRE_END_USER_ACCOUNT
procedure. Use this procedure to expire an Oracle Application Express account (workspace administrator, developer, or end user) in the current workspace. This action specifically expires the account with respect to its use by end users to authenticate to developed applications, but it may also expire the account with respect to its use by developers or administrators to log in to a workspace.
Note that this procedure must be run by a user having administration privileges in the current workspace.
BEGIN FOR c1 IN (select user_name from wwv_flow_users) LOOP APEX_UTIL.EXPIRE_END_USER_ACCOUNT(p_user_name => c1.user_name); htp.p('End User Account:'||c1.user_name||' is now expired.'); END LOOP; END;