Oracle9iAS Portal Developer Kit

delete_group_from_list procedure

Contained in package wwsec_api.

Call this procedure to delete a group from the list of members of another group.

procedure delete_group_from_list

(

p_group_id in number,

p_member_group_id in number

);

Version: Oracle Portal 3.0.6.6.5 or later

Parameters:

p_group_id

The unique identifier of a group.

Datatype: in number

p_member_group_id

The unique identifier for the group whose membership is to be deleted.

Datatype: in number

Exceptions:

  • If either of the specified parameters does not exist, a VALUE_ERROR_EXCEPTION is raised.

  • If the user who initiates the calling routine has insufficient authority to execute the routine, an ACCESS_DENIED_EXCEPTION is raised.

Example:

wwsec_api.delete_group_from_list

(

p_group_id => wwsec_api.group_id ('GROUP1'),

p_member_group_id => wwsec_api.group_id ('SUBGROUP1')

);

Related topics

The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio