220 likes | 692 Views
1098T Processing. 2013 Tax Year. Banner Forms. There are two setups forms TSA1098 – defines the core TTU tax information TSATAXR – defines which charges/credits are in which box Three Core Process Forms TSP1098 – Allows student information to be viewed on TSATAXN
E N D
1098T Processing 2013 Tax Year
Banner Forms There are two setups forms • TSA1098– defines the core TTU tax information • TSATAXR– defines which charges/credits are in which box Three Core Process Forms • TSP1098– Allows student information to be viewed on TSATAXN • TSRTRAF– Produces an output file that can be reviewed • TSR1098 • Generates the file for students to see on Raiderlink when run in Official/S mode • Generates the file to be sent to the IRS when run in Official/I mode • Generates the paper 1098Ts to specific printer when run with a popsel in ‘reprint’ mode
1098T Process Pre-work E Send out emails for no GEC 1098 Tax Information Form (TSA1098) A B C D Send out emails for no SSN F TAX Relief Act File Report Process (TSRTRAF) 1098 Tax Relief Act Notification Process – Official Mode (TSP1098) Query for 1098T but no transactions and mark excluded Tax Reporting Rules Form (TSATAXR) 1098 Tax Relief Act Notification Process – Test Mode (TSP1098) Send out emails for no Snail Mail G 1098Tax Relief Act Report Process (TSR1098) 1098 Tax Relief Act Notification Process (TSATAXN) Update mismatched +Null SSNs from ISIRS
D. Update students without boxed transactions UPDATE TTBTAXN SET TTBTAXN_STUD_NOTIF_STATUS = 'E' and TTBTAXN_IRS_REPORT_STATUS = 'E' and ttbtaxn_remove_notif_ind = 'Y' --select TTBTAXN_TAX_YEAR, TTBTAXN_ID, TTBTAXN_LAST_NAME, TTBTAXN_FIRST_NAME, TTBTAXN_AMOUNT_2 as Box2, TTBTAXN_AMOUNT_3 as Box4,TTBTAXN_AMOUNT_4 as Box5,TTBTAXN_AMOUNT_5 as Box6 from ttbtaxn where TTBTAXN_TAX_YEAR = 2013 and TTBTAXN_AMOUNT_2 = 0 and TTBTAXN_AMOUNT_4 =0 and TTBTAXN_AMOUNT_3 = 0 and TTBTAXN_AMOUNT_5 = 0; Note: ttbtaxn_remove_notif_ind = 'Y‘ is what is required so the 1098T is not shown on the portal
G1. TSR1098-Generate all 1098ts in Official Student mode.( Marks student record as ‘Sent’ )
‘Print Day’ Create the TEST IRS file Create the OFFICAL IRS file Print 1098ts for students missing GEC 1098Tax Relief Act Report Process run with GEC-less popsel
G2. TSR1098 – Generate all 1098ts in test mode in a File for IRS
G3. TSR1098 – – Generate all 1098ts in OFFICIAL mode in a File for IRS
G4. Identify students with no GEC and load in Popsel Select TTBTAXN_PIDM from TTBTAXN --select count(*) from TTBTAXN where TTBTAXN_TAX_YEAR = 2013 and TTBTAXN_IRS_REPORT_STATUS = 'R' and TTBTAXN_PIDM not in (select Gordprf_Pidm from Gordprf Where GORDPRF_DIRO_CODE = 'ELECCOMM' AND gordprf_disp_directory_ind = 'Y' )
Appendix: Query to pull Null SSNs from ISIRS • Look in Notes section of this slide