Oracle9iAS Portal Developer Kit

group_info function

Contained in package wwsec_api.

Call this function to return information about a specified group.

function group_info

(

p_group_id in number

)

return wwsec_group$%rowtype;

Version: Oracle Portal 3.0.6.6.5 or later

Parameter:

p_group_id

The unique identifier of a group.

Datatype: in number

Returns:

This function returns a row of group information including: SUBSCRIBER_ID, ID, NAME, DESCRIPTION, HIDDEN_GROUP, DELETABLE, GUID and DN columns.

Exceptions:

  • If p_group_id does not exist, a GROUP_NOT_FOUND_EXCEPTION is raised.

  • If a problem occurs for which an exception has not been defined, an UNEXPECTED_EXCEPTION is raised.

Example:

l_group_rec wwsec_group$%rowtype;

l_group_rec := wwsec_api.group_info

(

p_group_id => 33

);

Related topics

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