Application Express User's Guide > Oracle Application Express ... > HTMLDB_UTIL > SET_EMAIL Procedure
SET_EMAIL Procedure |
![]() Previous |
![]() Next |
This procedure updates a user account with a new email address. To execute this procedure, the current user must have administrative privileges in the workspace.
Syntax
HTMLDB_UTIL.SET_EMAIL(
p_userid IN NUMBER,
p_email IN VARCHAR2);
Parameters
Table: SET_EMAIL Parameters describes the parameters available in the SET_EMAIL procedure.
SET_EMAIL Parameters
| Parameter | Description |
|---|---|
|
|
The numeric ID of the user account |
|
|
The email address to be saved in user account |
Example
BEGIN
HTMLDB_UTIL.SET_EMAIL(
p_userid => '888883232',
P_email => 'scott.scott@oracle.com');
END;