Application Express User's Guide > Oracle Application Express ... > HTMLDB_UTIL > SET_LAST_NAME Pro...
SET_LAST_NAME Procedure |
![]() Previous |
![]() Next |
This procedure updates a user account with a new LAST_NAME value. To execute this procedure, the current user must have administrative privileges in the workspace.
Syntax
HTMLDB_UTIL.SET_LAST_NAME(
p_userid IN NUMBER,
p_last_name IN VARCHAR2);
Parameters
Table: SET_LAST_NAME Parameters describes the parameters available in the SET_LAST_NAME procedure.
SET_LAST_NAME Parameters
| Parameter | Description |
|---|---|
|
|
The numeric ID of the user account |
|
|
|
Example
BEGIN
HTMLDB_UTIL.SET_LAST_NAME(
p_userid => '888883232',
p_last_name => 'SMITH');
END;