This table is used by tax processing code to drive 1099 and 1096 form printing. It determines which user is printing, what year they are printing for, and which 1099 type they are printing. |
print_1099_KEY | int (4) | NOT NULL | Primary key for this table. |
user_session_guid | uniqueidentifier (16) | NOT NULL | The user session for the person printing the forms. We note user session (as opposed to user) because the application allows a user to log in more than once. In turn, this permits a user to print from more than one session at the same time. |
w2_1099_type_KEY | int (4) | NOT NULL | The type of 1099 to process. |
beginning_date | smalldatetime (4) | NOT NULL | The beginning date for bank transactions to be filtered on. |
ending_date | smalldatetime (4) | NOT NULL | The ending date for bank transactions to be filtered on. |