Description:
List of groups to which users can belong
|
PRIMARY KEY |
s_group_id_c
varchar (20) NOT NULL |
identifies a system group
| |
s_unit_key_n
bigint default: 0 NOT NULL |
Field that the group belongs to
| |
|
s_group_name_c
varchar (100) |
Describes a group
| |
s_can_modify_l
boolean default: '1' |
This defines if the code can be modified
| |
s_date_created_d
date default: CURRENT_DATE |
The date the record was created.
| |
s_created_by_c
varchar (20) |
User ID of who created this record.
| s_user |
s_date_modified_d
date |
The date the record was modified.
| |
s_modified_by_c
varchar (20) |
User ID of who last modified this record.
| s_user |
s_modification_id_t
timestamp default: CURRENT_TIMESTAMP |
This identifies the current version of the record.
| |
FOREIGN KEY s_group_fkcr: s_created_by_c => s_user
s_group_fkmd: s_modified_by_c => s_user
|
REFERENCED BY s_user_group,
s_group_module_access_permission,
s_group_table_access_permission,
p_partner_action,
s_group_function,
s_job_group,
s_group_partner_set,
s_group_gift,
s_group_motivation,
s_group_partner_contact,
s_group_partner_reminder,
s_group_location,
s_group_partner_location,
s_group_data_label,
s_group_ledger,
s_group_cost_centre,
s_group_extract,
s_workflow_group,
s_group_file_info |
|