Application Express User's Guide > Oracle Application Express ... > HTMLDB_UTIL > GET_USERNAME Function
| GET_USERNAME Function |  Previous |  Next | 
This function returns the user name of a user account identified by a numeric ID.
Syntax
HTMLDB_UTIL.GET_USERNAME( p_userid); RETURN VARCHAR2;
Parameters
Table: GET_USERNAME Parameters describes the parameters available in GET_USERNAME function.
GET_USERNAME Parameters
| Parameter | Description | 
|---|---|
| 
 | Identifies the numeric ID of a user account in the workspace | 
Example
DECLARE VAL VARCHAR2; BEGIN VAL := HTMLDB_UTIL.GET_USERNAME(p_userid => 228922003); END;