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 35-49 GET_LAST_NAME Parameters
Parameter | Description |
---|---|
|
The user name in the user account record. |
Example
The following example shows how to use the function to return the LAST_NAME
for the user 'FRANK'.
DECLARE VAL VARCHAR2(255); BEGIN VAL := APEX_UTIL.GET_LAST_NAME(p_username => 'FRANK'); END;
See Also:
Parent topic: APEX_UTIL