13.10 GET_USER Function
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;Parent topic: APEX_CUSTOM_AUTH