Home > APEX_CUSTOM_AUTH > GET_USER Function
Previous |
Next |
This function returns the APEX_APPLICATION
.G_USER
global variable (VARCHAR2
).
Syntax
APEX_CUSTOM_AUTH.GET_USER RETURN VARCHAR2;
Examples
The following example retrieves the username associated with the current session.
DECLARE VAL VARCHAR2(256); BEGIN VAL := APEX_CUSTOM_AUTH.GET_USER; END;