Home > Oracle Application Express ... > APEX_UTIL > GET_GROUP_ID Func...
GET_GROUP_ID Function |
![]() Previous |
![]() Next |
This function returns the numeric ID of a named group in the workspace.
Syntax
APEX_UTIL.GET_GROUP_ID( p_group_name); RETURN VARCHAR2;
Parameters
Table: GET_GROUP_ID Parameters describes the parameters available in GET_GROUP_ID
function.
Example
DECLARE VAL NUMBER; BEGIN VAL := APEX_UTIL.GET_GROUP_ID(p_group_name => 'Managers'); END;