GET_GROUP_ID Function

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.

GET_GROUP_ID Parameters

Parameter Description

p_group_name

Identifies the user name in the account


Example

DECLARE VAL NUMBER;
BEGIN
  VAL := APEX_UTIL.GET_GROUP_ID(p_group_name => 'Managers');
END;