Table: dbo.Form_Processing_Run | |||
This table holds the data for each form processing run. | |||
Columns | |||
Name | Type | Constraints | Description |
form_processing_run_KEY | int (4) | NOT NULL | Primary Key |
client_KEY | int (4) | NOT NULL | The client this form processing run is related to. |
processing_date | datetime (8, 3) | NOT NULL | The date that this form processing run was performed. |
is_printed_form | bit (1) | NOT NULL | Whether or not this form was printed or electronically processed. |
was_client_copy_printed | bit (1) | NOT NULL | Whether or not a client copy was printed. |
Primary key | |||
Name | Columns | Description | |
PK_Form_Processing_Run | form_processing_run_KEY |
Foreign keys | |||
Name | Columns | Referenced table | Description |
FK_Form_Processing_Run__Client__client_KEY | client_KEY | Client (client_KEY) |