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