Application Express User's Guide > Oracle Application Express ... > HTMLDB_UTIL > CREATE_USER_GROUP...
CREATE_USER_GROUP Procedure |
Previous |
Next |
This procedure changes the password of the currently authenticated user, assuming Application Express user accounts are in use. To execute this procedure, the current user must have administrative privilege in the workspace.
Syntax
HTMLDB_UTIL.CREATE_USER_GROUP( p_id NUMBER IN p_group_name VARCHAR2 IN p_security_group_id NUMBER IN p_group_desc VARCHAR2 IN);
Parameter
Table: CREATE_USER_GROUP Parameters describes the parameters available in the CREATE_USER_GROUP
procedure.
CREATE_USER_GROUP Parameters
Parameter | Description |
---|---|
|
Primary key of group |
|
Arbitrary name |
|
Workspace ID |
|
Descriptive text |
Example
BEGINHTMLDB_UTIL.CREATE_USER_GROUP ( p_id => 0 - trigger will assign PK, p_group_name => 'Managers', p_security_group_id => null, -- defaults to current workspace ID p_group_desc => 'text'); END;