sp103_activity_permissions
This table is used to define what types of activity can be created by each type of user.
Â
Table Definition
Field | Type | Default | Nullable |
---|---|---|---|
profile | varchar2(10) | Â | Â |
activity_type | number(2) | Â | Â |
read | number(1) | 1 | Â |
write | number(1) | Â | Â |
Keys
primary key (profile, activity_type)Â
foreign key (profile) references sp084_user_profiles(profile)Â
foreign key (activity_type) references sp105_activity_types (activity_type)
Column Descriptions
Field | Description |
---|---|
profile | A string denoting the user role: |
activity_type | A number identifying the activity type |
read | This column should not be used (though the Gantt does currently retrieve it, hence the not null constraint). |
write | A value of 0 indicates that users of the type specified by PROFILE cannot create or modify activities of type ACTIVITY_TYPE; a value of 1 indicates that they can. |
Â
Â