|
create_list function |
|
Contained in package wwsec_api. Call this function to create a new group and return a group ID. function create_list (
) return number; |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_name |
A name for the new group. Note: p_name must be unique for the site in which it is created and unique among global groups. Datatype: in varchar2 |
|
p_ site_id |
The unique identifier for the site in which the group will be created. Note: This parameter is ignored in Oracle9iAS Portal 9.0.2 and later.
Datatype: in number |
|
p_description |
A description of the new group.
Datatype: in varchar2 |
|
p_hidden_group |
Indicates if the new group is hidden from users and groups (except those who are owners of the new group).
Datatype: in number |
|
p_hidden_members |
Indicates whether the members of the group are hidden from each other (but not from owners). Note: This parameter is ignored in Oracle9iAS Portal 9.0.2 and later.
Datatype: in number |
|
Returns: This function returns a group ID. Exceptions:
Example: l_groupid number; l_groupid := wwsec_api.create_list (
); |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |