Customize Groups
The Users application does not support Group hierarchies by default so it's not possible to make one group part of another. However, OutSystems was designed to support this by either using the OutSystems platform or an external system.
Using custom Group management in OutSystems
- Create a new Application.
- In the references window find the Group entity under (System).
- Model and create entities that reference the Group entity using foreign keys.
- Design screens to manage these groups.
- Use a database management tool to connect to the OutSystems database.
- Edit the records in the
OSSYS_Group
table and, for each group that has these customizations, set itsHasCustomManagement
attribute toTrue
. These groups will no longer be visible in the Users application.
Using external custom Group management
- Use a database management tool to connect to the OutSystems database.
- Edit the records in the
OSSYS_Group
table and set theHasCustomManagement
field toTrue
for the groups you want to manage yourself. These groups will no longer be visible in the Users application. - Model and create tables that reference the
OSSYS_Group
using the foreign keys. - Design your external systems to manage the tables you created.