Home > APEX_UTIL > GET_GROUP_NAM...
Previous |
Next |
This function returns the name of a group identified by a numeric ID.
Syntax
APEX_UTIL.GET_GROUP_NAME( p_group_id IN NUMBER) RETURN NUMBER;
Parameters
Table: GET_GROUP_NAME Parameters describes the parameters available in GET_GROUP_NAME
function.
GET_GROUP_NAME Parameters
Parameter | Description |
---|---|
|
Identifies a numeric ID of a group in the workspace |
Example
The following example shows how to use the GET_GROUP_NAME
function to return the name of the group with the ID 8922003.
DECLARE VAL VARCHAR2(255); BEGIN VAL := APEX_UTIL.GET_GROUP_NAME(p_group_id => 8922003); END;