Table s_group_partner_set |
Description: Associates a Group with a Partner Set. This may be an inclusive or exclusive association and may be read, write, delete |
PRIMARY KEY | ||
s_group_id_c
varchar (20) NOT NULL | identifies a system group | s_group |
s_group_unit_key_n
bigint default: 0 NOT NULL | Field that the group belongs to | s_group |
p_partner_set_id_c
varchar (40) NOT NULL | Identifier for the Partner Set | p_partner_set |
p_partner_set_unit_key_n
bigint default: 0 NOT NULL | Field that the Partner Set relates to | p_partner_set |
s_inclusive_or_exclusive_l
boolean NOT NULL | Is the association between the Group and Partner Set inclusive or exclusive | |
s_read_access_l
boolean | If the association is inclusive this will grant read access to the Partners, otherwise it will deny read access to the Partners | |
s_write_access_l
boolean | If the association is inclusive this will grant write access to the Partners, otherwise it will deny write access to the Partners | |
s_delete_access_l
boolean | If the association is inclusive this will grant delete access to the Partners, otherwise it will deny delete access to the Partners | |
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_partner_set_fk1: s_group_id_c;s_group_unit_key_n => s_group s_group_partner_set_fk2: p_partner_set_id_c;p_partner_set_unit_key_n => p_partner_set s_group_partner_set_fkcr: s_created_by_c => s_user s_group_partner_set_fkmd: s_modified_by_c => s_user |