Home > APEX_UTIL > GET_GROUP_ID ...
Previous |
Next |
This function returns the numeric ID of a named group in the workspace.
Syntax
APEX_UTIL.GET_GROUP_ID( p_group_name IN VARCHAR2) RETURN VARCHAR2;
Parameters
Table: GET_GROUP_ID Parameters describes the parameters available in GET_GROUP_ID
function.
Example
The following example shows how to use the GET_GROUP_ID
function to return the ID for the group named 'Managers'.
DECLARE VAL NUMBER; BEGIN VAL := APEX_UTIL.GET_GROUP_ID(p_group_name => 'Managers'); END;