This table is used by tax processing code to drive W2 and W3 form printing. It determines which user is printing and what year they are printing for. |
print_w2_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. |
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. |
w2_form_corrected_type_KEY | int (4) | NOT NULL | Foreign key to the W2_Form_Corrected_Type table that indicates what type of W-2 is being corrected, or will be none if processing regular W-2s. |