Home > APEX_UTIL > SET_FIRST_NAME Pr...
This procedure updates a user account with a new FIRST_NAME
value. To execute this procedure, the current user must have administrative privileges in the workspace.
Syntax
APEX_UTIL.SET_FIRST_NAME( p_userid IN NUMBER, p_first_name IN VARCHAR2);
Parameters
Table: SET_FIRST_NAME Parameters describes the parameters available in the SET_FIRST_NAME
procedure.
SET_FIRST_NAME Parameters
Parameter | Description |
---|---|
|
The numeric ID of the user account |
|
|
Example
BEGIN APEX_UTIL.SET_FIRST_NAME( p_userid => '888883232', P_first_name => 'FRANK'); END;