Home > APEX_UTIL > GET_GROUP_NAME Fu...
This function returns the name of a group identified by a numeric ID.
Syntax
APEX_UTIL.GET_GROUP_NAME( p_group_id) 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
DECLARE VAL VARCHAR2; BEGIN VAL := APEX_UTIL.GET_GROUP_NAME(p_group_id => 8922003); END;