| Table: dbo.Client_1099_Tax_Form_Information | |||
| This table stores per-client selections regarding point-of-contact, signator, and some miscellaneous selections for the 1099 suite of forms. | |||
| Columns | |||
| Name | Type | Constraints | Description |
| client_KEY | int (4) | NOT NULL | Primary and foreign key. This data has only a single selection per client. |
| signature_1099__contact_KEY | int (4) | A NULL value means no selection. Otherwise the contact_KEY of the signator. | |
| contact_1099__contact_KEY | int (4) | A NULL value means no selection. Otherwise the contact_KEY of the tax inquiries contact person for taxing authorities. | |
| send_1099_to_ess | bit (1) | NOT NULL | Are the 1099s sent to Employee Self Service? 1 = yes; 0 = no. |
| send_1099_to_wfh | bit (1) | NOT NULL | Are the 1099s sent to WorkforceHub? 1 = yes; 0 = no. |
| suppress_date | bit (1) | NOT NULL | Is the date suppressed on paper 1099s? 1 = yes; 0 = no. |
| Primary key | |||
| Name | Columns | Description | |
| PK_Client_1099_Tax_Form_Information$client_KEY | client_KEY | ||
| Foreign keys | |||
| Name | Columns | Referenced table | Description |
| FK_Client_1099_Tax_Form_Information__Client__client_KEY | client_KEY | Client (client_KEY) | FOREIGN KEY constraint to Client. |
| FK_Client_1099_Tax_Form_Information__Contact__signature_1099__contact_KEY | signature_1099__contact_KEY | Contact (contact_KEY) | FOREIGN KEY constraint of signature 1099 contact_KEY for the Client_1099_Tax_Form_Information table. |
| FK_Client_1099_Tax_Form_Information__Contact__contact_1099__contact_KEY | contact_1099__contact_KEY | Contact (contact_KEY) | FOREIGN KEY constraint of contact_KEY for the Client_1099_Tax_Form_Information table. |