Home > APEX_UTIL > GET_EMAIL Function
Previous |
Next |
This function returns the email address associated with the named user.
Syntax
APEX_UTIL.GET_EMAIL( p_username IN VARCHAR2); RETURN VARCHAR2;
Parameters
Table: GET_EMAIL Parameters describes the parameters available in GET_EMAIL
function.
Example
The following example shows how to use the GET_EMAIL
function to return the email address of the user 'FRANK'.
DECLARE VAL VARCHAR2(240); BEGIN VAL := APEX_UTIL.GET_EMAIL(p_username => 'FRANK'); END;