58.55 GET_GROUP_NAME Function
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 VARCHAR2;Parameters
| Parameter | Description |
|---|---|
p_group_id |
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;Parent topic: APEX_UTIL