Home > APEX_UTIL > GET_LAST_NAME Fun...
This function returns the LAST_NAME
field stored in the named user account record.
Syntax
APEX_UTIL.GET_LAST_NAME( p_username IN VARCHAR2) RETURN VARCHAR2;
Parameters
Table: GET_LAST_NAME Parameters describes the parameters available in GET_LAST_NAME
function.
Example
DECLARE VAL VARCHAR2; BEGIN VAL := APEX_UTIL.GET_LAST_NAME(p_username => 'FRANK'); END;