Application Express User's Guide > Oracle Application Express ... > HTMLDB_CUSTOM_AUTH > GET_USERNAME Function
GET_USERNAME Function |
Previous |
Next |
This function returns user name registered with the current Oracle Application Express session in the internal sessions table. This user name is usually the same as the authenticated user running the current page.
Syntax
HTMLDB_CUSTOM_AUTH.GET_USERNAME; RETURN VARCHAR2;
Example
DECLARE VAL VARCHAR2(256); BEGIN VAL := HTMLDB_CUSTOM_AUTH.GET_USERNAME; END;