C:\Users\skylight120\Dropbox\WolffPack\intranet_access\Releases\2205-01\old\dc211001.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
==========================================
= WF23FEDD
==========================================
HWF23FEDDWF-AD-C-SSN Header 0000
HWF23FEDDWF-FE-A-COL1 Header A 0060APPLICATION COLLEGE NN The student may request that financial aid application information be sent to up to six colleges. The institution's college code contained in the federal application record received from the Central Processing System (CPS) must be used in submitting corrections back to the CPS.
HWF23FEDDWF-FE-A-COL10 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL2 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL3 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL4 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL5 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL6 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL7 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL8 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL9 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-HSG1 Header A 0010APPLICATION COLLEGE HOUSING NXH The student's expected housing status is collectedfor each college listed on the federal financial aid application.
VWF23FEDDWF-FE-A-HSG1 1 0000 Campus housing The student's expected housing status is collectedfor each college listed on the federal financial aid application. The institution's college code contained in the federal application record received from the Central Processing System (CPS) must be used in submitting corrections back to the CPS.
VWF23FEDDWF-FE-A-HSG1 2 0000 With parents The student's expected housing status is collectedfor each college listed on the federal financial aid application. The institution's college code contained in the federal application record received from the Central Processing System (CPS) must be used in submitting corrections back to the CPS.
VWF23FEDDWF-FE-A-HSG1 3 0000 Off-campus The student's expected housing status is collectedfor each college listed on the federal financial aid application. The institution's college code contained in the federal application record received from the Central Processing System (CPS) must be used in submitting corrections back to the CPS.
HWF23FEDDWF-FE-A-HSG10 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG2 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG3 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG4 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG5 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG6 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG7 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG8 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG9 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-PREP-EIN Header A 0090APPLICATION PREPARER EIN NN Reference: WF-FE-A-PREP-SGN
HWF23FEDDWF-FE-A-PREP-SGN Header A 0010APPLICATION PREPARER SIGNATURE NXH If the federal financial aid application is completed by someone other than the student, the preparer's social security number or employer identification number and the preparer's signaturemust be recorded on the application.
VWF23FEDDWF-FE-A-PREP-SGN 1 0000 Signature present If the federal financial aid application is completed by someone other than the student, the preparer's social security number or employer identification number and the preparer's signaturemust be recorded on the application.
HWF23FEDDWF-FE-A-PREP-SSN Header A 0090APPLICATION PREPARER SSN NN Reference: WF-FE-A-PREP-SGN
HWF23FEDDWF-FE-A-SGN Header A 0010APPLICATION SIGNATURE NXH The federal financial aid application must be signed by the student and, if the student is dependent, by the parent. It must be signed within the appropriate dates for the financial aidyear. This field may not be corrected to blank.
VWF23FEDDWF-FE-A-SGN A 0000 Applicant only The federal financial aid application must be signed by the student and, if the student is dependent, by the parent. It must be signed within the appropriate dates for the financial aidyear. This field may not be corrected to blank.
VWF23FEDDWF-FE-A-SGN B 0000 Applicant and parent The federal financial aid application must be signed by the student and, if the student is dependent, by the parent. It must be signed within the appropriate dates for the financial aidyear. This field may not be corrected to blank.
VWF23FEDDWF-FE-A-SGN P 0000 Parent only The federal financial aid application must be signed by the student and, if the student is dependent, by the parent. It must be signed within the appropriate dates for the financial aidyear. This field may not be corrected to blank.
HWF23FEDDWF-FE-A-SGN-DATE Header A 0080APPLICATION SIGNATURE DATE NN Reference: WF-FE-A-SGN
HWF23FEDDWF-FE-A-SSREG Header A 0010SELECTIVE SERVICE REGISTRATION NXH If the student is male, and of the appropriate age, selective service registration is required inorder to maintain eligibility for federal aid eligibility. The student may authorize the schoolto initiate Selective Service registration on his behalf.
VWF23FEDDWF-FE-A-SSREG 1 0000 Registration request If the student is male, and of the appropriate age, selective service registration is required inorder to maintain eligibility for federal aid eligibility. The student may authorize the schoolto initiate Selective Service registration on his behalf. This field may not be corrected to blank.
HWF23FEDDWF-FE-AD-CITY Header A 0160STUDENT ADDRESS CITY NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-AD-PHONE Header A 0100STUDENT TELEPHONE NUMBER NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-AD-STATE Header A 0020STUDENT ADDRESS STATE NXH WWSTDNTDWW-ST-AD1-STATE Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-AD-STRT Header A 0350STUDENT ADDRESS STREET LINE NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-AD-ZIP Header A 0050STUDENT ADDRESS ZIP CODE NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-C-ADDR-CHG Header A 0010ADDRESS CHANGE FLAG NXH The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information.
VWF23FEDDWF-FE-C-ADDR-CHG 1 0000 Student mailing addr The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information. This field may not be corrected to blank. submitting corrections back to the CPS.
VWF23FEDDWF-FE-C-ADDR-CHG 2 0000 Student e-mail addr The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information. This field may not be corrected to blank. submitting corrections back to the CPS.
VWF23FEDDWF-FE-C-ADDR-CHG 3 0000 Parent e-mail addr The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information. This field may not be corrected to blank. submitting corrections back to the CPS.
VWF23FEDDWF-FE-C-ADDR-CHG 4 0000 More than one change The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-ASSUMPTION Header 0000CPS ASSUMPTIONS HN If there are errors or questionable information onthe federal financial aid application, the CentralProcessing System (CPS) may make assumptions aboutthe items in question.
HWF23FEDDWF-FE-C-ATHRSH-PAR Header A 0010PARENT ASSETS EXCEED THRESHOLD NXH WF23FEDDWF-FE-C-ATHRSH-STU The CPS may determine that the parents' assets exceed the threshold for eligibility for a Simple Needs Test.
HWF23FEDDWF-FE-C-ATHRSH-STU Header A 0010STUDENT ASSETS EXCEED THRSHOLD NXH The CPS may determine that the student's assets exceed the threshold for eligibility for a Simple Needs Test.
VWF23FEDDWF-FE-C-ATHRSH-STU N 0000 Do not exceed The CPS may determine that the student's assets exceed the threshold for eligibility for a Simple Needs Test. This field may not be corrected to blank. submitting corrections back to the CPS.
VWF23FEDDWF-FE-C-ATHRSH-STU Y 0000 Exceed threshold The CPS may determine that the student's assets exceed the threshold for eligibility for a Simple Needs Test. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-AUTO-ZERO Header A 0010AUTOMATIC ZERO EFC NXH If an independent student's income or a dependent student's parents' income falls below the threshold, the effective family contribution (EFC)automatically will be set to $0.
VWF23FEDDWF-FE-C-AUTO-ZERO Y 0000 Automatic zero case If an independent student's income or a dependent student's parents' income falls below the threshold, the effective family contribution (EFC)automatically will be set to $0. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-BATCH-YR Header A 0010BATCH YEAR NXH The batch year is the last digit of the fiscal year covered by the federal application. It is inserted into each ISIR record transmitted from the Central Processing System (CPS).
HWF23FEDDWF-FE-C-CFLAG Header A 0010SAR C FLAG NXH In some cases, a "C" is printed next to the EFC on Part 1 of the Student Aid Report (SAR) or electronic ISIR to indicate a problem with the student's application.
VWF23FEDDWF-FE-C-CFLAG Y 0000 C flag set In some cases, a "C" is printed next to the EFC on Part 1 of the Student Aid Report (SAR) or electronic ISIR to indicate a problem with the student's application. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-CFLAG-CHG Header A 0010SAR C CHANGE FLAG NXH The change flag indicates whether the current ISIRcontains a change in the SAR C flag.
VWF23FEDDWF-FE-C-CFLAG-CHG Y 0000 SAR C flag changed The change flag indicates whether the current ISIRcontains a change in the SAR C flag. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-COM01 Header A 0030COMMENT CODE NXH Error conditions, information, and further instructions are conveyed to the student through comment codes on a Student Aid Report (SAR) or electronic ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
HWF23FEDDWF-FE-C-COM02 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM03 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM04 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM05 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM06 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM07 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM08 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM09 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM10 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM11 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM12 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM13 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM14 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM15 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM16 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM17 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM18 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM19 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM20 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COMPUTE Header A 0030CPS COMPUTE BATCH NUMBER NN Records are submitted to the Central Processing System (CPS) Compute process in batches.
HWF23FEDDWF-FE-C-COR-FLAG Header A 1950CORRECTION FLAGS NXH The ISIR record contains an array of flags indicating which items on the federal financial aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR.
VWF23FEDDWF-FE-C-COR-FLAG 0 0000 No correction The ISIR record contains an array of flags indicating which items on the federal financial aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
VWF23FEDDWF-FE-C-COR-FLAG 1 0000 Field corrected The ISIR record contains an array of flags indicating which items on the federal financial aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
VWF23FEDDWF-FE-C-COR-FLAG 2 0000 Corrected prev tran The ISIR record contains an array of flags indicating which items on the federal financial aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
HWF23FEDDWF-FE-C-COR-INIT Header A 0010CORRECTION SOURCE NXH If the ISIR results from a correction, it containsan indication of the initiator of the correction.
VWF23FEDDWF-FE-C-COR-INIT A 0000 Applicant If the ISIR results from a correction, it containsan indication of the initiator of the correction. aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
VWF23FEDDWF-FE-C-COR-INIT D 0000 CPS If the ISIR results from a correction, it containsan indication of the initiator of the correction. aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
VWF23FEDDWF-FE-C-COR-INIT S 0000 School If the ISIR results from a correction, it containsan indication of the initiator of the correction. aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
HWF23FEDDWF-FE-C-COR-TRAN Header A 0020CORRECTION TRANSACTION NN If an Institutional Student Information Report (ISIR) is produced in response to a submitted correction, the transaction number of the record corrected is reported to the institution.
HWF23FEDDWF-FE-C-DEP Header A 0010DEPENDENCY STATUS NXH As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
VWF23FEDDWF-FE-C-DEP D 0000 Dependent As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
VWF23FEDDWF-FE-C-DEP I 0000 Independent As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
VWF23FEDDWF-FE-C-DEP X 0000 Dependent/rejected As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
VWF23FEDDWF-FE-C-DEP Y 0000 Independent/rejected As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
HWF23FEDDWF-FE-C-EFC-CHG Header A 0010EFC CHANGE FLAG NXH If the ISIR is not the first sent containing a valid EFC, then the direction of change of the EFC(increase or decrease) is indicated in the ISIR record.
VWF23FEDDWF-FE-C-EFC-CHG 1 0000 EFC increase If the ISIR is not the first sent containing a valid EFC, then the direction of change of the EFC(increase or decrease) is indicated in the ISIR record.
VWF23FEDDWF-FE-C-EFC-CHG 2 0000 EFC decrease If the ISIR is not the first sent containing a valid EFC, then the direction of change of the EFC(increase or decrease) is indicated in the ISIR record.
HWF23FEDDWF-FE-C-ELEC-INST Header A 0010ELEC INSTITUTION INDICATOR NXH 0 9 The electronic institution indicator identifies which of the application colleges is the recipientof the electronic transaction.
HWF23FEDDWF-FE-C-ETI Header A 0010ELEC TRANSACTION INDICATOR NXH The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 0 0000 School gen,daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 1 0000 Other gen, daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 2 0000 School gen,requested The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 3 0000 Other gen, requested The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 4 0000 Sch gen pushed,daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 5 0000 Oth gen pushed,daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 6 0000 Sch gen pushed,req'd The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 7 0000 Oth gen pushed,req'd The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 8 0000 Oth gen sysgen,daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 9 0000 Oth gen sysgen,req'd The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI A 0000 ACG data update only The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
HWF23FEDDWF-FE-C-ETI-DEST Header A 0070ETI DESTINATION ID NN The ETI Destination ID of the institution receiving the ISIR is included in the ISIR record.
HWF23FEDDWF-FE-C-FC1 Header A 0060PRIMARY FC NN As a part of the application editing and processing performed by the Central Processing System (CPS), a primary family contribution (FC) is computed. In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-FC1-AAI Header A 0080ADJUSTED AVAILABLE INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-AI Header A 0080AVAILABLE INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-APA Header A 0090ASSET PROTECTION ALLOWANCE NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-ATI Header A 0070ALLOWANCES AGAINST INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-CAI Header A 0070CONTRIB FROM AVAILABLE INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-DNW Header A 0090DISCRETIONARY NET WORTH NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-EA Header A 0070EMPLOYMENT ALLOWANCE NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-FISAP Header A 0080PRIMARY FC FISAP INCOME NN As a part of the application editing and processing performed by the Central Processing System (CPS), a total income for use in categorizing the student on the year-end FISAP report is computed. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
HWF23FEDDWF-FE-C-FC1-FRMULA Header A 0010PRIMARY FC FORMULA NXH The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility.
VWF23FEDDWF-FE-C-FC1-FRMULA 1 0000 Full/Dependent The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 2 0000 Full/Indep wo deps The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 3 0000 Full/Indep with deps The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 4 0000 Simp/Dependent The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 5 0000 Simp/Indep wo deps The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 6 0000 Simp/Indep with deps The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
HWF23FEDDWF-FE-C-FC1-IPA Header A 0070INCOME PROTECTION ALLOWANCE NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M01 Header A 00601-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M02 Header A 00602-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M03 Header A 00603-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M04 Header A 00604-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M05 Header A 00605-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M06 Header A 00606-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M07 Header A 00607-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M08 Header A 00608-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M10 Header A 006010-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M11 Header A 006011-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M12 Header A 006012-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-NW Header A 0090NET WORTH NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-PC Header A 0070PARENT CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-PCA Header A 0070CONTRIBUTION FROM ASSETS NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SATI Header A 0070STUDENT ALWNCES AGAINST INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SCA Header A 0070STUDENT ASSET CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SDNW Header A 0090STUDENT DISCRETIONARY NET WRTH NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SIC Header A 0070STUDENT INCOME CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SIGREJ Header A 0060PRIMARY FC (SIGNATURE REJECT) NN Include: WF-FE-C-FC1 Normally, when there are reject conditions (makingthe ISIR "not official"), no family contribution is computed. However, when all data is provided EXCEPT valid signatures, a family contribution is computed and reported on the ISIR.
HWF23FEDDWF-FE-C-FC1-STI Header A 0080STUDENT TOTAL INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-STX Header A 0070STATE TAX ALLOWANCE NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-TI Header A 0080TOTAL INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-TPC Header A 0070TOTAL PARENT CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-TSC Header A 0070TOTAL STUDENT CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC2 Header A 0060SECONDARY FC NN As a part of the application editing and processing performed by the Central Processing System (CPS), a secondary family contribution (FC)may be computed. In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-GRAD Header A 0010GRADUATE STATUS NXH As a part of the editing and processing of the federal financial aid application, the Central Processing System (CPS) determines whether the student is a graduate student.
VWF23FEDDWF-FE-C-GRAD Y 0000 Graduate As a part of the editing and processing of the federal financial aid application, the Central Processing System (CPS) determines whether the student is a graduate student. In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-HIL-FLAG Header A 1950HIGHLIGHT FLAGS NXH The ISIR record contains an array of flags indicating which items on the federal financial aid application have been assigned assumed values by the Central Processing System (CPS).
VWF23FEDDWF-FE-C-HIL-FLAG 0 0000 No highlight The ISIR record contains an array of flags indicating which items on the federal financial aid application have been assigned assumed values by the Central Processing System (CPS). In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-HIL-FLAG 1 0000 Field highlight The ISIR record contains an array of flags indicating which items on the federal financial aid application have been assigned assumed values by the Central Processing System (CPS). In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-IRS-AGI-PAR Header A 0010PARENT IRS AGI DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent AGI value on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA onthe web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-AGI-STU Header A 0010STUDENT IRS AGI DATA FLAG NXH The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification.
VWF23FEDDWF-FE-C-IRS-AGI-STU 0 0000 IRS data not used The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-AGI-STU 1 0000 Data transfer/no chg The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-AGI-STU 2 0000 Data transfer/chg'd The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-AGI-STU 3 0000 IRSReq 02-04,07 chgd The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-AGI-STU 4 0000 IRSReq 02-04,07 prev The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-IRS-DSP-PAR Header A 0010PARENT IRS DISPLAY FLAG X Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not.
VWF23FEDDWF-FE-C-IRS-DSP-PAR A 0000 Spec circ/no par ?s Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR B 0000 IRS DRT displayed Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR C 0000 Tax ret not complete Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR D 0000 Mar dt >= 01/2021 Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR E 0000 SSN begins with 666 Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR F 0000 All zeroes in SSN Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR G 0000 No valid SSN Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR J 0000 PRican/foreign ret Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR K 0000 Marr, filed sep Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR L 0000 Marr, head of house Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR M 0000 Mar/tax ret stat dif Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR N 0000 Unmarr, live togethr Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-IRS-DSP-STU Header A 0010STUDENT IRS DISPLAY FLAG X Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not.
VWF23FEDDWF-FE-C-IRS-DSP-STU A 0000 Stu,no inc/assets Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU B 0000 IRS DRT displayed Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU C 0000 Tax ret not complete Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU D 0000 Mar dt >= 01/2021 Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU E 0000 SSN begins with 666 Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU J 0000 PRican/foreign ret Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU K 0000 Married, filed sep Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU L 0000 Mar, head of house Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU M 0000 Mar/tax ret stat dif Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-IRS-DSTP-PARHeader A 0010PAR IRS UNTXD PEN/DIST FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU
HWF23FEDDWF-FE-C-IRS-EDCR-PARHeader A 0010PAR IRS ED CREDITS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent Education Credits value on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate finacial data when completing a FAFSA on the Web. If the value is 1 (retrieved from the tax return and not subsequently changed),the Education Credits field does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-EDCR-STUHeader A 0010STU IRS ED CREDITS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student Education Credits value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is l (retrieved from the tax return and not subsequently changed),the Education Credits field does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-FIT-PAR Header A 0010PARENT IRS FIT DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent FIT value (federal incometax paid) on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate financial data whencompleting a FAFSA on the web. If the value is 1 (FIT was retrieved from the tax return and not subsequently changed), the FIT does not need to beverified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-FIT-STU Header A 0010STUDENT IRS FIT DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student's FIT value (federal income tax paid) on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-FLST-PARHeader A 0010PAR IRS FILE STATUS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent Tax Return Filing Status value on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web.
HWF23FEDDWF-FE-C-IRS-FLST-STUHeader A 0010STU IRS FILE STATUS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student Tax Return Filing Statusvalue on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web.
HWF23FEDDWF-FE-C-IRS-INT-PAR Header A 0010PAR IRS INTEREST INC DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent Interest Income value on the FAFSA, as compared to the parent's tax return,for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSAon the Web. If the value is 1 (retrieved from thetax return and not subsequently changed), the Interest Income does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-INT-STU Header A 0010STU IRS INTEREST INC DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student Interest Income value onthe FAFASA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (retrieved from the tax return and not subsequently changed),the Interest Income does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-IRA-PAR Header A 0010PAR IRS IRA PAYMENTS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent IRA Payments value on theFAFSA, as compared to the parent's tax return, forapplicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (retrieved from thetax return and not subsequently changed), the IRA Payments field does not need to be verified ifthe student is selected for verification.
HWF23FEDDWF-FE-C-IRS-IRA-STU Header A 0010STU IRS IRA PAYMENTS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student IRA Payments value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (retrieved from the tax return and not subsequently changed),the IRA Payments field does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-RET-PAR Header A 0010PAR IRS RETURN TYPE DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent Type of Tax Return value on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web.
HWF23FEDDWF-FE-C-IRS-RET-STU Header A 0010STU IRS RETURN TYPE DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student Type of Tax Return valueon the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the web.
HWF23FEDDWF-FE-C-IRS-SCD1-PARHeader A 0010PAR IRS FILED SCHED 1 DATA FLG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent filed schedule 1 value onthe FAFSA, as compared to the parent's tax return,for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA onthe web. If the value is 1 (filed schedule 1 was retrieved from the tax return and not subsequentlychanged), the Sched 1 answer does not need to be verified if the parent is selected for verification.
HWF23FEDDWF-FE-C-IRS-SCD1-STUHeader A 0010STU IRS FILED SCHED 1 DATA FLG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student filed schedule 1 value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the web. If the value is 1 (Filed schedule 1 was retrieved from the tax return and not subsequently changed), the Sched 1 answer doesnot need to be verified if the student is selectedfor verification.
HWF23FEDDWF-FE-C-IRSREQ-PAR Header A 0020PARENT IRS DATA REQUEST NXH WF23FEDDWF-FE-C-IRSREQ-STU Upon request by the parent, financial information may be transferred from the IRS into the FAFSA on the Web (FOTW) application.
HWF23FEDDWF-FE-C-IRSREQ-STU Header A 0020STUDENT IRS DATA REQUEST NXH Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application.
VWF23FEDDWF-FE-C-IRSREQ-STU 00 0000 Ineligible Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 01 0000 Data used/no xfer Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 02 0000 Data xfer w/o change Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 03 0000 Data xfer/changed Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 04 0000 Data xfer/subs chg Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 05 0000 Data not used/no xfer Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 06 0000 Data chg/ineligible r Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 07 0000 Data xfer/amended r
HWF23FEDDWF-FE-C-MATCH Header A 0010CPS MATCH FLAGS HN As part of the processing of a student's federal financial aid application, the Central Processing System (CPS) performs matches with a variety of files administered by a variety of agencies. The results of some of those matches are reported directly by the CPS to the institution; others arereflected in comments printed on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-CIT Header A 0010SSA CITIZENSHIP MATCH NXH Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-CIT * 0000 Foreign Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT A 0000 US citizen Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT B 0000 Legal/work elig Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT C 0000 Legal/work inelig Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT D 0000 Other Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT E 0000 Alien/work auth Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT F 0000 Conditnly legalized Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT N 0000 Unable to verify Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-DHS Header A 0010DHS MATCH NXH Include: WF-FE-C-MATCH The Department of Homeland Security verification ofeligible non-citizen status is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-DHS N 0000 Citshp not confirmed Include: WF-FE-C-MATCH The Department of Homeland Security verification ofeligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS Y 0000 Citiznship confirmed Include: WF-FE-C-MATCH The Department of Homeland Security verification ofeligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-DHS2 Header A 0010DHS SECONDARY MATCH NXH Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-DHS2 C 0000 Pending DHS process Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS2 N 0000 Citshp not confirmed Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS2 P 0000 Pending sec DHS proc Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS2 X 0000 Not enough info Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS2 Y 0000 Citiznship confirmed Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-DOD Header A 0010DOD MATCH NXH Include: WF-FE-C-MATCH The Department of Defense verification of a parent's death while serving in the Armed Servicesin Afghanistan or Iraq during the current conflicts is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-DOD Y 0000 Parent qual deceased Include: WF-FE-C-MATCH The Department of Defense verification of a parent's death while serving in the Armed Servicesin Afghanistan or Iraq during the current conflicts is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-HS Header A 0010HIGH SCHOOL MATCH NXH Include: WF-FE-C-MATCH The verification of the student's graduation high school is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-HS Y 0000 HS not confirmed Include: WF-FE-C-MATCH The verification of the student's graduation high school is reported directly as a CPS match flag. in Afghanistan or Iraq during the current conflicts is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-NSL Header A 0010NSLDS MATCH NXH Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-NSL 1 0000 Eligible for TIV aid Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 2 0000 Default Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 3 0000 Overpayment Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 4 0000 Default/Overpayment Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 7 0000 Match/no data Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 8 0000 Transaction not sent Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-P1 Header A 0010PARENT 1 SOCIAL SECURITY MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN CPS match flag indicating the results of verifyingthe parent's SSN, name and date of birth with the Social Security Administration.
HWF23FEDDWF-FE-C-MATCH-P2 Header A 0010PARENT 2 SOCIAL SECURITY MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN Reference: WF-FE-C-MATCH-P1
HWF23FEDDWF-FE-C-MATCH-SS Header A 0010SELECTIVE SERVICE MATCH NXH Include: WF-FE-C-MATCH The Selective Service verification of registrationstatus is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-SS N 0000 Reg status not conf Include: WF-FE-C-MATCH The Selective Service verification of registrationstatus is reported directly as a CPS match flag. National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SS T 0000 Temporarily exempt Include: WF-FE-C-MATCH The Selective Service verification of registrationstatus is reported directly as a CPS match flag. National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SS Y 0000 Reg status confirmed Include: WF-FE-C-MATCH The Selective Service verification of registrationstatus is reported directly as a CPS match flag. National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-SSN Header A 0010STUDENT SOCIAL SECURITY MATCH NXH Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-SSN 1 0000 No match Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 2 0000 SSN/name match Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 3 0000 SSN only match Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 4 0000 SSN/name/DOB match Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 5 0000 SSN/name/DOB/death I Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 6 0000 SSN not verified Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 8 0000 Record not sent Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-VA Header A 0010VETERANS ADMINISTRATION MATCH NXH Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag.
VWF23FEDDWF-FE-C-MATCH-VA 1 0000 Vet status confirmed Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-VA 2 0000 Record found/inelig Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-VA 3 0000 Record not found Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-VA 4 0000 Active duty Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-VA 8 0000 Record not sent Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MULT-INST Header A 0100MULTIPLE INSTITUTION FLAG NXH WF23FEDDWF-FE-C-ETI The ISIR record may contain multiple institution codes associated with the same destination point.
HWF23FEDDWF-FE-C-NSLDS-PS1 Header A 0020NSLDS POST-SCREENING REASON NXH If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records.
VWF23FEDDWF-FE-C-NSLDS-PS1 01 0000 Default added If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 02 0000 Overpayment added If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 03 0000 Default resolved If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 04 0000 Overpayment resolved If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 05 0000 MPN status change If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 06 0000 Loan into discharge If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 07 0000 Loan outof discharge If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 08 0000 Closed school If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 09 0000 Exceeded sub limit If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 10 0000 Exceeded comb limit If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 11 0000 Exc sub limit rsolvd If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 12 0000 Exc cmb limit rsolvd If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 13 0000 For FSA use only If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 14 0000 Active bankruptcy If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 15 0000 PLUS MPN status chg If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 16 0000 GPLUS MPN status chg If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 17 0000 Fraud convic added If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 18 0000 Fraud convic resolve If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 19 0000 TEACH convert->loan If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 20 0000 Met or exc Pell LEU If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 21 0000 No longer at/exc LEU If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 22 0000 Close to Pell LEU If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 23 0000 No longer close->LEU If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 24 0000 Enrol status change If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 25 0000 Sub Usg lim applies If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 26 0000 Subsidy stat chgd If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 27 0000 Sub usg per decrease If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 99 0000 Other If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-NSLDS-PS2 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-FE-C-NSLDS-PS1
HWF23FEDDWF-FE-C-NSLDS-PS3 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-FE-C-NSLDS-PS1
HWF23FEDDWF-FE-C-NSLDS-TRAN Header A 0020NSLDS TRANSACTION NN NSLDS information may or may not be updated with each ISIR transmitted to the institution. The most recent transaction containing updated NSLDS information is identified in the ISIR record.
HWF23FEDDWF-FE-C-ORIG-DATE Header A 0080APPLICATION RECEIVED DATE NN The date that the original federal financial aid application was received by its processor is oftenused in establishing priorities in packaging.
HWF23FEDDWF-FE-C-ORIG-SRCE Header A 0010ORIGINAL APPLICATION SOURCE NXH The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record.
VWF23FEDDWF-FE-C-ORIG-SRCE 1 0000 Electronic The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 2 0000 Web Student The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 3 0000 Web FAA The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 4 0000 Paper The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 6 0000 FSAIC The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 7 0000 FAFSA4caster The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-ORIG-TYPE Header A 0010ORIGINAL APPLICATION TYPE NXH Reference: WF-FE-C-ORIG-SRCE
VWF23FEDDWF-FE-C-ORIG-TYPE A 0000 Application Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE B 0000 Application Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE E 0000 EZ FAFSA Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE F 0000 EZ FAFSA Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE G 0000 EZ FAFSA renewal Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE H 0000 EZ FAFSA rnw Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE J 0000 Corr application Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE K 0000 Corr app Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE R 0000 Renewal application Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE T 0000 Renewal app Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE U 0000 PDF Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE V 0000 PDF Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-PELL-ELIG Header A 0010PELL ELIGIBILITY NXH As a part of the editing and processing of the federal financial aid application, the Central Processing System (CPS) determines whether the student is eligible for a Pell Grant.
VWF23FEDDWF-FE-C-PELL-ELIG Y 0000 Eligible for Pell As a part of the editing and processing of the federal financial aid application, the Central Processing System (CPS) determines whether the student is eligible for a Pell Grant. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-PROC-DATE Header A 0080TRANSACTION PROCESSING DATE NN The processing date of each application or application change submitted to the Central Processing System (CPS) determines the order in which transaction numbers are assigned.
HWF23FEDDWF-FE-C-PUSHED Header A 0010ISIR PUSHED FLAG NXH The "pushed" flag indicates that the current ISIR was automatically sent to the institution.
VWF23FEDDWF-FE-C-PUSHED Y 0000 Automatically sent The "pushed" flag indicates that the current ISIR was automatically sent to the institution. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-REC-TYPE Header A 0010PROCESSED RECORD TYPE NXH A variety of document submissions can result in generation of an ISIR record.
VWF23FEDDWF-FE-C-REC-TYPE C 0000 Correction app A variety of document submissions can result in generation of an ISIR record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-REC-TYPE H 0000 Correction A variety of document submissions can result in generation of an ISIR record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-REJ-CHG Header A 0010REJECT STATUS CHANGE FLAG NXH The change flag indicates whether the current ISIRcontains a change in reject status.
VWF23FEDDWF-FE-C-REJ-CHG Y 0000 Reject status changd The change flag indicates whether the current ISIRcontains a change in reject status. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-REJ1 Header A 0020REJECT REASON NXH As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 1 0000 No SNT/Assets blank As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 10 0000 Mar/fam size missing As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 11 0000 Mar/inc inconsistent As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 12 0000 Par tax paid >or=AGI As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 13 0000 Student missing name As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 14 0000 Student unsigned app As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 15 0000 Parent unsigned app As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 16 0000 Stu unsigned web app As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 17 0000 Unknown/inelig citiz As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 18 0000 Stu SSA SSN not fnd As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 19 0000 Student on DOJ hold As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 2 0000 All income fld blank As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 20 0000 Ind/Par non-fil/inc As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 21 0000 Stu mar dat>app date As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 23 0000 ED eligibility hold As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 24 0000 NSLDS Fraud Loan set As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 3 0000 Stu tax paid >or=AGI As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 4 0000 Stu mar dat>sign dat As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 5 0000 Missing/invalid DOB As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 6 0000 Fa SSA SSN not found As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 7 0000 Mo SSA SSN not found As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 8 0000 Stu SSA dt of death As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 9 0000 Par SSN/DOB/nm missg As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 A 0000 Stu DOB in question As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 B 0000 Stu age in question As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 C 0000 Ind/Par tax pd> %AGI As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 D 0000 Stu SSA match/nm not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 E 0000 Fa SSA match/nm not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 F 0000 Mo SSA match/nm not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 G 0000 Dep stu tax pd> %AGI As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 J 0000 Tax filer/no fa SSN As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 K 0000 Tax filer/no mo SSN As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 N 0000 Student partial name As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 R 0000 Stu SSA match/DB not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 S 0000 Fa SSA match/DOB not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 T 0000 Mo SSA match/DOB not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 W 0000 Fam size in question As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-REJ2 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ3 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ4 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ5 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ6 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ7 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REPROC-RSN Header A 0020REPROCESSING REASON NXH 01 99 If an ISIR is generated because of CPS activity (rather than in response to a correction or specifrequest) the reason for the reprocessed applicatiois identified.
HWF23FEDDWF-FE-C-SIMP-NEEDS Header A 0010SIMPLIFIED NEEDS TEST NXH Depending on the information submitted on the federal financial aid application, the applicant may meet the requirements for a simplified need analysis.
VWF23FEDDWF-FE-C-SIMP-NEEDS N 0000 Simp Nds Tst not met Depending on the information submitted on the federal financial aid application, the applicant may meet the requirements for a simplified need analysis. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SIMP-NEEDS Y 0000 Simp Needs Test met Depending on the information submitted on the federal financial aid application, the applicant may meet the requirements for a simplified need analysis. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-SP-CIRC Header A 0010SPECIAL CIRCUMSTANCE NXH Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances.
VWF23FEDDWF-FE-C-SP-CIRC 1 0000 Dep w/o parent data Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SP-CIRC 2 0000 Corr to parent data Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SP-CIRC 3 0000 Unaccomp'ed homeless Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SP-CIRC 4 0000 Dependent unsub only Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-SSN-DUP Header A 0010DUPLICATE SSN NXH If another student is using the same SSN, the ISIRcontains a warning flag.
VWF23FEDDWF-FE-C-SSN-DUP Y 0000 Non-unique SSN If another student is using the same SSN, the ISIRcontains a warning flag. may be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-SSN-NM-CHG Header A 0010NAME/SSN CHANGE FLAG NXH The change flag indicates whether the current ISIR reflects changes in the student's social security number and/or last name.
VWF23FEDDWF-FE-C-SSN-NM-CHG B 0000 SSN and name change The change flag indicates whether the current ISIR reflects changes in the student's social security number and/or last name. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SSN-NM-CHG N 0000 Name change The change flag indicates whether the current ISIR reflects changes in the student's social security number and/or last name. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SSN-NM-CHG S 0000 SSN change The change flag indicates whether the current ISIR reflects changes in the student's social security number and/or last name. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-TRAN-DATE Header A 0080TRANSACTION RECEIVED DATE NN The date that the current transaction was receivedby its processor is reported to the institution.
HWF23FEDDWF-FE-C-TRAN-SRCE Header A 0010TRANSACTION SOURCE NXH The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record.
VWF23FEDDWF-FE-C-TRAN-SRCE 1 0000 Electronic The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 2 0000 Web Student The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 3 0000 Web FAA The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 4 0000 Paper The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 5 0000 CPS The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 6 0000 FSAIC The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 7 0000 FAFSA4caster The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 8 0000 myStudentAid app
HWF23FEDDWF-FE-C-TRAN-TYPE Header A 0010TRANSACTION TYPE NXH Reference: WF-FE-C-TRAN-SRCE
VWF23FEDDWF-FE-C-TRAN-TYPE A 0000 Application Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE B 0000 Application Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE C 0000 Correction Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE D 0000 Drug hold release Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE E 0000 EZ FAFSA Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE F 0000 EZ FAFSA Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE G 0000 EZ FAFSA renewal Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE H 0000 EZ FAFSA rnw Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE J 0000 Corr application Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE K 0000 Corr app Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE L 0000 Identity hold releas Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE M 0000 DHS secondary conf Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE N 0000 NSLDS post-screening Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE P 0000 Reprocessing Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE Q 0000 Correction Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE R 0000 Renewal application Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE S 0000 Signature page Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE T 0000 Renewal app Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE U 0000 PDF Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE V 0000 PDF Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE W 0000 SSA death file match Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE X 0000 DOD match Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE Y 0000 Identity Verif Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER Header A 0010VERIFICATION SELECTION NXH As a part of the application editing and processing performed by the Central Processing System (CPS), the student may be selected for institutional verification.
VWF23FEDDWF-FE-C-VER * 0000 Subsequent selected As a part of the application editing and processing performed by the Central Processing System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER N 0000 Not selected As a part of the application editing and processing performed by the Central Processing System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER Y 0000 Selected As a part of the application editing and processing performed by the Central Processing System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-CHG Header A 0010VERIFICATION STATUS CHNGE FLAG NXH The change flag indicates whether the current ISIRcontains a change in verification selection.
VWF23FEDDWF-FE-C-VER-CHG C 0000 Ver Track Grp changd The change flag indicates whether the current ISIRcontains a change in verification selection. System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-CHG Y 0000 Verif selectn changd The change flag indicates whether the current ISIRcontains a change in verification selection. System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-DHS Header A 0130DHS VERIFICATION NUMBER NN A verification number is returned from the Department of Homeland Security when a student's DHS status is confirmed.
HWF23FEDDWF-FE-C-VER-DOD Header A 0080DOD VERIFICATION DATE NN A verification date of death is returned from the Department of Defense when a student's DOD match status is confirmed.
HWF23FEDDWF-FE-C-VER-FLAG Header A 1950FAFSA DATA VERIFY FLAGS NXH The ISIR record contains an array of flags indicating which items on the federal financial aid application have been corrected to the values they already held (thereby overriding assumptions that may have been made about their correct values.
VWF23FEDDWF-FE-C-VER-FLAG 0 0000 Not corr to same val The ISIR record contains an array of flags indicating which items on the federal financial aid application have been corrected to the values they already held (thereby overriding assumptions that may have been made about their correct values. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-FLAG 1 0000 Fld corr to same val The ISIR record contains an array of flags indicating which items on the federal financial aid application have been corrected to the values they already held (thereby overriding assumptions that may have been made about their correct values. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-FLAG 2 0000 Asked to be verified The ISIR record contains an array of flags indicating which items on the federal financial aid application have been corrected to the values they already held (thereby overriding assumptions that may have been made about their correct values. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-HS Header A 0120HIGH SCHOOL VERIFICATION CODE NXH The high school identifying code is returned when the student's high school name, city, and state are verified against a file of valid high schools.
HWF23FEDDWF-FE-C-VER-NSL Header A 0010NSLDS MATCH RESULTS NXH The results of attempted matching against the NSLDdata base are reported in the ISIR record.
VWF23FEDDWF-FE-C-VER-NSL 1 0000 Record match/data The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-NSL 2 0000 SSN match only The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-NSL 3 0000 No match The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-NSL 4 0000 Record match/no data The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-NSL 5 0000 Real-time not sent The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-SS Header A 0010SEL SERV REG VERIFICATION NXH The Selective Service Registration response to a request for registration is reported back via the CPS.
VWF23FEDDWF-FE-C-VER-SS N 0000 Reg status not conf The Selective Service Registration response to a request for registration is reported back via the CPS. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-SS T 0000 Temporarily exempt The Selective Service Registration response to a request for registration is reported back via the CPS. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-SS Y 0000 Reg status confirmed The Selective Service Registration response to a request for registration is reported back via the CPS. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-TRACK Header A 0040VERIFICATION TRACKING FLAG NXH Additional information pertaining to the student's federal selection for verification, suchas the verification group to which the student is assigned. The verification group indicates which data need to be confirmed.
VWF23FEDDWF-FE-C-VER-TRACK V1 0000 Std Verif Group Additional information pertaining to the student's federal selection for verification, suchas the verification group to which the student is assigned. The verification group indicates which data need to be confirmed. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-TRACK V4 0000 Custom Verif Group Additional information pertaining to the student's federal selection for verification, suchas the verification group to which the student is assigned. The verification group indicates which data need to be confirmed. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-TRACK V5 0000 Aggregate Verif Grp Additional information pertaining to the student's federal selection for verification, suchas the verification group to which the student is assigned. The verification group indicates which data need to be confirmed. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAP-AFI-TOTAL Header A 0080PARENT AFI TOTAL (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-AGI Header A 0070PARENT ADJ GROSS INCOME (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-ATHRSH Header A 0010PARENT ASSET EXC THRSHLD (ASM) NXH WF23FEDDWF-FE-CAS-ATHRSH Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-FAM-COL Header A 0010PARENT FAMILY IN COLLEGE (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-FAM-SIZE Header A 0020PARENT FAMILY SIZE (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-FED-TAX Header A 0060PARENT FEDERAL TAX (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-FILER Header A 0010PARENT TAX FILER (ASM) NXH WF23FEDDWF-FE-CAS-FILER Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-MAR Header A 0010PARENT MARITAL STATUS (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAP-MAR 1 0000 Assume married Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAP-MAR 2 0000 Assume unmarried Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAP-P1-INC Header A 0060PARENT 1 WORK INCOME (ASM) NN Assume unmarried
HWF23FEDDWF-FE-CAP-P1-SSN Header A 0010PARENT 1 SSN (ASM) NN Assume unmarried
VWF23FEDDWF-FE-CAP-P1-SSN Y 0000 Assumed SSN Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAP-P2-INC Header A 0070PARENT 2 WORK INCOME (ASM) NN Assumed SSN
HWF23FEDDWF-FE-CAP-P2-SSN Header A 0010PARENT 2 SSN (ASM) NN WF23FEDDWF-FE-CAP-P1-SSN
HWF23FEDDWF-FE-CAS-AFI-TOTAL Header A 0080STUDENT AFI TOTAL (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-AGI Header A 0070STUDENT ADJ GROSS INCOME (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-ATHRSH Header A 0010STUDENT ASSET EXC THRSHD (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-ATHRSH Y 0000 Assumed blank Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-CIT Header A 0010STUDENT CITIZ STATUS (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-CIT 1 0000 Assume US citizen Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-CIT 2 0000 Assume elig non-cit Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-FAM-COL Header A 0010STUDENT FAM IN COLLEGE (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-FAM-SIZE Header A 0020STUDENT FAMILY SIZE (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-FED-TAX Header A 0070STUDENT FEDERAL TAX (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-FILER Header A 0010STUDENT TAX FILER (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-FILER 1 0000 Assume tax filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-FILER 2 0000 Assume tax filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-FILER 3 0000 Assume tax filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-FILER 4 0000 Assume non-filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-FILER 5 0000 Assume non-filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-MAR Header A 0010STUDENT MARITAL STATUS (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-MAR 1 0000 Assume single Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-MAR 2 0000 Assume married Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-SP-INC Header A 0070SPOUSE WORK INCOME (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-ST-INC Header A 0070STUDENT WORK INCOME (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-TEST-CHL Header A 0010STUDENT CHILD DEPS TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-CHL 1 0000 Assume dependents Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-TEST-CHL 2 0000 Assume no dependents Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-DEP Header A 0010STUDENT OTHER DEPS TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-DEP 2 0000 Assume no dependents Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-DOB Header A 0010STUDENT DT OF BIRTH TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-DOB 1 0000 Assume DOB<1/1/1996 Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-TEST-DOB 2 0000 Assume DOB>12/31/95 Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-HMLS 2 0000 Assume not at risk Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-MAR Header A 0010STUDENT MARITAL TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-MAR 1 0000 Assume married Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-TEST-MAR 2 0000 Assume unmarried Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-UYHU Header A 0010STUDENT UNACC (HUD) TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-UYHU 2 0000 Assume not homeless Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-UYSD Header A 0010STUDENT UNACC (SDL) TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-UYSD 2 0000 Assume not homeless Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CCP-AFI-TOTAL Header A 0080PARENT TOTAL AFI (CALC) NN Reference: WF-FE-CCS-AFI-TOTAL
HWF23FEDDWF-FE-CCP-UTX-TOTAL Header A 0080PARENT TOTAL UTX (CALC) NN Reference: WF-FE-CCS-AFI-TOTAL
HWF23FEDDWF-FE-CCS-AFI-TOTAL Header A 0080STUDENT TOTAL AFI (CALC) NN The parents' and student's total AFI and Untaxed Income are calculated by the CPS and included in the Institutional Student Information Report (ISIR) record.
HWF23FEDDWF-FE-CCS-UTX-TOTAL Header A 0080STUDENT TOTAL UTX (CALC) NN Reference: WF-FE-CCS-AFI-TOTAL Income are calculated by the CPS and included in the Institutional Student Information Report (ISIR) record.
HWF23FEDDWF-FE-DOB Header A 0080STUDENT DATE OF BIRTH NN The student's birthdate is used in verifying the age test for dependency status.
HWF23FEDDWF-FE-EMAIL Header A 0500STUDENT E-MAIL ADDRESS NN The student's e-mail address may be used as contact information for the student.
HWF23FEDDWF-FE-F-ASM1-OVR Header A 0010ASSUMPTION 1 OVERRIDE NXH Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 1: Parents' number in college assumed to be 1.
VWF23FEDDWF-FE-F-ASM1-OVR 1 0000 Assumption override Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 1: Parents' number in college assumed to be 1. which data need to be confirmed. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-F-ASM2-OVR Header A 0010ASSUMPTION 2 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 2: Parents' AGI assumed equal to the sum of parent 1 and parent 2 income earned from work.
HWF23FEDDWF-FE-F-ASM3-OVR Header A 0010ASSUMPTION 3 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 3: Student's number in college assumed to be 1.
HWF23FEDDWF-FE-F-ASM4-OVR Header A 0010ASSUMPTION 4 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 4: Student's AGI assumed to be equal tothe sum of the student's and spouse's income earned from work.
HWF23FEDDWF-FE-F-ASM5-OVR Header A 0010ASSUMPTION 5 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 5: Parents' income from Additional Financial Information assumed to be zero.
HWF23FEDDWF-FE-F-ASM6-OVR Header A 0010ASSUMPTION 6 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 6: Student's income from Additional Financial Information assumed to be zero.
HWF23FEDDWF-FE-F-COLLEGE Header A 0060FAA COLLEGE NN If an ISIR is produced in response to an institution-submitted correction or duplicate request, the ISIR record contains the institution number contained on the transaction submitted.
HWF23FEDDWF-FE-F-DEP-OVR Header A 0010DEPENDENCY OVERRIDE NXH If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator.
VWF23FEDDWF-FE-F-DEP-OVR 1 0000 Dependency override If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-F-DEP-OVR 2 0000 Override cancelled If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-F-DEP-OVR 3 0000 Override failed If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-F-DEP-OVR 4 0000 Homeless youth det If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-F-PROF-JUDG Header A 0010PROFESSIONAL JUDGMENT NXH The financial aid administrator may inform the Central Processing System (CPS) that professional judgment has been used to arrive at an adjusted expected family contribution (EFC).
VWF23FEDDWF-FE-F-PROF-JUDG 1 0000 Prof judgment The financial aid administrator may inform the Central Processing System (CPS) that professional judgment has been used to arrive at an adjusted expected family contribution (EFC). For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-F-PROF-JUDG 2 0000 Prof judgment failed The financial aid administrator may inform the Central Processing System (CPS) that professional judgment has been used to arrive at an adjusted expected family contribution (EFC). For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-F-REJ12-OVR Header A 0010REJECT 12 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject 12: Parents' Taxes Paid is greater than zero and equal to or greater than AGI.
HWF23FEDDWF-FE-F-REJ20-OVR Header A 0010REJECT 20 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject 20: A non-tax filer is reporting an income above the IRS filing requirement.
HWF23FEDDWF-FE-F-REJ21-OVR Header A 0010REJECT 21 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject 21: Student's corrected Marital Status Dateis between the application receipt date and the transaction receipt date.
HWF23FEDDWF-FE-F-REJ3-OVR Header A 0010REJECT 3 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject 3: Student's Taxes Paid is greater than zero and equal to or greater than AGI.
HWF23FEDDWF-FE-F-REJA-OVR Header A 0010REJECT A OVERRIDE NXH Include: WWSYSVRD.WF-HELP-REJ-OVR Reject A: Date of birth year equals 1900 through 1947.
VWF23FEDDWF-FE-F-REJA-OVR 1 0000 Reject override Include: WWSYSVRD.WF-HELP-REJ-OVR Reject A: Date of birth year equals 1900 through 1947. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-F-REJB-OVR Header A 0010REJECT B OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject B: Independent student and date of birth is 09/01/2006 or greater, and date of birth is not equal to or greater than current year.
HWF23FEDDWF-FE-F-REJC-OVR Header A 0010REJECT C OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject C: Taxes Paid is greater than zero and greater than or equal to a fixed percentage of theAGI, but not equal to or greater than AGI. (Parent or Independent Student)
HWF23FEDDWF-FE-F-REJG-OVR Header A 0010REJECT G OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject G: Taxes Paid is greater than zero, and greater than or equal to a fixed percentage of theAGI, but not equal to or greater than AGI. (Dependent Student)
HWF23FEDDWF-FE-F-REJJ-OVR Header A 0010REJECT J OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject J: Parent 1's SSN contains all zeroes and reported as a tax filer.
HWF23FEDDWF-FE-F-REJK-OVR Header A 0010REJECT K OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject K: Parent 2's SSN contains all zeroes and reported as a tax filer.
HWF23FEDDWF-FE-F-REJN-OVR Header A 0010REJECT N OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject N: Missing first or last name.
HWF23FEDDWF-FE-F-REJW-OVR Header A 0010REJECT W OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject W: Unusually high number of family members.
HWF23FEDDWF-FE-FED-ID Header A 0130FEDERAL ID NN The Federal ID uniquely identifies the current application in the Central Processing System (CPS)data base. The first part of the Federal ID contains the student's social security number from the originalfederal financial aid application. The second part contains the first two characters of the student's last name from that application. The third part contains the sequential transactionnumber assigned to the current copy of the federalapplication.
HWF23FEDDWF-FE-FED-ID1 Header A 0090FEDERAL ID (SSN) NN Reference: WF-FE-FED-ID
HWF23FEDDWF-FE-FED-ID2 Header A 0020FEDERAL ID (LAST NAME) NN Reference: WF-FE-FED-ID
HWF23FEDDWF-FE-FED-ID3 Header A 0020FEDERAL ID (TRANSACTION) NN Reference: WF-FE-FED-ID
HWF23FEDDWF-FE-IRS-C-DSP-PAR Header 0000FEDERAL ID (TRANSACTION) NN
HWF23FEDDWF-FE-L-NSLDS1 Header A 2500NSLDS INFORMATION NN Information from the National Student Loan Data System (NSLDS) is sent to the institution to consider in making decisions regarding further loans to the student.
HWF23FEDDWF-FE-L-NSLDS2 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS3 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS4 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS5 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS6 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS7 Header A 0080NSLDS INFORMATION NN
HWF23FEDDWF-FE-NM-FIRST Header A 0120STUDENT FIRST NAME NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-NM-LAST Header A 0160STUDENT LAST NAME NN The student's name and address are printed on the Student Aid Report (SAR) and included in the electronic ISIR transmitted to the institution.
HWF23FEDDWF-FE-NM-MI Header A 0010STUDENT MIDDLE INITIAL NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-P-A-COOP Header A 0070PARENT AFI CO-OP EARNINGS NN Reference: WF-FE-P-A-EDCR
HWF23FEDDWF-FE-P-A-CPAY Header A 0070PARENT AFI COMBAT PAY NN Reference: WF-FE-P-A-EDCR
HWF23FEDDWF-FE-P-A-CSPD Header A 0070PARENT AFI CHILD SUPPORT PAID NN Reference: WF-FE-P-A-EDCR
HWF23FEDDWF-FE-P-A-EDCR Header A 0070PARENT AFI EDUCATION CREDITS NN The parent's additional financial information components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-P-A-GRNT Header A 0070PARENT AFI GRANTS/SCHOLARSHIPS NN Reference: WF-FE-P-A-EDCR components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-P-A-WORK Header A 0070PARENT AFI NEED-BASED WORK NN Reference: WF-FE-P-A-EDCR components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-P-AGI Header A 0070PARENT ADJUSTED GROSS INCOME NN The parents' adjusted gross income is combined with untaxed income in the calculation of parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-BUS-FRM Header A 0070PARENT BUSINESS/FARM ASSETS NN The net worth of the parents' business(es) and investment farm(s) is combined with other available assets in the calculation of parent contribution (PC).
HWF23FEDDWF-FE-P-CASH Header A 0070PARENT CASH ASSETS NN The cash present in the parents' checking and savings accounts is considered as an available asset and is used in calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-DLW Header A 0010PARENT DISLOCATED WORKER NXH WF23FEDDWF-FE-S-DLW The parents' status as dislocated workers is considered in determining the formula to be used in calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-EMAIL Header A 0500PARENT E-MAIL ADDRESS NN The parents' e-mail address may be used as contactinformation for the parents.
HWF23FEDDWF-FE-P-FAM-COL Header A 0010PARENT FAMILY IN COLLEGE NN The number of the parents' family members attending college is considered in calculating theparent contribution (PC).
HWF23FEDDWF-FE-P-FAM-SIZE Header A 0020PARENT FAMILY SIZE NN The parents' family size is considered in calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-FED-TAX Header A 0060PARENT FEDERAL TAX NN The parents' federal tax paid is treated as an adjustment to income in the calculation of parent contribution (PC). An assumed value may be calculated if the parents' federal tax is not reported on the financial aid application. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-FILE-STAT Header A 0010PARENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT If the parent is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-FILER Header A 0010PARENT TAX FILER NXH WF23FEDDWF-FE-S-FILER Whether the parents have already filed or plan to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating parent contribution (PC).
HWF23FEDDWF-FE-P-FORM Header A 0010PARENT TAX FORM NXH WF23FEDDWF-FE-S-FORM Reference: WF-FE-P-FILER
HWF23FEDDWF-FE-P-INV Header A 0070PARENT INVESTMENT ASSETS NN The net worth of the parents' non-home real estateand other investments is combined with other available assets in the calculation of parent contribution (PC).
HWF23FEDDWF-FE-P-MAR Header A 0010PARENT MARITAL STATUS NXH The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 1 0000 Married/remarried The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 2 0000 Never married The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 3 0000 Divorded/Separated The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 4 0000 Widowed The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 5 0000 Unmarr,live together The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
HWF23FEDDWF-FE-P-MAR-DATE Header A 0060PARENT MARITAL STATUS DATE NN Reference: WF-FE-P-MAR
HWF23FEDDWF-FE-P-MT-LUNCH Header A 0010PARENT MEANS-TESTED LUNCH PGM NXH WF23FEDDWF-FE-S-MT-LUNCH Reference: WF-FE-P-MT-SSI
HWF23FEDDWF-FE-P-MT-SNAP Header A 0010PARENT MEANS-TESTED SUPP NUTR NXH WF23FEDDWF-FE-S-MT-SNAP Reference: WF-FE-P-MT-SSI
HWF23FEDDWF-FE-P-MT-SSI Header A 0010PARENT MEANS-TESTED SSI NXH WF23FEDDWF-FE-S-MT-SSI The parent's receipt of means-tested benefits (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-MT-TANF Header A 0010PARENT MEANS-TESTED TANF NXH WF23FEDDWF-FE-S-MT-TANF Reference: WF-FE-P-MT-SSI
HWF23FEDDWF-FE-P-MT-WIC Header A 0010PARENT MEANS-TESTED WIC NXH WF23FEDDWF-FE-S-MT-WIC Reference: WF-FE-P-MT-SSI
HWF23FEDDWF-FE-P-P1-DOB Header A 0080PARENT 1 BIRTHDATE NNH WF23FEDDWF-FE-S-MT-WIC
HWF23FEDDWF-FE-P-P1-FNAME Header A 0010PARENT 1 FIRST INITIAL NNH WF23FEDDWF-FE-S-MT-WIC
HWF23FEDDWF-FE-P-P1-INC Header A 0070PARENT 1 WORK INCOME NN The parent's income from work; used in calculatingFICA taxes, which are treated as an adjustment to income in the calculation of parent contribution (PC). Income from work may also be used to derivean assumed adjusted gross income for parents who are not tax filer.
HWF23FEDDWF-FE-P-P1-LEV Header A 0010PARENT 1 EDUCATIONAL LEVEL NXH WFFED23DWF-FE-P-P2-LEV The parent's highest grade level, as collected on the federal financial aid appllication. (This information is not used in calculating the student's eligibility for federal financial aid.)
HWF23FEDDWF-FE-P-P1-LNAME Header A 0160PARENT 1 LAST NAME NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P1-SSN Header A 0090PARENT 1 SSN NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P2-DOB Header A 0080PARENT 2 BIRTHDATE NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P2-FNAME Header A 0010PARENT 2 FIRST INITIAL NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P2-INC Header A 0070PARENT 2 WORK INCOME NN Reference: WF-FE-P-P1-INC
HWF23FEDDWF-FE-P-P2-LEV Header A 0010PARENT 2 EDUCATIONAL LEVEL NXH WFFED23DWF-FE-P-P2-LEV Reference: WF-FE-P-P1-LEV
HWF23FEDDWF-FE-P-P2-LNAME Header A 0160PARENT 2 LAST NAME NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P2-SSN Header A 0090PARENT 2 SSN NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-RES Header A 0020PARENT STATE OF RESIDENCE NXH WWSYSVRDWF-HELP-RES The parents' state of legal residence is used in calculating state taxes, which are treated as an allowance against income in the calculation of parent contribution (PC). The effective date of residence, or the parents' statement that they have held their current place of residence for at least five years, documents the parents' state of legal residence.
HWF23FEDDWF-FE-P-RES-5YR Header A 0010PARENT FIVE-YEAR RESIDENCE NXH WF23FEDDWF-FE-S-RES-5YR Reference: WF-FE-P-RES
HWF23FEDDWF-FE-P-RES-DATE Header A 0060PARENT STATE RESIDENCE DATE NN Reference: WF-FE-P-RES
HWF23FEDDWF-FE-P-SCHED1 Header A 0010PARENT FILED SCHED 1 QUEST NXH WF23FEDDWF-FE-S-SCHED1
HWF23FEDDWF-FE-P-U-CSUP Header A 0070PARENT UTX CHILD SUPPORT RCVD NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-DST-PEN Header A 0070PAR IRS UNTXD IRA DIST/PENS NN
HWF23FEDDWF-FE-P-U-INT Header A 0070PARENT UTX INTEREST INCOME NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-IRA Header A 0070PARENT UTX IRA PAYMENTS NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-LIV Header A 0070PARENT UTX LIVING ALLOWANCES NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-OTHER Header A 0070PARENT UTX OTHER UNTAXED INC NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-PEN Header A 0070PARENT UTX PENSION PAYMENTS NN The parent's untaxed income components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-P-U-VET Header A 0070PARENT UTX VET NON-ED BENEFIT NN Reference: WF-FE-P-U-PEN collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-A-COOP Header A 0070STUDENT AFI CO-OP EARNINGS NN Reference: WF-FE-S-A-EDCR collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-A-CPAY Header A 0070STUDENT AFI COMBAT PAY NN Reference: WF-FE-S-A-EDCR collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-A-CSPD Header A 0070STUDENT AFI CHILD SUPPORT PAID NN Reference: WF-FE-S-A-EDCR collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-A-EDCR Header A 0070STUDENT AFI EDUCATION CREDITS NN The student's additional financial information components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-S-A-GRNT Header A 0070STUDENT AFI GRANTS/SCHOLARSHPS NN Reference: WF-FE-S-A-EDCR components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-S-A-WORK Header A 0070STUDENT AFI NEED-BASED WORK NN Reference: WF-FE-S-A-EDCR components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-S-AGI Header A 0070STUDENT ADJUSTED GROSS INCOME NN The student's adjusted gross income (AGI) is combined with untaxed income in the calculation of student contribution (SC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-ALIEN Header A 0090STUDENT ALIEN REGISTRATION NN The alien registration number documents the citizenship status of aid-eligible non-citizens.
HWF23FEDDWF-FE-S-BACH-DEG Header A 0010STUDENT BACHELOR'S DEGREE NXH The earning of a bachelor degree affects the student's eligibility for some types of financial aid.
VWF23FEDDWF-FE-S-BACH-DEG 1 0000 Bach deg by 7/1/2022 The earning of a bachelor degree affects the student's eligibility for some types of financial aid. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-BACH-DEG 2 0000 No bach by 7/1/2022 The earning of a bachelor degree affects the student's eligibility for some types of financial aid. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-BUS-FRM Header A 0070STUDENT BUSINESS/FARM ASSETS NN The net worth of the student's business(es) and investment farm(s) is combined with other available assets in the calculation of student contribution (SC).
HWF23FEDDWF-FE-S-CASH Header A 0070STUDENT CASH ASSETS NN The cash present in the student's checking and savings accounts is considered as an available asset and is used in calculating the student contribution (SC).
HWF23FEDDWF-FE-S-CIT Header A 0010STUDENT CITIZENSHIP STATUS NXH The student's citizenship status is considered in determining eligibility for financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-CIT 1 0000 US citizen The student's citizenship status is considered in determining eligibility for financial aid. This field may not be corrected to blank. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-CIT 2 0000 Eligible non-citizen The student's citizenship status is considered in determining eligibility for financial aid. This field may not be corrected to blank. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-CIT 3 0000 Neither The student's citizenship status is considered in determining eligibility for financial aid. This field may not be corrected to blank. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-DEG Header A 0010STUDENT DEGREE/CERTIFICATE NXH The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-DEG 1 0000 1st Bachelor The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 2 0000 2nd Bachelor The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 3 0000 Associate (occ/tech) The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 4 0000 Associate (gen/tran) The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 5 0000 <2yr Cert (occ/tech) The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 6 0000 >2yr Cert (occ/tech) The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 7 0000 Non-deg Teaching Crd The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 8 0000 Grad/Profess Degree The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 9 0000 Other/Undecided The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-DL-NUM Header A 0200STUDENT DRIVER LICENSE NUMBER NN The student's driver's license and issuing state are collected on the federal financial aid application for use in administering student loan programs.
HWF23FEDDWF-FE-S-DL-STATE Header A 0020STUDENT DRIVER LICENSE STATE NXH WWSYSVRDWF-HELP-RES Reference: WF-FE-S-DL-NUM
HWF23FEDDWF-FE-S-DLW Header A 0010STUDENT DISLOCATED WORKER NXH The student's status as a dislocated worker is considered in determining the formula to be used in calculating the student contribution (SC).
VWF23FEDDWF-FE-S-DLW 1 0000 Dislocated worker The student's status as a dislocated worker is considered in determining the formula to be used in calculating the student contribution (SC). programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DLW 2 0000 Not dislocated The student's status as a dislocated worker is considered in determining the formula to be used in calculating the student contribution (SC). programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DLW 3 0000 Unknown The student's status as a dislocated worker is considered in determining the formula to be used in calculating the student contribution (SC). programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-DRUG Header A 0010STUDENT DRUG CONVICTION NXH The student's prior conviction for drug offenses may affect eligibility for some kinds of financialaid.
VWF23FEDDWF-FE-S-DRUG 1 0000 Eligible The student's prior conviction for drug offenses may affect eligibility for some kinds of financialaid. programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DRUG 2 0000 Part-year eligible The student's prior conviction for drug offenses may affect eligibility for some kinds of financialaid. programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DRUG 3 0000 Not eligible/unknown The student's prior conviction for drug offenses may affect eligibility for some kinds of financialaid. programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-FAM-COL Header A 0010STUDENT FAMILY IN COLLEGE NN The number of the student's family members attending college is considered in calculating the student contribution (SC).
HWF23FEDDWF-FE-S-FAM-SIZE Header A 0020STUDENT FAMILY SIZE NN The student's family size is considered in calculating the student contribution (SC).
HWF23FEDDWF-FE-S-FED-TAX Header A 0070STUDENT FEDERAL TAX NN The student's federal tax paid is treated as an adjustment to income in the calculation of studentcontribution (SC). An assumed value may be calculated if the student's federal tax is not reported on the financial aid application. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-FILE-STAT Header A 0010STUDENT TAX RET FILE STAT NXH If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT H 0000 Head of Household 4 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT J 0000 Married-filed joint 2 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT M 0000 Married-filed sep 3 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT S 0000 Single 1 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT U 0000 Don't know 6 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT W 0000 Qualifying Widow(er) 5 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
HWF23FEDDWF-FE-S-FILER Header A 0010STUDENT TAX FILER NXH Whether the student has already filed or plans to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FILER 1 0000 Filed Whether the student has already filed or plans to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FILER 2 0000 Expect to file Whether the student has already filed or plans to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FILER 3 0000 Will not file Whether the student has already filed or plans to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
HWF23FEDDWF-FE-S-FORM Header A 0010STUDENT TAX FORM NXH Reference: WF-FE-S-FILER
VWF23FEDDWF-FE-S-FORM 1 0000 Long form (1040) Reference: WF-FE-S-FILER file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FORM 3 0000 Foreign form Reference: WF-FE-S-FILER file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FORM 4 0000 Territorial form Reference: WF-FE-S-FILER file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
HWF23FEDDWF-FE-S-HS-CITY Header A 0280STUDENT HIGH SCHOOL CITY NN Reference: WF-FE-S-HS-NAME
HWF23FEDDWF-FE-S-HS-GED Header A 0010STUDENT HS DIPLOMA/EQUIVALENT NXH Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-HS-GED 1 0000 Diploma Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-HS-GED 2 0000 GED/State Certif Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-HS-GED 3 0000 Home schooled Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-HS-GED 4 0000 None of these Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-HS-NAME Header A 0500STUDENT HIGH SCHOOL NAME NN The name, city, and state of the high school Where the student was granted a high school diploma is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-HS-STATE Header A 0020STUDENT HIGH SCHOOL STATE NXH WWSYSVRDWF-HELP-RES Reference: WF-FE-S-HS-NAME Where the student was granted a high school diploma is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-INT Header A 0010STUDENT INTEREST-LOANS/WORK NXH The student's interest in financial aid from student loan and work programs is collected on thefederal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-INT 1 0000 Yes The student's interest in financial aid from student loan and work programs is collected on thefederal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-INT 2 0000 No The student's interest in financial aid from student loan and work programs is collected on thefederal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-INT 3 0000 Don't know The student's interest in financial aid from student loan and work programs is collected on thefederal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-INV Header A 0070STUDENT INVESTMENT ASSETS NN The net worth of the student's non-home real estate and other investments is combined with other available assets in the calculation of student contribution (SC).
HWF23FEDDWF-FE-S-IRS-AGI Header 0000STUDENT INVESTMENT ASSETS NN
HWF23FEDDWF-FE-S-MALE Header A 0010STUDENT MALE NXH Reference: WF-FE-A-SSREG
VWF23FEDDWF-FE-S-MALE 1 0000 Male Reference: WF-FE-A-SSREG estate and other investments is combined with other available assets in the calculation of student contribution (SC). student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-MALE 2 0000 Female Reference: WF-FE-A-SSREG estate and other investments is combined with other available assets in the calculation of student contribution (SC). student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-MAR Header A 0010STUDENT MARITAL STATUS NXH The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MAR 1 0000 Single The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MAR 2 0000 Married The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MAR 3 0000 Separated The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MAR 4 0000 Divorced/Widowed The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-MAR-DATE Header A 0060STUDENT MARITAL STATUS DATE NN Reference: WF-FE-S-MAR
HWF23FEDDWF-FE-S-MT-LUNCH Header A 0010STUDENT MEANS-TESTED LUNCH PGM NXH Reference: WF-FE-S-MT-SSI
VWF23FEDDWF-FE-S-MT-LUNCH 1 0000 Received lunch pgm Reference: WF-FE-S-MT-SSI calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MT-LUNCH 2 0000 Did not recv lunch Reference: WF-FE-S-MT-SSI calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-MT-SNAP Header A 0010STUDENT MEANS-TESTED SUPP NUTR NXH Reference: WF-FE-S-MT-SSI
VWF23FEDDWF-FE-S-MT-SNAP 1 0000 Received SNAP Reference: WF-FE-S-MT-SSI calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MT-SNAP 2 0000 Did not receive SNAP Reference: WF-FE-S-MT-SSI calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-MT-SSI Header A 0010STUDENT MEANS-TESTED SSI NXH The student's receipt of means-tested benefits (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-MT-SSI 1 0000 Received SSI The student's receipt of means-tested benefits (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-MT-SSI 2 0000 Did not receive SSI The student's receipt of means-tested benefits (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
HWF23FEDDWF-FE-S-MT-TANF Header A 0010STUDENT MEANS-TESTED TANF NXH Reference: WF-FE-S-MT-SSI
VWF23FEDDWF-FE-S-MT-TANF 1 0000 Received TANF Reference: WF-FE-S-MT-SSI (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-MT-TANF 2 0000 Did not receive TANF Reference: WF-FE-S-MT-SSI (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
HWF23FEDDWF-FE-S-MT-WIC Header A 0010STUDENT MEANS-TESTED WIC NXH Reference: WF-FE-S-MT-SSI
VWF23FEDDWF-FE-S-MT-WIC 1 0000 Received WIC Reference: WF-FE-S-MT-SSI (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-MT-WIC 2 0000 Did not receive WIC Reference: WF-FE-S-MT-SSI (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
HWF23FEDDWF-FE-S-RES Header A 0020STUDENT STATE OF RESIDENCE NXH WWSYSVRDWF-HELP-RES The student's state of legal residence is used in calculating state taxes, which are treated as an allowance against income in the calculation of student contribution (SC). The effective date of residence, or the student's statement that he/she has held their current place of residence for at least five years, documents the student's state oflegal residence.
HWF23FEDDWF-FE-S-RES-5YR Header A 0010STUDENT FIVE-YEAR RESIDENCE NXH Reference: WF-FE-S-RES
VWF23FEDDWF-FE-S-RES-5YR 1 0000 Five-year residence Reference: WF-FE-S-RES calculating state taxes, which are treated as an allowance against income in the calculation of student contribution (SC). The effective date of residence, or the student's statement that he/she has held their current place of residence for at least five years, documents the student's state oflegal residence.
VWF23FEDDWF-FE-S-RES-5YR 2 0000 <Five-year residence Reference: WF-FE-S-RES calculating state taxes, which are treated as an allowance against income in the calculation of student contribution (SC). The effective date of residence, or the student's statement that he/she has held their current place of residence for at least five years, documents the student's state oflegal residence.
HWF23FEDDWF-FE-S-RES-DATE Header A 0060STUDENT STATE RESIDENCE DATE NN Reference: WF-FE-S-RES
HWF23FEDDWF-FE-S-SCHED1 Header A 0010STUDENT FILED SCHED 1 QUESTION NXH
VWF23FEDDWF-FE-S-SCHED1 1 0000 Did not file Sched 1
VWF23FEDDWF-FE-S-SCHED1 2 0000 Filed Schedule 1
VWF23FEDDWF-FE-S-SCHED1 3 0000 Unknown if Sched 1
HWF23FEDDWF-FE-S-SP-INC Header A 0070SPOUSE WORK INCOME NN Reference: WF-FE-S-ST-INC
HWF23FEDDWF-FE-S-ST-INC Header A 0070STUDENT WORK INCOME NN The student's and spouse's income from work are used in calculating FICA taxes, which are treated as an adjustment to income in the calculation of student contribution (SC). In addition, they may be used to derive an assumed adjusted gross incomeif the student is not a tax filer. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-ACTV Header A 0010STUDENT ACTIVE DUTY TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is on active duty in the US Armed Forces. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-ACTV 1 0000 Active duty There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is on active duty in the US Armed Forces. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-ACTV 2 0000 Not active duty There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is on active duty in the US Armed Forces. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-CHL Header A 0010STUDENT CHILD DEPENDENTS TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependent children. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-CHL 1 0000 Has child dependents There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependent children. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-CHL 2 0000 Has no dependents There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependent children. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-DEP Header A 0010STUDENT OTHER DEPENDENTS TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependents other thana spouse or children. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-DEP 1 0000 Has other dependents There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependents other thana spouse or children. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-DEP 2 0000 Has no dependents There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependents other thana spouse or children. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-DOB Header A 0010STUDENT DATE OF BIRTH TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student will be 24 years of age before the calendar year in which the award year begins. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-DOB 1 0000 DOB before 1/1/1996 There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student will be 24 years of age before the calendar year in which the award year begins. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-DOB 2 0000 DOB after 12/31/1995 There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student will be 24 years of age before the calendar year in which the award year begins. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-EMAN Header A 0010STUDENT EMANCIPATED MINOR TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an emancipated minor. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-EMAN 1 0000 Emancipated minor There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an emancipated minor. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-EMAN 2 0000 Not emancipated There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an emancipated minor. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-GRAD Header A 0010STUDENT GRADUATE TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in a graduate-level academic program. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-GRAD 1 0000 Grad/Professional There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in a graduate-level academic program. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-GRAD 2 0000 Undergraduate There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in a graduate-level academic program. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-GUAR Header A 0010STUDENT GUARDIANSHIP TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in legal guardianship. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-GUAR 1 0000 In guardianship There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in legal guardianship. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-GUAR 2 0000 Not in guardianship There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in legal guardianship. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-HMLS Header A 0010STUDENT HOMELESSNESS TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is homeless or self-supporting and at risk of becoming homeless. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-HMLS 1 0000 Homeless or at risk There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is homeless or self-supporting and at risk of becoming homeless. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-HMLS 2 0000 Not homeless There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is homeless or self-supporting and at risk of becoming homeless. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-MAR Header A 0010STUDENT MARITAL TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is married. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-MAR 1 0000 Married There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is married. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-MAR 2 0000 Not married There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is married. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-ORPH Header A 0010STUDENT ORPHAN/WARD TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an orphan, in foster care, or a ward of the court. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-ORPH 1 0000 Orphan/ward of court There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an orphan, in foster care, or a ward of the court. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-ORPH 2 0000 Not an orphan/ward There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an orphan, in foster care, or a ward of the court. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-UYHU Header A 0010STUDENT UNACC YOUTH (HUD) TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by an emergency shelter program financed by the US Department of Housing and UrbanDevelopment. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-UYHU 1 0000 Unaccomp youth (HUD) There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by an emergency shelter program financed by the US Department of Housing and UrbanDevelopment. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-UYHU 2 0000 Not unaccomp youth There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by an emergency shelter program financed by the US Department of Housing and UrbanDevelopment. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-UYSD Header A 0010STUDENT UNACC YOUTH (SDL) TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by the high school or school district homeless liaison. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-UYSD 1 0000 Unaccomp youth (Sch) There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by the high school or school district homeless liaison. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-UYSD 2 0000 Not unaccomp youth There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by the high school or school district homeless liaison. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-VET Header A 0010STUDENT VETERAN TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is a veteran of the US Armed Forces. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-VET 1 0000 A veteran There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is a veteran of the US Armed Forces. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-VET 2 0000 Not a veteran There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is a veteran of the US Armed Forces. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-U-CSUP Header A 0070STUDENT UTX CHILD SUPPORT RCVD NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-DST-PEN Header A 0070STU IRS UNTXD IRA DIST/PENS NN
HWF23FEDDWF-FE-S-U-INT Header A 0070STUDENT UTX INTEREST INCOME NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-IRA Header A 0070STUDENT UTX IRA PAYMENTS NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-LIV Header A 0070STUDENT UTX LIVING ALLOWANCES NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-MONEY Header A 0070STUDENT UTX MONEY RECEIVED NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-OTHER Header A 0070STUDENT UTX OTHER UNTAXED INC NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-PEN Header A 0070STUDENT UTX PENSION PAYMENTS NN The student's untaxed income components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-U-VET Header A 0070STUDENT UTX VET NON-ED BENEFIT NN Reference: WF-FE-S-U-PEN collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-YR-COL Header A 0010STUDENT YEAR IN COLLEGE NXH The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 0 0000 Freshman The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 1 0000 Freshman with prev The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 2 0000 Sophomore The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 3 0000 Junior The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 4 0000 Senior The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 5 0000 > 4th year undergrad The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 6 0000 1st year grad/prof The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 7 0000 > 1st year grad/prof The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
HWF23FEDDWF-FE-SSN Header A 0090STUDENT SOCIAL SECURITY NUMBER NN The student's social security number is used by the Central Processing System (CPS) in performing matches with various government agency files.
HWF23FEDDWF-FE-U-CSUP Header 0000STUDENT SOCIAL SECURITY NUMBER NN
==========================================
= WFCPS23D
==========================================
HWFCPS23DWF-CP-A-DEP Header A 0010DEPENDENCY STATUS 'T'XXXXXXXXXXX NFH WWSYSVRDWF-CAL-DEP Reference: WF-2223-FEDERAL.WF-FE-C-DEP
HWFCPS23DWF-CP-A-FC1 Header P 0080PRIMARY FC ZZ,ZZZ,ZZ9 NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFCPS23DWF-CP-A-FC2 Header P 0080SECONDARY FC ZZ,ZZZ,ZZ9 NN Reference: WF-2223-FEDERAL.WF-FE-C-FC2
HWFCPS23DWF-CP-A-FISAP Header P 0080FISAP INCOME ZZ,ZZZ,ZZ9 NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1-FISAP
HWFCPS23DWF-CP-A-PANAL Header A 0010CALCULATION ANALYSIS 'T'XXXXXXX NXH WWSYSVRDWF-CAL-ANAL The parent calculation analysis is determined frominformation collected on the financial aid application and reported by the CPS as part of the calculation formula.
HWFCPS23DWF-CP-A-PC Header PS0070PARENT CONTRIBUTION Z,ZZZ,ZZ9- NN The parent contribution for the student is derivedfrom the parent total contribution and the number in college.
HWFCPS23DWF-CP-A-PCA Header PS0070PC FROM ASSETS Z,ZZZ,ZZ9- NN The parent contribution from assets is the portionof the parent contribution for the student attributable to asset sources. It is derived fromasset information reported on the financial aid application.
HWFCPS23DWF-CP-A-PCI Header PS0070PC FROM INCOME Z,ZZZ,ZZ9- NN The parent contribution from income is the portionof the parent contribution for the student that isattributable to income sources. It is derived from income and expense information reported on the financial aid application.
HWFCPS23DWF-CP-A-SANAL Header A 0010CALCULATION ANALYSIS 'T'XXXXXXX NXH WWSYSVRDWF-CAL-ANAL The student calculation analysis is determined from information collected on the financial aid application and reported by the CPS as part of the calculation formula.
HWFCPS23DWF-CP-A-SC Header PS0070STUDENT CONTRIBUTION Z,ZZZ,ZZ9- NN The student contribution for the student is derived from the student total contribution and the number in college.
HWFCPS23DWF-CP-A-SCA Header PS0070SC FROM ASSETS Z,ZZZ,ZZ9- NN The student contribution from assets is the portion of the student contribution for the student attributable to asset sources. It is derived from asset information reported on the financial aid application.
HWFCPS23DWF-CP-A-SCI Header PS0070SC FROM INCOME Z,ZZZ,ZZ9- NN The student contribution from income is the portion of the student contribution for the student that is attributable to income sources. It is derived from income and expense information reported on the financial aid application.
HWFCPS23DWF-CP-A-VER Header A 0010VERIFICATION SELECTION NXH WF23FEDDWF-FE-C-VER Reference: WF-2223-FEDERAL.WF-FE-C-VER
HWFCPS23DWF-CP-C-DEF-OVR Header A 0010LOAN DEFAULT OVERRIDE UFE The financial aid administrator may choose to override the NSLDS-reported loan default status for a student.
VWFCPS23DWF-CP-C-DEF-OVR Y 0000 Override dflt status The financial aid administrator may choose to override the NSLDS-reported loan default status for a student. It is derived from income and expense information reported on the financial aid application. eligibility for some financial aid. This field may not be corrected to blank. other untaxed income, and other money received. This field may not be corrected to blank.
HWFCPS23DWF-CP-COLLEGE Header A 0060APPLICATION COLLEGE UN Reference: WF-2223-FEDERAL.WF-FE-A-COLLEGE
HWFCPS23DWF-CP-DRN Header A 0040DRN UN The student's personal identification number for authorizing a "change of institution" request. To initiate a change of institution -- request an ISIR for an institution not currently specifiedon the ISIR -- set the Change of Institution fieldto Y and supply the student's DRN and the destination College code.
HWFCPS23DWF-CP-FED-ID Header A 0130FEDERAL ID XXXXXXXXX^XX^XX CN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFCPS23DWF-CP-FED-ID1 Header A 0090FEDERAL ID (SSN) CN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFCPS23DWF-CP-FED-ID2 Header A 0020FEDERAL ID (LAST NAME) CN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFCPS23DWF-CP-FED-ID3 Header A 0020FEDERAL ID (TRANSACTION) CN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFCPS23DWF-CP-RP-A-AWARD Header P 0052PELL ACK TOTAL AWARD ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-PELL-COD The accepted total award amount is included in thePell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-COST Header P 0050PELL ACK BUDGET ZZ,ZZ9 FN Include: WF-CPS-RPT-PELL-COD The accepted 9-month educational cost budget is included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-DISB Header P 0052PELL ACK TOTAL DISBMTS ZZ,ZZZ.99 FN Include: WF-CPS-RPT-PELL-COD The accepted total disbursements are included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-ENR-DATE Header D 0000PELL ACK ENROLLMENT DATE MM/DD/YYYY FN Include: WF-CPS-RPT-PELL-COD The accepted enrollment date is included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-FED-TRAN Header A 0020PELL ACK FEDERAL TRAN FN Include: WF-CPS-RPT-PELL-COD The accepted transaction number from the Federal ID is included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-VER Header A 0010PELL ACK VERIFICATION FFH WFVER23DWF-VE-VER-FED Include: WF-CPS-RPT-PELL-COD The accepted verification status is included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-ACT Header A 0010PELL GRANT ACTION CFE Pell Grant originations are normally reported to COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-ACT H 0000 Hold Pell Grant originations are normally reported to COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-ACT R 0000 Re-submit Pell Grant originations are normally reported to COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-ACT-DATE Header D 0000PELL GRANT ACTION DATE MM/DD/YYYY FN Reference: WF-CP-RP-ACT
HWFCPS23DWF-CP-RP-ACT-RSN Header A 0020PELL GRANT ACTION REASON CCE Reference: WF-CP-RP-ACT
VWFCPS23DWF-CP-RP-ACT-RSN ND 0000 COD negative disb Reference: WF-CP-RP-ACT COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-ACT-RSN RJ 0000 Rejected report Reference: WF-CP-RP-ACT COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-AEI Header A 0010PELL ADDITIONAL ELIG INDICATOR FXH The Additional Eligibility Indicator is set to yeswhen a second Pell Grant is awarded to an elibiglestudent. It is transmitted to COD with the updated Grant Origination, and serves to document what would otherwise appear to be an overaward.
VWFCPS23DWF-CP-RP-AEI N 0000 No The Additional Eligibility Indicator is set to yeswhen a second Pell Grant is awarded to an elibiglestudent. It is transmitted to COD with the updated Grant Origination, and serves to document what would otherwise appear to be an overaward. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-AEI Y 0000 Yes The Additional Eligibility Indicator is set to yeswhen a second Pell Grant is awarded to an elibiglestudent. It is transmitted to COD with the updated Grant Origination, and serves to document what would otherwise appear to be an overaward. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-D-ACK Header A 0010PELL DISBURSMT ACKNOWLEDGMENT FFH Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded.
VWFCPS23DWF-CP-RP-D-ACK A 0000 Accepted Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-D-ACK C 0000 Accepted w/correctns Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-D-ACK D 0000 Duplicate rejected Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-D-ACK E 0000 Error rejected Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-D-ACK Y 0000 Updated to match YTD Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-D-ACK-DATE Header D 0000PELL DISBURSMT ACKNWLDGMT DATEMM/DD/YYYY FN Reference: WF-CP-RP-D-ACK
HWFCPS23DWF-CP-RP-O-ACK Header A 0010PELL ORIGNATION ACKNOWLEDGMENT FFH Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded.
VWFCPS23DWF-CP-RP-O-ACK A 0000 Accepted Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-O-ACK C 0000 Accepted w/correctns Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-O-ACK D 0000 Duplicate not proc Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-O-ACK E 0000 Error rejected Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-O-ACK Y 0000 Updated to match YTD Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-O-ACK-DATE Header D 0000PELL ORGNTION ACKNWLDGMNT DATEMM/DD/YYYY FN Reference: WF-CP-RP-O-ACK
HWFCPS23DWF-CP-RP-R-AWARD Header P 0052PELL REPORTED TOTAL AWARD ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-PELL-FAO The student's total award amount is included in the Pell Grant Origination record.
HWFCPS23DWF-CP-RP-R-COST Header P 0050PELL REPORTED BUDGET ZZ,ZZ9 FN Include: WF-CPS-RPT-PELL-FAO The student's 9-month educational cost budget is included in the Pell Grant Origination.
HWFCPS23DWF-CP-RP-R-DISB Header P 0052PELL REPORTED TOTAL DISBMTS ZZ,ZZZ.99 FN Include: WF-CPS-RPT-PELL-FAO The total disbursements reflects all of the student's reported Pell Grant Disbursements.
HWFCPS23DWF-CP-RP-R-ENR-DATE Header D 0000PELL REPORTED ENROLLMENT DATE MM/DD/YYYY FN Include: WF-CPS-RPT-PELL-FAO The student's enrollment date for the aid year is included in the Pell Grant Origination.
HWFCPS23DWF-CP-RP-R-FED-TRAN Header A 0020PELL REPORTED FEDERAL TRAN FN Include: WF-CPS-RPT-PELL-FAO The transaction number from the student's Federal ID is included in the Pell Grant Origination.
HWFCPS23DWF-CP-RP-R-VER Header A 0010PELL REPORTED VERIFICATION FFH WFVER23DWF-VE-VER-FED Include: WF-CPS-RPT-PELL-FAO The student's federal verification status is included in the Pell Grant Origination.
HWFCPS23DWF-CP-RP-RPT-DATE Header D 0000PELL GRANT REPORT DATE MM/DD/YYYY FN Whenever Pell Grant eligibility, award, or disbursement information is reported to COD, the date of the data submission is captured in FINANCIER.
HWFCPS23DWF-CP-RP-SCH-GRANT Header P 0050PELL SCHEDULED GRANT ZZ,ZZZ FN The Scheduled Grant is determined by the CPS basedon information submitted in the Grant Origination record, and is returned to the institution in the Grant Origination Acknowledgment. what would otherwise appear to be an overaward.
HWFCPS23DWF-CP-RT1-A-AWARD Header P 0052TEACH ACK TOTAL AWARD ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-TCH1-COD The accepted total award amount is included in theTEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-A-DISB Header P 0052TEACH ACK TOTAL DISBMTS ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-TCH1-COD The accepted total disbursements are included in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-A-ENR-DATEHeader D 0000TEACH ACK ENROLLMENT DATE MM/DD/YYYY FN Include: WF-CPS-RPT-TCH1-COD The accepted enrollment date is included in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-A-FED-TRANHeader A 0020TEACH ACK FEDERAL TRAN FN Include: WF-CPS-RPT-TCH1-COD The accepted transaction number from the Federal ID is included in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-A-GRANT Header N 0010TEACH ACK GRANT NUMBER FN Include: WF-CPS-RPT-TCH1-COD The Grant Number that identified the award in the TEACH Grant Origination and associated Disbursements is returned in Origination and Disbursement Acknowledgments.
HWFCPS23DWF-CP-RT1-A-YR-COL Header A 0010TEACH ACK CLASS LEVEL FFH WWSYSVRDWF-PGM-CUR-YR-COL Include: WF-CPS-RPT-TCH1-COD The accepted class level is included in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-ACT Header A 0010TEACH GRANT ACTION CFE WFCPS23DWF-CP-RP-ACT TEACH Grant originations are normally reported to COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. TEACH disbursements are normally reported to COD as soon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The TEACH Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RT1-ACT-DATE Header D 0000TEACH GRANT ACTION DATE MM/DD/YYYY FN Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT1-ACT-RSN Header A 0020TEACH GRANT ACTION REASON CCE WFCPS23DWF-CP-RP-ACT-RSN Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT1-ATS-ELEC Header A 0010TEACH ATS ELECTRONIC INDICATOR FXH Reference: WF-CP-RT1-ATS-ID on information submitted in the Grant Origination record, and is returned to the institution in the Grant Origination Acknowledgment. what would otherwise appear to be an overaward.
VWFCPS23DWF-CP-RT1-ATS-ELEC Y 0000 Yes Reference: WF-CP-RT1-ATS-ID on information submitted in the Grant Origination record, and is returned to the institution in the Grant Origination Acknowledgment. what would otherwise appear to be an overaward. TEACH disbursements are normally reported to COD as soon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The TEACH Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RT1-ATS-ID Header A 0230TEACH AGREEMENT TO SERVE ID FXH The TEACH Agreement To Serve is collected by COD. If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-ATS-LINK Header A 0010TEACH ATS LINK FXH Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-LINK N 0000 No Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-LINK Y 0000 Yes Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-ATS-STAT Header A 0010TEACH ATS STATUS FXH Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-STAT A 0000 Accepted Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-STAT C 0000 Closed Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-STAT P 0000 Pending Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-STAT R 0000 Rejected/missing Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-D-ACK Header A 0010TEACH DISBURSMT ACKNOWLEDGMENT FFH WFCPS23DWF-CP-RP-D-ACK Once a TEACH Grant disbursement is reported to COD, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded.
HWFCPS23DWF-CP-RT1-D-ACK-DATEHeader D 0000TEACH DISBURSMT ACKNWLGMT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-D-ACK
HWFCPS23DWF-CP-RT1-FY Header A 0040TEACH FISCAL YEAR FXH Each TEACH Grant is associated with a fiscal year.If the school's calendar is defined to associate some of the disbursements in one fiscal year and some in another, eligible students may receive a TEACH Grant in each of the fiscal years.
HWFCPS23DWF-CP-RT1-O-ACK Header A 0010TEACH ORIGINATION ACKNOWLDGMNT FFH WFCPS23DWF-CP-RP-O-ACK Once a TEACH Grant origination is reported to COD, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded.
HWFCPS23DWF-CP-RT1-O-ACK-DATEHeader D 0000TEACH ORIGINATION ACKNWMT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-O-ACK
HWFCPS23DWF-CP-RT1-R-AWARD Header P 0052TEACH REPORTED TOTAL AWARD ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-TCH1-FAO The student's total award amount is included in the TEACH Grant Origination.
HWFCPS23DWF-CP-RT1-R-DISB Header P 0052TEACH REPORTED TOTAL DISBMTS ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-TCH1-FAO The total disbursements reflects all of the student's reported TEACH Grant Disbursements.
HWFCPS23DWF-CP-RT1-R-ENR-DATEHeader D 0000TEACH REPORTED ENROLLMENT DATEMM/DD/YYYY FN Include: WF-CPS-RPT-TCH1-FAO The student's enrollment date for the aid year is included in the TEACH Grant Origination.
HWFCPS23DWF-CP-RT1-R-FED-TRANHeader A 0020TEACH REPORTED FEDERAL TRAN FN Include: WF-CPS-RPT-TCH1-FAO The transaction number from the student's Federal ID is included in the TEACH Grant Origination.
HWFCPS23DWF-CP-RT1-R-GRANT Header N 0010TEACH REPORTED GRANT NUMBER FN Include: WF-CPS-RPT-TCH1-FAO The Grant Number, which must be unique by class level, identifies the award in the TEACH Grant Origination and associated Disbursements.
HWFCPS23DWF-CP-RT1-R-YR-COL Header A 0010TEACH REPORTED CLASS LEVEL FFH WWSYSVRDWF-PGM-CUR-YR-COL Include: WF-CPS-RPT-TCH1-FAO The student's class level is included in the TEACHGrant Origination.
HWFCPS23DWF-CP-RT1-RPT-DATE Header D 0000TEACH GRANT REPORT DATE MM/DD/YYYY FN Whenever TEACH Grant eligibility, award, or disbursement information is reported to COD, the date of the data submission is captured in FINANCIER.
HWFCPS23DWF-CP-RT1-SCH-GRANT Header P 0050TEACH SCHEDULED GRANT ZZ,ZZZ FN Reference: WF-CP-RP-SCH-GRANT If the school's calendar is defined to associate some of the disbursements in one fiscal year and some in another, eligible students may receive a TEACH Grant in each of the fiscal years.
HWFCPS23DWF-CP-RT2-A-AWARD Header P 0052TEACH ACK TOTAL AWARD ZZ,ZZZ.ZZ FN Reference: WF-CP-RT1-A-AWARD
HWFCPS23DWF-CP-RT2-A-DISB Header P 0052TEACH ACK TOTAL DISBMTS ZZ,ZZZ.ZZ FN Reference: WF-CP-RT1-A-DISB
HWFCPS23DWF-CP-RT2-A-ENR-DATEHeader D 0000TEACH ACK ENROLLMENT DATE MM/DD/YYYY FN Reference: WF-CP-RT1-A-ENR-DATE
HWFCPS23DWF-CP-RT2-A-FED-TRANHeader A 0020TEACH ACK FEDERAL TRAN FN Reference: WF-CP-RT1-A-FED-TRAN
HWFCPS23DWF-CP-RT2-A-GRANT Header N 0010TEACH ACK GRANT NUMBER FN Reference: WF-CP-RT1-A-GRANT
HWFCPS23DWF-CP-RT2-A-YR-COL Header A 0010TEACH ACK CLASS LEVEL FFH WWSYSVRDWF-PGM-CUR-YR-COL Reference: WF-CP-RT1-A-YR-COL
HWFCPS23DWF-CP-RT2-ACT Header A 0010TEACH GRANT ACTION CFE WFCPS23DWF-CP-RP-ACT Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT2-ACT-DATE Header D 0000TEACH GRANT ACTION DATE MM/DD/YYYY FN Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT2-ACT-RSN Header A 0020TEACH GRANT ACTION REASN CCE WFCPS23DWF-CP-RP-ACT-RSN Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT2-ATS-ELEC Header A 0010TEACH ATS ELECTRONIC INDICATOR FXH WFCPS23DWF-CP-RT1-ATS-ELEC Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT2-ATS-ID Header A 0230TEACH AGREEMENT TO SERVE ID FXH Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT2-ATS-LINK Header A 0010TEACH ATS LINK FXH WFCPS23DWF-CP-RT1-ATS-LINK Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT2-ATS-STAT Header A 0010TEACH ATS STATUS FXH WFCPS23DWF-CP-RT1-ATS-STAT Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT2-D-ACK Header A 0010TEACH DISBURSMT ACKNOWLEDGMENT FFH WFCPS23DWF-CP-RP-D-ACK Reference: WF-CP-RT1-D-ACK
HWFCPS23DWF-CP-RT2-D-ACK-DATEHeader D 0000TEACH DISBURSMT ACKNWLGMT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-D-ACK
HWFCPS23DWF-CP-RT2-FY Header A 0040TEACH FISCAL YEAR FXH Each TEACH Grant is associated with a fiscal year.If the school's calendar is defined to associate some of the disbursements in one fiscal year and some in another, eligible students may receive a TEACH Grant in each of the fiscal years.
HWFCPS23DWF-CP-RT2-O-ACK Header A 0010TEACH ORIGINATION ACKNOWLDGMNT FFH WFCPS23DWF-CP-RP-O-ACK Reference: WF-CP-RT1-O-ACK
HWFCPS23DWF-CP-RT2-O-ACK-DATEHeader D 0000TEACH ORIGINATION ACKNWMT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-O-ACK
HWFCPS23DWF-CP-RT2-R-AWARD Header P 0052TEACH REPORTED TOTAL AWARD ZZ,ZZZ.ZZ FN Reference: WF-CP-RT1-R-AWARD
HWFCPS23DWF-CP-RT2-R-DISB Header P 0052TEACH REPORTED TOTAL DISBMTS ZZ,ZZZ.ZZ FN Reference: WF-CP-RT1-R-DISB
HWFCPS23DWF-CP-RT2-R-ENR-DATEHeader D 0000TEACH REPORTED ENROLLMENT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-R-ENR-DATE
HWFCPS23DWF-CP-RT2-R-FED-TRANHeader A 0020TEACH REPORTED FEDERAL TRAN FN Reference: WF-CP-RT1-R-FED-TRAN
HWFCPS23DWF-CP-RT2-R-GRANT Header N 0010TEACH REPORTED GRANT NUMBER FN Reference: WF-CP-RT1-R-GRANT
HWFCPS23DWF-CP-RT2-R-YR-COL Header A 0010TEACH REPORTED CLASS LEVEL FFH WWSYSVRDWF-PGM-CUR-YR-COL Reference: WF-CP-RT1-R-YR-COL
HWFCPS23DWF-CP-RT2-RPT-DATE Header D 0000TEACH GRANT REPORT DATE MM/DD/YYYY FN Reference: WF-CP-RT1-RPT-DATE
HWFCPS23DWF-CP-RT2-SCH-GRANT Header P 0050TEACH SCHEDULED GRANT ZZ,ZZZ FN Reference: WF-CP-RP-SCH-GRANT
HWFCPS23DWF-CPS-APPLICATION Header 0000CPS APPLICATION INFORMATION GN
HWFCPS23DWF-CPS-CORRECTION Header 0000EDE CORRECTION INFORMATION GN
HWFCPS23DWF-CPS-IDENTFICATIONHeader 0000CPS STUDENT IDENTIFICATION GN
HWFCPS23DWF-CPS-KEY Header A 0110CPS KEY KN The CPS key is comprised of FAO and the student's FINANCIER ID. This key is used in all CPS file accesss.
HWFCPS23DWF-CPS-RPT-PELL Header 0000PELL REPORTING INFORMATION GN As Pell Grant payment information is reported to COD and acknowledgment is received back, the status and dates of these events are recorded. This record of past actions allows FINANCIER to manage the reporting process.
HWFCPS23DWF-CPS-RPT-PELL-COD Header 0000PELL ACKNOWLEDGED INFORMATION GN Once Pell Grant payment information is submitted to COD, action is taken and notice returned. Information returned is captured for use in subsequent submissions; it is used to determine which students must be reported and to ensure thatduplicate information is not inadvertently sent.
HWFCPS23DWF-CPS-RPT-PELL-FAO Header 0000PELL REPORTED INFORMATION GN Periodically, Pell Grant payment information is submitted to COD. Pell Grant Originations are submitted at or ahead of the first disbursement, and are re-submitted when there is a change in thereported information. Pell Grant Disbursements are submitted when disbursements are made. Information reported is captured and used to determine when additional reports are appropriate.
HWFCPS23DWF-CPS-RPT-TCH1 Header 0000TEACH REPORTING INFORMATION GN As TEACH Grant payment information is reported to COD and acknowledgment is received back, the status and dates of these events are recorded. This record of past actions allows FINANCIER to manage the reporting process.
HWFCPS23DWF-CPS-RPT-TCH1-COD Header 0000TEACH ACKNOWLEDGED INFORMATION GN Once TEACH Grant payment information is submitted to COD, action is taken and notice returned. Information returned is captured for use in subsequent submissions; it is used to determine which students must be reported and to ensure thatduplicate information is not inadvertently sent.
HWFCPS23DWF-CPS-RPT-TCH1-FAO Header 0000TEACH REPORTED INFORMATION GN Periodically, TEACH Grant payment information is submitted to COD. TEACH Grant Originations are submitted at or ahead of the first disbursement, and are re-submitted when there is a change in thereported information. TEACH Grant Disbursements are submitted when disbursements are made. Information reported is captured and used to determine when additional reports are appropriate.
HWFCPS23DWF-CPS-RPT-TCH2 Header 0000TEACH REPORTING INFORMATION GN Reference: WF-CPS-RPT-TCH1
HWFCPS23DWF-CPS-RPT-TCH2-COD Header 0000TEACH ACKNOWLEDGED INFORMATION GN Reference: WF-CPS-RPT-TCH1-COD
HWFCPS23DWF-CPS-RPT-TCH2-FAO Header 0000TEACH REPORTED INFORMATION GN Reference: WF-CPS-RPT-TCH1-FAO
HWFCPS23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFCPS23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFCPS23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFCPS23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFCPS23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFCPS23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WFFED23D
==========================================
HWFFED23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFFED23DWF-FE-A-BLANKS Header A 2000BLANK FIELD INDICATORS FFH Fields left blank on the Institutional Student Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-A-BLANKS Y 0000 Field blank on FAFSA Fields left blank on the Institutional Student Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-A-SGN Header A 0010APPLICATION SIGNATURE(S) UFE WF23FEDDWF-FE-A-SGN 150 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-A-SGN-DATE Header D 0000APPLICATION SIGNATURE DATE MM/DD/YYYY UN A Reference: WF-2223-FEDERAL.WF-FE-A-SGN
HWFFED23DWF-FE-A-SSREG Header A 0010SELECTIVE SERVICE REGISTRATION UFE 022 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-A-SSREG Y 0000 SS reg requested 1 A Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM1-OVR Header A 0010ASSUMPTION 1 OVERRIDE UFE OA1 Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-F-ASM1-OVR N 0000 No Assum 1 override * Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM1-OVR Y 0000 Assum 1 override 1 Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM2-OVR Header A 0010ASSUMPTION 2 OVERRIDE UFE OA2 Reference: WF-2223-FEDERAL.WF-FE-F-ASM2-OVR
VWFFED23DWF-FE-F-ASM2-OVR N 0000 No Assum 2 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM2-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM2-OVR Y 0000 Assum 2 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM2-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM3-OVR Header A 0010ASSUMPTION 3 OVERRIDE NXH OA3 Reference: WF-2223-FEDERAL.WF-FE-F-ASM3-OVR
VWFFED23DWF-FE-F-ASM3-OVR N 0000 No Assum 3 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM3-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM3-OVR Y 0000 Assum 3 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM3-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM4-OVR Header A 0010ASSUMPTION 4 OVERRIDE NXH OA4 Reference: WF-2223-FEDERAL.WF-FE-F-ASM4-OVR
VWFFED23DWF-FE-F-ASM4-OVR N 0000 No Assum 4 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM4-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM4-OVR Y 0000 Assum 4 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM4-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM5-OVR Header A 0010ASSUMPTION 5 OVERRIDE NXH OA5 Reference: WF-2223-FEDERAL.WF-FE-F-ASM5-OVR
VWFFED23DWF-FE-F-ASM5-OVR N 0000 No Assum 5 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM5-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM5-OVR Y 0000 Assum 5 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM5-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM6-OVR Header A 0010ASSUMPTION 6 OVERRIDE NXH OA6 Reference: WF-2223-FEDERAL.WF-FE-F-ASM6-OVR
VWFFED23DWF-FE-F-ASM6-OVR N 0000 No Assum 6 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM6-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM6-OVR Y 0000 Assum 6 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM6-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-DEP-OVR Header A 0010DEPENDENCY OVERRIDE UFE 160 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-F-DEP-OVR C 0000 Cancel override 2 AC Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-DEP-OVR F 0000 Override failed 3 AC Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-DEP-OVR H 0000 Homeless youth det 1 4 AC Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-DEP-OVR I 0000 Independent override 1 AC Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-LOCK Header A 0010FEDERAL RECORD LOCK UFE A After reviewing a student's federal resource data,the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-LOCK L 0000 Application locked A After reviewing a student's federal resource data,the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-LOCK N 0000 App may be overlaid A After reviewing a student's federal resource data,the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-PROF-JUDG Header A 0010PROFESSIONAL JUDGMENT UFE 161 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-F-PROF-JUDG F 0000 Prof judgment failed 2 A Reference: WF-2223-FEDERAL. the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-PROF-JUDG Y 0000 Prof judgment 1 A Reference: WF-2223-FEDERAL. the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJ12-OVR Header A 0010REJECT 12 OVERRIDE NXH OR@ Reference: WF-2223-FEDERAL.WF-FE-F-REJ12-OVR
VWFFED23DWF-FE-F-REJ12-OVR N 0000 No Reject 12 ovrride * Reference: WF-2223-FEDERAL.WF-FE-F-REJ12-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJ12-OVR Y 0000 Reject 12 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJ12-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJ20-OVR Header A 0010REJECT 20 OVERRIDE NXH OR) Reference: WF-2223-FEDERAL.WF-FE-F-REJ20-OVR
VWFFED23DWF-FE-F-REJ20-OVR N 0000 No Reject 20 ovrride * Reference: WF-2223-FEDERAL.WF-FE-F-REJ20-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJ20-OVR Y 0000 Reject 20 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJ20-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJ21-OVR Header A 0010REJECT 21 OVERRIDE NXH OR! Reference: WF-2223-FEDERAL.WF-FE-F-REJ21-OVR
VWFFED23DWF-FE-F-REJ21-OVR N 0000 No Reject 21 ovrride * Reference: WF-2223-FEDERAL.WF-FE-F-REJ21-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJ21-OVR Y 0000 Reject 21 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJ21-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJ3-OVR Header A 0010REJECT 3 OVERRIDE NXH OR3 Reference: WF-2223-FEDERAL.WF-FE-F-REJ3-OVR
VWFFED23DWF-FE-F-REJ3-OVR N 0000 No Reject 3 override * Reference: WF-2223-FEDERAL.WF-FE-F-REJ3-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJ3-OVR Y 0000 Reject 3 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJ3-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJA-OVR Header A 0010REJECT A OVERRIDE NXH ORA Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-F-REJA-OVR N 0000 No Reject A override * Reference: WF-2223-FEDERAL. the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJA-OVR Y 0000 Reject A override 1 Reference: WF-2223-FEDERAL. the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJB-OVR Header A 0010REJECT B OVERRIDE NXH ORB Reference: WF-2223-FEDERAL.WF-FE-F-REJB-OVR
VWFFED23DWF-FE-F-REJB-OVR N 0000 No Reject B override * Reference: WF-2223-FEDERAL.WF-FE-F-REJB-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJB-OVR Y 0000 Reject B override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJB-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJC-OVR Header A 0010REJECT C OVERRIDE NXH ORC Reference: WF-2223-FEDERAL.WF-FE-F-REJC-OVR
VWFFED23DWF-FE-F-REJC-OVR N 0000 No Reject C override * Reference: WF-2223-FEDERAL.WF-FE-F-REJC-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJC-OVR Y 0000 Reject C override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJC-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJG-OVR Header A 0010REJECT G OVERRIDE NXH ORG Reference: WF-2223-FEDERAL.WF-FE-F-REJG-OVR
VWFFED23DWF-FE-F-REJG-OVR N 0000 No Reject G override * Reference: WF-2223-FEDERAL.WF-FE-F-REJG-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJG-OVR Y 0000 Reject G override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJG-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJJ-OVR Header A 0010REJECT J OVERRIDE NXH ORJ Reference: WF-2223-FEDERAL.WF-FE-F-REJJ-OVR
VWFFED23DWF-FE-F-REJJ-OVR N 0000 No Reject J override * Reference: WF-2223-FEDERAL.WF-FE-F-REJJ-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJJ-OVR Y 0000 Reject J override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJJ-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJK-OVR Header A 0010REJECT K OVERRIDE NXH ORK Reference: WF-2223-FEDERAL.WF-FE-F-REJK-OVR
VWFFED23DWF-FE-F-REJK-OVR N 0000 No Reject K override * Reference: WF-2223-FEDERAL.WF-FE-F-REJK-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJK-OVR Y 0000 Reject K override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJK-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJN-OVR Header A 0010REJECT N OVERRIDE NXH ORN Reference: WF-2223-FEDERAL.WF-FE-F-REJN-OVR
VWFFED23DWF-FE-F-REJN-OVR N 0000 No Reject N override * Reference: WF-2223-FEDERAL.WF-FE-F-REJN-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJN-OVR Y 0000 Reject N override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJN-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJW-OVR Header A 0010REJECT W OVERRIDE NXH ORW Reference: WF-2223-FEDERAL.WF-FE-F-REJW-OVR
VWFFED23DWF-FE-F-REJW-OVR N 0000 No Reject W override * Reference: WF-2223-FEDERAL.WF-FE-F-REJW-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJW-OVR Y 0000 Reject W override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJW-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-P-A-COOP Header P 0070PARENT AFI CO-OP EARNINGS 'B'Z,ZZZ,ZZ9 UN 112 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-A-CPAY Header P 0070PARENT AFI COMBAT PAY 'B'Z,ZZZ,ZZ9 UN 111 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-A-CSPD Header P 0070PARENT AFI CHILD SUPPORT PAID 'B'Z,ZZZ,ZZ9 UN 108 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-A-EDCR Header P 0070PARENT AFI EDUCATION CREDITS 'B'Z,ZZZ,ZZ9 UN 107 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-A-GRNT Header P 0070PARENT AFI GRANTS/SCHOLARSHIPS'B'Z,ZZZ,ZZ9 UN 110 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-A-WORK Header P 0070PARENT AFI NEED-BASED WORK 'B'Z,ZZZ,ZZ9 UN 109 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-AGI Header PS0070PARENT ADJUSTED GROSS INCOME 'B'Z,ZZZ,ZZ9 UN 100 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-BUS-FRM Header P 0070PARENT BUSINESS/FARM ASSETS 'B'Z,ZZZ,ZZ9 UN 106 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-CASH Header P 0070PARENT CASH ASSETS 'B'Z,ZZZ,ZZ9 UN 104 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-DLW Header A 0010PARENT DISLOCATED WORKER UFE WFFED23DWF-FE-S-DLW 099 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FAM-COL Header P 0010PARENT FAMILY IN COLLEGE 'B'9 UN 089 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FAM-SIZE Header P 0020PARENT FAMILY SIZE 'B'Z9 UN 088 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FED-TAX Header P 0060PARENT FEDERAL TAX 'B'ZZZ,ZZ9 UN 101 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FILE-STAT Header A 0010PARENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT 097 Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FILER Header A 0010PARENT TAX FILER UFE WFFED23DWF-FE-S-FILER 095 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FORM Header A 0010PARENT TAX FORM UFE WFFED23DWF-FE-S-FORM 096 AC Reference: WF-2223-FEDERAL.WF-FE-P-FILER
HWFFED23DWF-FE-P-INV Header P 0060PARENT INVESTMENT ASSETS 'B'ZZZ,ZZ9 UN 105 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-MAR Header A 0010PARENT MARITAL STATUS UFE 074 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR D 0000 Divorced 3 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR M 0000 Married/remarried 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR S 0000 Never married 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR U 0000 Unmarried/live tog 5 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR W 0000 Widowed 4 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR X 0000 Separated 3 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-MAR-DATE Header D 0000PARENT MARITAL STATUS DATE MM/YYYY UN 075 A Reference: WF-2223-FEDERAL.WF-FE-P-MAR
HWFFED23DWF-FE-P-MT-LUNCH Header A 0010PARENT MEANS-TESTED LUNCH PGM UFE WFFED23DWF-FE-S-MT-LUNCH 092 AC Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFFED23DWF-FE-P-MT-SNAP Header A 0010PARENT MEANS-TESTED SUPP NUTR UUE WFFED23DWF-FE-S-MT-SNAP 091 AC Reference: WF23FEDD.WF-FE-P-MT-SSI
HWFFED23DWF-FE-P-MT-SSI Header A 0010PARENT MEANS-TESTED SSI UFE WFFED23DWF-FE-S-MT-SSI 090 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-MT-TANF Header A 0010PARENT MEANS-TESTED TANF UFE WFFED23DWF-FE-S-MT-TANF 093 AC Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFFED23DWF-FE-P-MT-WIC Header A 0010PARENT MEANS-TESTED WIC UFE WFFED23DWF-FE-S-MT-WIC 094 AC Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFFED23DWF-FE-P-P1-INC Header PS0070PARENT 1 WORK INCOME 'B'Z,ZZZ,ZZ9 UN 102 Reference: WF23FEDD.
HWFFED23DWF-FE-P-P1-LEV Header A 0010PARENT 1 EDUCATIONAL LEVEL UFE WFFED23DWF-FE-P-P2-LEV 024 Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-P2-INC Header PS0070PARENT 2 WORK INCOME 'B'Z,ZZZ,ZZ9- UN 103 Reference: WF23FEDD.WF-FE-P-P1-INC
HWFFED23DWF-FE-P-P2-LEV Header A 0010PARENT 2 EDUCATIONAL LEVEL UFE 025 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
VWFFED23DWF-FE-P-P2-LEV C 0000 College or beyond 3 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
VWFFED23DWF-FE-P-P2-LEV E 0000 Middle Schl/Jr.High 1 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
VWFFED23DWF-FE-P-P2-LEV H 0000 High School 2 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
VWFFED23DWF-FE-P-P2-LEV U 0000 Other/Unknown 4 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
HWFFED23DWF-FE-P-RES Header A 0020PARENT STATE OF RESIDENCE UFE WWSYSVRDWF-HELP-RES 085 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-RES-5YR Header A 0010PARENT FIVE-YEAR RESIDENCE UFE WFFED23DWF-FE-S-RES-5YR 086 A Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFFED23DWF-FE-P-RES-DATE Header D 0000PARENT STATE RESIDENCE DATE MM/YYYY UN 087 A Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFFED23DWF-FE-P-SCHED1 Header A 0010PARENT FILED SCHEDULE 1 QUEST UFE WFFED23DWF-FE-S-SCHED1 098 AC
HWFFED23DWF-FE-P-U-CSUP Header P 0070PARENT UTX CHILD SUPPORT RCVD 'B'ZZ,ZZZ,ZZ9 UN 115 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-DST-PEN Header P 0070PAR UNTXD IRA DIST/PENS 'B'ZZ,ZZZ,ZZ9 UN 117 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-INT Header P 0070PARENT UTX INTEREST INCOME 'B'ZZ,ZZZ,ZZ9 UN 116 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-IRA Header P 0070PARENT UTX IRA PAYMENTS 'B'ZZ,ZZZ,ZZ9 UN 114 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-LIV Header P 0070PARENT UTX LIVING ALLOWANCES 'B'ZZ,ZZZ,ZZ9 UN 118 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-OTHER Header P 0070PARENT UTX OTHER UNTAXED INC 'B'ZZ,ZZZ,ZZ9 UN 120 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-PEN Header P 0070PARENT UTX PENSION PAYMENTS 'B'Z,ZZZ,ZZ9 UN 113 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-VET Header P 0070PARENT UTX VET NON-ED BENEFIT 'B'ZZ,ZZZ,ZZ9 UN 119 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-S-A-COOP Header P 0070STUDENT AFI CO-OP EARNINGS 'B'ZZ,ZZZ,ZZ9 UN 051 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-A-CPAY Header P 0070STUDENT AFI COMBAT PAY 'B'ZZ,ZZZ,ZZ9 UN 050 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-A-CSPD Header P 0070STUDENT AFI CHILD SUPPORT PAID'B'ZZ,ZZZ,ZZ9 UN 047 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-A-EDCR Header P 0070STUDENT AFI EDUCATION CREDITS 'B'ZZ,ZZZ,ZZ9 UN 046 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-A-GRNT Header P 0070STUDENT AFI GRANTS/SCHOLARSHPS'B'ZZ,ZZZ,ZZ9 UN 049 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-A-WORK Header P 0070STUDENT AFI NEED-BASED WORK 'B'ZZ,ZZZ,ZZ9 UN 048 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-AGI Header PS0070STUDENT ADJUSTED GROSS INCOME 'B'ZZ,ZZZ,ZZ9- UN 039 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-BACH-DEG Header A 0010STUDENT BACHELOR'S DEGREE UFE 031 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-BACH-DEG N 0000 No bach by 7/1/2022 2 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-BACH-DEG Y 0000 Bach deg by 7/1/2022 1 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-BUS-FRM Header P 0070STUDENT BUSINESS/FARM ASSETS 'B'Z,ZZZ,ZZ9 UN 045 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-CASH Header P 0070STUDENT CASH ASSETS 'B'Z,ZZZ,ZZ9 UN 043 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-CIT Header A 0010STUDENT CITIZENSHIP STATUS UFE 014 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-CIT E 0000 Eligible non-citizen 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-CIT I 0000 Inelgble non-citizen 3 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-CIT U 0000 U.S. citizen 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-DEG Header A 0010STUDENT DEGREE/CERTIFICATE UFE WF23FEDDWF-FE-S-DEG 033 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-DLW Header A 0010STUDENT DISLOCATED WORKER UFE 128 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DLW N 0000 Not dislocated 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DLW U 0000 Unknown 3 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DLW Y 0000 Dislocated worker 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-DRUG Header A 0010STUDENT DRUG CONVICTION UFE 023 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DRUG E 0000 Eligible 1 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DRUG N 0000 Not eligible/unknown 3 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DRUG P 0000 Temporarily inelig 2 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FAM-COL Header P 0010STUDENT FAMILY IN COLLEGE 'B'9 UN 122 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FAM-SIZE Header P 0020STUDENT FAMILY SIZE 'B'Z9 UN 121 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FED-TAX Header P 0070STUDENT FEDERAL TAX 'B'Z,ZZZ,ZZ9 UN 040 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FILE-STAT Header A 0010STUDENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT 037 Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FILER Header A 0010STUDENT TAX FILER UFE 035 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-FILER E 0000 Expect to file 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-FILER F 0000 Filed 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-FILER N 0000 Will not file 3 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FORM Header A 0010STUDENT TAX FORM UFE 036 AC Reference: WF-2223-FEDERAL.WF-FE-S-FILER
VWFFED23DWF-FE-S-FORM F 0000 Foreign form 3 AC Reference: WF-2223-FEDERAL.WF-FE-S-FILER
VWFFED23DWF-FE-S-FORM L 0000 Long form (1040) 1 AC Reference: WF-2223-FEDERAL.WF-FE-S-FILER
VWFFED23DWF-FE-S-FORM T 0000 Territorial form 4 AC Reference: WF-2223-FEDERAL.WF-FE-S-FILER
HWFFED23DWF-FE-S-HS-CITY Header A 0280STUDENT HIGH SCHOOL CITY UN 028 A Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFFED23DWF-FE-S-HS-GED Header A 0010STUDENT HS DIPLOMA/EQUIVALENT UFE 026 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-HS-GED D 0000 Diploma 1 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-HS-GED G 0000 GED 2 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-HS-GED H 0000 Home schooled 3 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-HS-GED N 0000 None of these 4 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-HS-NAME Header A 0500STUDENT HIGH SCHOOL NAME UN HSN A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-HS-STATE Header A 0020STUDENT HIGH SCHOOL STATE UFE WWSYSVRDWF-HELP-RES 029 A Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFFED23DWF-FE-S-HSG Header A 0010STUDENT HOUSING UFE A The housing status listed on the federal financialaid application for the institution is captured inFINANCIER. This information is not used in calculating the student's eligibility for federal financial aid.
VWFFED23DWF-FE-S-HSG C 0000 Campus housing 1 A The housing status listed on the federal financialaid application for the institution is captured inFINANCIER. This information is not used in calculating the student's eligibility for federal financial aid.
VWFFED23DWF-FE-S-HSG O 0000 Off-campus 3 A The housing status listed on the federal financialaid application for the institution is captured inFINANCIER. This information is not used in calculating the student's eligibility for federal financial aid.
VWFFED23DWF-FE-S-HSG P 0000 With parents 2 A The housing status listed on the federal financialaid application for the institution is captured inFINANCIER. This information is not used in calculating the student's eligibility for federal financial aid.
HWFFED23DWF-FE-S-INT Header A 0010STUDENT INTEREST-LOANS/WORK UFE 034 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-INT D 0000 Don't know 3 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-INT N 0000 Not interested 2 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-INT Y 0000 Interested in work 1 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-INV Header P 0070STUDENT INVESTMENT ASSETS 'B'Z,ZZZ,ZZ9 UN 044 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-MALE Header A 0010STUDENT MALE UFE 021 A Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
VWFFED23DWF-FE-S-MALE F 0000 Female 2 A Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
VWFFED23DWF-FE-S-MALE M 0000 Male 1 A Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
HWFFED23DWF-FE-S-MAR Header A 0010STUDENT MARITAL STATUS UFE 016 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR D 0000 Divorced 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR M 0000 Married 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR S 0000 Single/Unmarried 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR U 0000 Single/Unmarried 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR W 0000 Widowed 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR X 0000 Separated 3 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-MAR-DATE Header D 0000STUDENT MARITAL STATUS DATE MM/YYYY UN 017 A Reference: WF-2223-FEDERAL.WF-FE-S-MAR
HWFFED23DWF-FE-S-MT-LUNCH Header A 0010STUDENT MEANS-TESTED LUNCH PGM UFE 125 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-LUNCH N 0000 Did not recv lunch 2 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-LUNCH Y 0000 Received lunch pgm 1 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFFED23DWF-FE-S-MT-SNAP Header A 0010STUDENT MEANS-TESTED SUPP NUTR UFE 124 AC Reference: WF23FEDD.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-SNAP N 0000 Did not receive SNAP 2 AC Reference: WF23FEDD.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-SNAP Y 0000 Received SNAP 1 AC Reference: WF23FEDD.WF-FE-S-MT-SSI
HWFFED23DWF-FE-S-MT-SSI Header A 0010STUDENT MEANS-TESTED SSI UFE 123 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MT-SSI N 0000 Did not receive SSI 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MT-SSI Y 0000 Received SSI 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-MT-TANF Header A 0010STUDENT MEANS-TESTED TANF UFE 126 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-TANF N 0000 Did not receive TANF 2 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-TANF Y 0000 Received TANF 1 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFFED23DWF-FE-S-MT-WIC Header A 0010STUDENT MEANS-TESTED WIC UFE 127 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-WIC N 0000 Did not receive WIC 2 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-WIC Y 0000 Received WIC 1 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFFED23DWF-FE-S-RES Header A 0020STUDENT STATE OF RESIDENCE UFE WWSYSVRDWF-HELP-RES 018 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-RES-5YR Header A 0010STUDENT FIVE-YEAR RESIDENCE UFE 019 A Reference: WF-2223-FEDERAL.WF-FE-S-RES
VWFFED23DWF-FE-S-RES-5YR N 0000 <5-year residence 2 A Reference: WF-2223-FEDERAL.WF-FE-S-RES
VWFFED23DWF-FE-S-RES-5YR Y 0000 5-year residence 1 A Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFFED23DWF-FE-S-RES-DATE Header D 0000STUDENT STATE RESIDENCE DATE MM/YYYY UN 020 A Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFFED23DWF-FE-S-SCHED1 Header A 0010STUDENT FILED SCHED 1 QUEST UFE 038 AC
VWFFED23DWF-FE-S-SCHED1 1 0000 DID NOT FILE SCHED 1
VWFFED23DWF-FE-S-SCHED1 2 0000 FILED SCHEDULE 1
VWFFED23DWF-FE-S-SCHED1 3 0000 UNKNOWN SCHED 1
HWFFED23DWF-FE-S-SP-INC Header PS0070SPOUSE WORK INCOME 'B'Z,ZZZ,ZZ9- UN 042 AC Reference: WF-2223-FEDERAL.WF-FE-S-ST-INC
HWFFED23DWF-FE-S-ST-INC Header PS0070STUDENT WORK INCOME 'B'Z,ZZZ,ZZ9- UN 041 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-ACTV Header A 0010STUDENT ACTIVE DUTY TEST UFE 064 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-ACTV N 0000 Not active duty 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-ACTV Y 0000 Active duty 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-CHL Header A 0010STUDENT CHILD DEPENDENTS TEST UFE 066 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-CHL N 0000 Has no dependents 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-CHL Y 0000 Has dependents 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-DEP Header A 0010STUDENT OTHER DEPENDENTS TEST UFE 067 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-DEP N 0000 Has no dependents 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-DEP Y 0000 Has dependents 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-DOB Header A 0010STUDENT DATE OF BIRTH TEST UFE 061 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-DOB N 0000 DOB after 12/31/1995 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-DOB Y 0000 DOB before 1/1/1996 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-EMAN Header A 0010STUDENT EMANCIPATED MINOR TEST UFE 069 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-EMAN N 0000 Not emancipated 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-EMAN Y 0000 Emancipated minor 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-GRAD Header A 0010STUDENT GRADUATE TEST UFE 063 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-GRAD N 0000 Undergraduate 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-GRAD Y 0000 Grad/Professional 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-GUAR Header A 0010STUDENT GUARDIANSHIP TEST UFE 070 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-GUAR N 0000 Not in guardianship 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-GUAR Y 0000 In guardianship 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST UFE 073 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-HMLS N 0000 Not homeless 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-HMLS Y 0000 Homeless or at risk 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-MAR Header A 0010STUDENT MARITAL TEST UFE 062 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-MAR N 0000 Not married 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-MAR Y 0000 Married 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-ORPH Header A 0010STUDENT ORPHAN/WARD TEST UFE 068 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-ORPH N 0000 Not an orphan/ward 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-ORPH Y 0000 Orphan/ward of court 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-UYHU Header A 0010STUDENT UNACC YOUTH (HUD) TEST UFE 072 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-UYHU N 0000 Not unaccomp youth 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-UYHU Y 0000 Unaccomp youth (HUD) 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-UYSD Header A 0010STUDENT UNACC YOUTH (SDL) TEST UFE 071 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-UYSD N 0000 Not unaccomp youth 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-UYSD Y 0000 Unaccomp youth (Sch) 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-VET Header A 0010STUDENT VETERAN TEST UFE 065 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-VET N 0000 Not a veteran 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-VET Y 0000 A veteran 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-U-CSUP Header P 0070STUDENT UTX CHILD SUPPORT RCVD'B'Z,ZZZ,ZZ9 UN 054 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-DST-PEN Header P 0070STU UNTXD IRA DIST/PENS 'B'ZZ,ZZZ,ZZ9 UN 056 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-INT Header P 0070STUDENT UTX INTEREST INCOME 'B'Z,ZZZ,ZZ9 UN 055 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-IRA Header P 0070STUDENT UTX IRA PAYMENTS 'B'Z,ZZZ,ZZ9 UN 053 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-LIV Header P 0070STUDENT UTX LIVING ALLOWANCES 'B'Z,ZZZ,ZZ9 UN 057 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-MONEY Header P 0070STUDENT UTX MONEY RECEIVED 'B'Z,ZZZ,ZZ9 UN 060 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-OTHER Header P 0070STUDENT UTX OTHER UNTAXED INC 'B'Z,ZZZ,ZZ9 UN 059 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-PEN Header P 0070STUDENT UTX PENSION PAYMENTS 'B'Z,ZZZ,ZZ9 UN 052 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-U-VET Header P 0070STUDENT UTX VET NON-ED BENEFIT'B'Z,ZZZ,ZZ9 UN 058 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-YR-COL Header A 0020STUDENT YEAR IN COLLEGE UFE 032 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL FP 0000 Freshman with prev 1 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL FR 0000 Freshman 0 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL G+ 0000 Grad 7 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL GR 0000 Grad 6 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL JR 0000 Junior 3 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL SO 0000 Sophomore 2 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL SR 0000 Senior 4 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL U+ 0000 > 4th year undergrad 5 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FED-FAO-ACTION Header 0000FAO ACTIONS GN > 4th year undergrad 5 A
HWFFED23DWF-FED-PAR-ASSETS Header 0000PARENT ASSETS GN > 4th year undergrad 5 A
HWFFED23DWF-FED-PAR-ATTRIB Header 0000PARENT ATTRIBUTES GN > 4th year undergrad 5 A
HWFFED23DWF-FED-PAR-INCOME Header 0000PARENT INCOME GN > 4th year undergrad 5 A
HWFFED23DWF-FED-PAR-OTHER Header 0000PARENT OTHER INFORMATION GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-ACTION Header 0000STUDENT ACTIONS GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-ASSETS Header 0000STUDENT ASSETS GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-ATTRIB Header 0000STUDENT ATTRIBUTES GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-INCOME Header 0000STUDENT INCOME GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-OTHER Header 0000STUDENT OTHER INFORMATION GN > 4th year undergrad 5 A
HWFFED23DWF-FEDERAL-KEY Header A 0110FEDERAL KEY KN The Federal key is comprised of FAO and the student's FINANCIER ID. This key is used in all Federal file accesss.
HWFFED23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFFED23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFFED23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFFED23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFFED23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WFICO23D
==========================================
HWFICO23DWF-IC001 Header A 0030COMMENT 001 HN WHAT YOU MUST DO NOW (Use the checklist below to make sure that all of your issues are resolved.)
HWFICO23DWF-IC002 Header A 0030COMMENT 002 HN This SAR reflects your Financial Aid Administrator's use of professional judgment.
HWFICO23DWF-IC003 Header A 0030COMMENT 003 HN This SAR shows corrections to information that we previously entered incorrectly.
HWFICO23DWF-IC004 Header A 0030COMMENT 004 HN This SAR has been produced due to a change in your financial aid history information in the National Student Loan Data System (NSLDS)that may affect your eligibility for federal student aid.
HWFICO23DWF-IC005 Header A 0030COMMENT 005 HN We are unable to read all of the information on your FAFSA or SAR because it was damaged. Please review all of the items on this SAR and make any corrections as needed.
HWFICO23DWF-IC006 Header A 0030COMMENT 006 HN If you need to make corrections to your information, you may either make them online at https://fafsa.gov using your FSA ID, or by using this SAR. If you need additional help with your SAR, contact your school's financial aid office or visit https://fafsa. gov and click the "Help" icon on the FAFSA home page. If your mailing address or e-mail address changes, you can make the correction online or send in the correction on your SAR.
HWFICO23DWF-IC007 Header A 0030COMMENT 007 HN We previously indicated that your father's date of birth in Item 63 does not match his date of birth in the Social Security Administration's (SSA) records for his Social Security Number (SSN).If his SSN (Item 60) or date of birth is incorrect, you need to makea correction. If his SSN and date of birth are correct, your fathershould contact the SSA to make sure that they correct their records.The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC008 Header A 0030COMMENT 008 HN We previously indicated that your mother's date of birth in Item 67 does not match her date of birth in the Social Security Administration's (SSA) records for her Social Security Number (SSN).If her SSN (Item 64) or date of birth is incorrect, you need to makea correction. If her SSN and date of birth are correct, your mothershould contact the SSA to make sure that they correct their records.The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC009 Header A 0030COMMENT 009 HN We cannot process your FAFSA because of issues related to the Anti-Drug Abuse Act of 1988. To address these issues, you must contact us by telephone at 202-377-3389 within 30 days from the date of this letter.
HWFICO23DWF-IC010 Header A 0030COMMENT 010 HN For additional information about your FSEOG overpayment, your Financial Aid Administrator must access NSLDS.
HWFICO23DWF-IC011 Header A 0030COMMENT 011 HN The Social Security Administration (SSA) did not confirm the Social Security Number (SSN) you reported for your father in Item 60. If you believe that the SSN you reported is correct, your father must contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSNis incorrect, you must make the necessary correction.
HWFICO23DWF-IC012 Header A 0030COMMENT 012 HN The Social Security Administration (SSA) did not confirm the Social Security Number (SSN) you reported for your mother in Item 64. If you believe that the SSN you reported is correct, your mother must contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSNis incorrect, you must make the necessary correction.
HWFICO23DWF-IC013 Header A 0030COMMENT 013 HN You cannot change your Social Security Number (SSN) (Item 8). The Social Security Administration has already confirmed that this SSN belongs to you.
HWFICO23DWF-IC014 Header A 0030COMMENT 014 HN The Social Security Administration (SSA) confirmed the Social Security Number (SSN) you reported for your mother on your FAFSA, but did not confirm the SSN you reported for your father (Item 60). If you believe that the SSN you reported for your father is correct,your father should contact the SSA. The SSA can contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. Ifthe SSN is incorrect, you need to make the necessary correction.
HWFICO23DWF-IC015 Header A 0030COMMENT 015 HN The Social Security Administration (SSA) confirmed the Social Security Number (SSN) you reported for your father on your FAFSA, but did not confirm the SSN you reported for your mother (Item 64). If you believe that the SSN you reported for your mother is correct,your mother should contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. Ifthe SSN is incorrect, you need to make the necessary correction.
HWFICO23DWF-IC016 Header A 0030COMMENT 016 HN Your father's date of birth as reported on your FAFSA does not match his date of birth in the Social Security Administration's (SSA) records for his Social Security Number (SSN). Therefore, you must correct his SSN (Item 60) or his date of birth (Item 63). If his date of birth is correct, you must confirm it by reentering it in Item 63. If you confirm your father's date of birth, your father should also contact the SSA to make sure that they correct itin their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC017 Header A 0030COMMENT 017 HN Your mother's date of birth as reported on your FAFSA does not match her date of birth in the Social Security Administration's (SSA) records for her Social Security Number (SSN). Therefore, you must correct her SSN (Item 64) or her date of birth (Item 67). If her date of birth is correct, you must confirm it by reentering it in Item 67. If you confirm your mother's date of birth, your mother should also contact the SSA to make sure that they correct itin their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC018 Header A 0030COMMENT 018 HN You must provide your date of birth in Item 9.
HWFICO23DWF-IC019 Header A 0030COMMENT 019 HN The date of birth you reported for your mother on your FAFSA matches the Social Security Administration's (SSA) records, but the date of birth you reported for your father does not match the SSA's records. Your father should review the date of birth in Item 63 and either confirm the date you have reported or make the necessary correction.
HWFICO23DWF-IC020 Header A 0030COMMENT 020 HN To resolve your Pell overpayment, your Financial Aid Administrator must access NSLDS for additional Pell overpayment information.
HWFICO23DWF-IC021 Header A 0030COMMENT 021 HN The date of birth you reported for your father on your FAFSA matches the Social Security Administration's (SSA) records, but the date of birth you reported for your mother does not match the SSA's records. Your mother should review the date of birth in Item 67 and either confirm the date you have reported or make the necessary correction.
HWFICO23DWF-IC022 Header A 0030COMMENT 022 HN The name you reported for your father on your FAFSA doesn't match the Social Security Administration's (SSA) records. If the last name and first initial you reported in Items 61 and 62 are correct, contact the SSA. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC023 Header A 0030COMMENT 023 HN Comment 023 is not in use.
HWFICO23DWF-IC024 Header A 0030COMMENT 024 HN The Social Security Administration (SSA) did not confirm that the Social Security Number (SSN) you reported on your FAFSA is correct, and also could not confirm your U.S. citizenship. If you believe that the SSN you reported in Item 8 is correct, contact the SSA by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSN is incorrect, you must correct the SSN on a paper SAR or submit a new FAFSA online with thecorrect SSN.
HWFICO23DWF-IC025 Header A 0030COMMENT 025 HN The name you reported for your mother on your FAFSA doesn't match the Social Security Administration's (SSA) records. If the last name and first initial you reported in Items 65 and 66 are correct, contact the SSA. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC026 Header A 0030COMMENT 026 HN If you want to register with Selective Service, you can register by doing one of the following: (1) answer "Male" to Item 21 and "Regi- ster Me" to Item 22 on this SAR, (2) complete a Selective Service registration form at your local post office, or (3) register online at https://sss.gov. Selective Service will not process your registration until 30 days before your 18th birthday.
HWFICO23DWF-IC027 Header A 0030COMMENT 027 HN According to the Social Security Administration, the Social Security Number you provided for your father in Item 60 belongs to a deceased person. Please review your answer to Item 60 and make a correction if necessary.
HWFICO23DWF-IC028 Header A 0030COMMENT 028 HN We have forwarded your name to Selective Service for registration, as you requested. They will process your registration request 30 days prior to your 18th birthday.
HWFICO23DWF-IC029 Header A 0030COMMENT 029 HN According to the Social Security Administration, the Social Security Number you provided for your mother in Item 64 belongs to a deceased person. Please review your answer to Item 64 and make a correction if necessary.
HWFICO23DWF-IC030 Header A 0030COMMENT 030 HN The Selective Service reported that you have not registered with them. If you are female or were born before 1960, registration is not required. Otherwise, if you are not yet registered, are male, and are 18 through 25 years of age, to receive aid you must do one of the following: (1) answer "Male" to Item 21 and "Register Me" to Item 22 on this SAR, (2) complete a Selective Service registration form at your local post office, or (3) register online at https://sss.gov. If you believe you have already registered or are exempt, please check the Selective Service website at https://sss. gov, select "registration info" and then "Who Must Register?" If youhave documentation proving an exemption, submit it to your school tosa
HWFICO23DWF-IC031 Header A 0030COMMENT 031 HN We have forwarded your name to Selective Service for registration, as you requested.
HWFICO23DWF-IC032 Header A 0030COMMENT 032 HN The number you have reported for your parents' number of family members is significantly different than the number you reported on your FAFSA last year. Review Item 72 and make a correction if necessary.
HWFICO23DWF-IC033 Header A 0030COMMENT 033 HN We could not send your name to Selective Service as you requested because you did not give us enough information, you are outside the age range for registration, or you did not sign your form. If you are male and at least 18 but not yet 26, to receive aid you must do one of the following: (1) answer "Male" to Item 21 and "Register Me"to Item 22 on this SAR and also provide information for Items 1, 2, and 9, (2) complete a Selective Service registration form at your local post office, or (3) register online at https://sss.gov. If youare a male of age 26 or older, you must check the Selective Service website at https://sss.gov. Select registration info and then "Who Must Register?” for more information. Exempt if born before 1960.
HWFICO23DWF-IC034 Header A 0030COMMENT 034 HN The number you have reported for your parents' number of family members in college is significantly greater than the number you reported on your FAFSA last year. Review Item 73 and make a correction if necessary.
HWFICO23DWF-IC035 Header A 0030COMMENT 035 HN The amount you have reported for your parents' income is signifi- cantly less than the amount you reported on your FAFSA last year. Review Items 84, 86, 87, and 92a through 92h and make the necessary corrections.
HWFICO23DWF-IC036 Header A 0030COMMENT 036 HN The amount you have reported for your parents' income taxes paid is significantly greater than the amount you reported on your FAFSA last year. Review Item 85 and make a correction if necessary.
HWFICO23DWF-IC037 Header A 0030COMMENT 037 HN Certain post-baccalaureate students enrolled in teaching credential programs may be eligible for a Federal Pell Grant.
HWFICO23DWF-IC038 Header A 0030COMMENT 038 HN To resolve your Federal Pell Grant overpayment, your Financial Aid Administrator must contact the school associated with the Pell overpayment.
HWFICO23DWF-IC039 Header A 0030COMMENT 039 HN To resolve your Federal Pell Grant overpayments, your Financial Aid Administrator must access NSLDS for additional Pell overpayment information.
HWFICO23DWF-IC040 Header A 0030COMMENT 040 HN Your father's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for his Social Security Number (SSN). Therefore, you must correct his SSN (Item 60) or his name (Items 61 and 62). If his name is correct, you must confirm it by reentering both his last name and first name initial in Items 61 and 62. If you confirm your father's name, your father should also contact the SSA to make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC041 Header A 0030COMMENT 041 HN To resolve your Federal Pell Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC042 Header A 0030COMMENT 042 HN To resolve your Federal Pell Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC043 Header A 0030COMMENT 043 HN To resolve your Federal Pell Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC044 Header A 0030COMMENT 044 HN We previously indicated that your father's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for his Social Security Number (SSN). If his SSN (Item 60) or name (Items 61 or 62) are incorrect, you need to make the necessary corrections. If his SSN and name are correct, your father should contact the SSA to make sure that they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC045 Header A 0030COMMENT 045 HN You reported a Social Security Number (SSN) for both your father andmother (Items 60 and 64) but also reported that their marital status is not married (Item 58). You should only report the SSN for the parent or stepparent whose financial information is reportedon your FAFSA.
HWFICO23DWF-IC046 Header A 0030COMMENT 046 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security did not confirm that you are a noncitizen (Item 14) in an immigration status associated with the requirements of eligibility for the financial assistance for which you have applied. You must submit proof to your school that you are in the required noncitizen immigration status. If you do not submit proof within 30 days, or longer if your school allows, you may not be eligible for federal student aid.
HWFICO23DWF-IC047 Header A 0030COMMENT 047 HN There are issues with your FAFSA information that need to be resolved before your eligibility can be determined. Read this lettercarefully and review any items printed in bold type on this SAR. If you need to make corrections on this SAR, you and your parent must sign the certification at the end before you send it back to us.
HWFICO23DWF-IC048 Header A 0030COMMENT 048 HN You have reported a Social Security Number for your parent (Item 60 or 64) that is the same as yours. Please review this item.
HWFICO23DWF-IC049 Header A 0030COMMENT 049 HN You must report a valid Social Security Number (SSN), name and date of birth for your father or mother. If your parent does not have anSSN, you must correct Item 60 and/or 64 to all zeroes.
HWFICO23DWF-IC050 Header A 0030COMMENT 050 HN There are issues with your FAFSA information that need to be resolved before your eligibility can be determined. Read this lettercarefully and review any items printed in bold type on this SAR. If you need to make corrections on this SAR, you must sign the certification at the end before you send it back to us.
HWFICO23DWF-IC051 Header A 0030COMMENT 051 HN Your mother's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for her Social Security Number (SSN). Therefore, you must correct her SSN (Item 64) or her name (Items 65 and 66). If her name is correct, you must confirm it by reentering both her last name and first name initial in Items 65 and 66. If you confirm your mother's name, your mother should also contact the SSA to make sure that they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC052 Header A 0030COMMENT 052 HN Your answer to Item 23 has changed since you filed your initial FAFSA. Please review this item.
HWFICO23DWF-IC053 Header A 0030COMMENT 053 HN You left Item 23 blank. Your failure to provide an answer to this question makes you ineligible to receive federal student aid. Either indicate that you have not been convicted of possessing or selling illegal drugs for an offense that occurred while you werereceiving federal student aid (such as grants, loans, and work- study), or use the enclosed worksheet to determine your answer to this question. You can answer Item 23 on your SAR or you can correctthis item by calling 1-800-4-FED-AID (1-800-433-3243) or by going tohttps://fafsa.gov. Please understand that a drug conviction does notnecessarily disqualify you from receiving student aid.
HWFICO23DWF-IC054 Header A 0030COMMENT 054 HN You reported a "2" in response to Item 23. This indicates that you are ineligible for federal student aid for part of the 2022- 2023 school year. The period of ineligibility resulting from your drug-related conviction(s) ends on or after July 1, 2022. You should contact your Financial Aid Administrator after July 1, 2022 so that he or she can determine if you may receive federal funds during the 2022-2023 award year.
HWFICO23DWF-IC055 Header A 0030COMMENT 055 HN Your denial of benefits under the Anti-Drug Abuse Act of 1988 has been resolved and processing of your FAFSA may continue.
HWFICO23DWF-IC056 Header A 0030COMMENT 056 HN You reported in Item 23 that you have been convicted of an illegal drug offense. Use the enclosed worksheet to determine if your con- viction(s) affect your eligibility for federal student aid. If you determine that your conviction(s) do not affect your eligibility forfederal student aid, or affect it for only part of the 2022-2023 school year, you must correct Item 23. You can change your answer byusing your SAR or you can correct this item or get additional help with this question by calling 1-800-4-FED-AID (1-800-433-3243). YOU ARE NOT ELIGIBLE FOR FEDERAL STUDENT AID WHILE YOUR ANSWER TO ITEM ITEM 31 IS "3, YES" but you may still be eligible to receive state, school, or other non-federal student aid.
HWFICO23DWF-IC057 Header A 0030COMMENT 057 HN Selective Service did not register you because you did not answer "Male" to Item 21. If you are male and want to register, you can do one of the following: (1) answer "Male" to Item 21 and "Register Me"to Item 22 on this SAR, (2) complete a Selective Service registra- tion form at your local post office, or (3) register online at https://sss.gov
HWFICO23DWF-IC058 Header A 0030COMMENT 058 HN You reported in Item 23 that you are not eligible for federal student aid as a result of a drug-related conviction, or that you donot know if your conviction(s) affect your eligibility. However, you may still be eligible to receive state, school, or other non- federal student aid. If you have answered this question incorrectly, you must correct Item 23 by using your SAR. You can also correct this item or get help with this question by calling1-800-4-FED-AID (1-800-433-3243).
HWFICO23DWF-IC059 Header A 0030COMMENT 059 HN The Social Security Administration could not determine if the SocialSecurity Number reported in Item 8 belongs to you because you did not give us your last name (Item 1) and/or date of birth (Item 9). Review these items and make the necessary corrections.
HWFICO23DWF-IC060 Header A 0030COMMENT 060 HN The date of birth you reported on your FAFSA does not match the date of birth in the Social Security Administration's (SSA) records for your Social Security Number (SSN). Therefore, you must correct your SSN (Item 8) or your date of birth (Item 9). If your date of birth is correct, you must confirm it by reentering it in Item 9. If you confirm your date of birth, you should also contact the SSA to make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC061 Header A 0030COMMENT 061 HN The name you reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for your Social Security Number (SSN). Therefore, you must correct your SSN (Item 8) or name (Items 1 and 2). If your name is correct, you must confirm it by reentering both your first and last names in Items 1 and 2. If you confirm your name, you should also contact the SSA to make sure that they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC062 Header A 0030COMMENT 062 HN You reported the date of your marital status in Item 17 to be after the date you completed your application. You must report your marital status (Item 16) as of the date you submit your application.Please review Items 16 and 17 and make the necessary corrections.
HWFICO23DWF-IC063 Header A 0030COMMENT 063 HN We previously indicated that the date of birth you reported on your FAFSA in Item 9 does not match the date of birth in the Social Security Administration's (SSA) records for your Social Security Number (SSN). If either your SSN (Item 8) or date of birth is incorrect, you must make a correction. If your SSN and date of birth are correct, you should contact the SSA to make sure that they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. You must provide proof of your date of birth to your financial aid office.
HWFICO23DWF-IC064 Header A 0030COMMENT 064 HN We previously indicated that the name you reported on your FAFSA in Items 1 and 2 does not match the name in the Social Security Administration's (SSA) records for your Social Security Number (SSN). If your SSN (Item 8) or name are incorrect, you must make the necessary corrections. If your SSN and name are correct, you should contact the SSA to make sure that they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. You must provide proof of your name to your financial aid office.
HWFICO23DWF-IC065 Header A 0030COMMENT 065 HN To resolve your FSEOG overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC066 Header A 0030COMMENT 066 HN To resolve your FSEOG overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC067 Header A 0030COMMENT 067 HN To resolve your FSEOG overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC068 Header A 0030COMMENT 068 HN You did not indicate on your FAFSA that you are a U.S. citizen or aneligible noncitizen. (Item 14). To receive federal student aid, a student must be-- (1) A U.S. citizen (or U.S. National), or (2) An eligible noncitizen, such as a U.S. permanent resident or a resident of certain Pacific Islands, or as determined by the U.S. Department of Education.
HWFICO23DWF-IC069 Header A 0030COMMENT 069 HN Review your date of birth in Item 9 and either confirm the date you have reported by reentering it or make the necessary correction.
HWFICO23DWF-IC070 Header A 0030COMMENT 070 HN You reported that you will either have a bachelor's degree by July 1, 2022 (Item 28) or will be working on a degree beyond a bachelor's degree (Item 47). Graduate students are eligible for most types of federal aid, but generally not the Federal Pell Grant.
HWFICO23DWF-IC071 Header A 0030COMMENT 071 HN We previously indicated that your mother's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for her Social Security Number (SSN). If her SSN (Item 64) or her name (Items 65 or 66) are incorrect, you need to make the necessary corrections. If her SSN and name are correct, your mother should contact the SSA to make sure that they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC072 Header A 0030COMMENT 072 HN Review your date of birth in Item 9 and either confirm the date you have reported by reentering it or make the necessary correction.
HWFICO23DWF-IC073 Header A 0030COMMENT 073 HN The number you reported for your number of family members is significantly different than the number you reported on your FAFSA last year. Review Item 93 and make a correction if necessary.
HWFICO23DWF-IC074 Header A 0030COMMENT 074 HN The number you reported for your number of family members in college is significantly greater than the number you reported on your FAFSA last year. Review Item 94 and make a correction if necessary.
HWFICO23DWF-IC075 Header A 0030COMMENT 075 HN You should not update your marital status (Item 16) if your marital status changes after you sign and submit your original application. You should only change this item if you made a mistake in reporting your correct marital status on your original application.
HWFICO23DWF-IC076 Header A 0030COMMENT 076 HN Social Security Administration (SSA) records indicate that the Social Security Number (SSN) that was provided in Item 8 belongs to a deceased person. If the SSN is correct, the applicant must contact the SSA at 1-800-772-1213 or https://socialsecurity.gov to resolve this problem. If the SSN is incorrect, the applicant must correct the SSN on a paper SAR or submit a new FAFSA online with thecorrect SSN.
HWFICO23DWF-IC077 Header A 0030COMMENT 077 HN To resolve your FSEOG overpayment, your Financial Aid Administrator must contact the school associated with the FSEOG overpayment.
HWFICO23DWF-IC078 Header A 0030COMMENT 078 HN The U.S. Department of Education granted permission to process your FAFSA after the June 30, 2023 deadline.
HWFICO23DWF-IC079 Header A 0030COMMENT 079 HN To resolve your FSEOG overpayments, your Financial Aid Administratormust access NSLDS for additional FSEOG overpayment information.
HWFICO23DWF-IC080 Header A 0030COMMENT 080 HN We recently received an application with an incomplete name from this address. The applicant should review this SAR and provide his or her full name in Items 1 and 2. If the applicant does not have both a first and a last name, draw a line through both the previous answer and the new answer space for the name that should be left blank.
HWFICO23DWF-IC081 Header A 0030COMMENT 081 HN We did not process your correction to change your date of birth (Item 9) to blank. We must have your date of birth to process your record.
HWFICO23DWF-IC082 Header A 0030COMMENT 082 HN We recently received an application with no name from this address. The applicant must provide a full name in Items 1 and 2 on this SAR.
HWFICO23DWF-IC083 Header A 0030COMMENT 083 HN You reported that your parent(s) did or will file a 2019 income tax return (Item 79) but also reported that your father does not have a Social Security Number (Item 60). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC084 Header A 0030COMMENT 084 HN You reported that your parent(s) did or will file a 2019 income tax return (Item 79) but also reported that your mother does not have a Social Security Number (Item 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC085 Header A 0030COMMENT 085 HN We assumed your parent(s) did file or will file a 2019 income tax return (Item 79). Please review this item.
HWFICO23DWF-IC086 Header A 0030COMMENT 086 HN To resolve your Perkins overpayment, your Financial Aid Administrator must access NSLDS for additional Perkins overpayment information.
HWFICO23DWF-IC087 Header A 0030COMMENT 087 HN We assumed your parent(s) did not file and will not file a 2019 income tax return (Item 79). Please review this item.
HWFICO23DWF-IC088 Header A 0030COMMENT 088 HN We did not process your correction to change your citizenship to blank (Item 14). We must have your citizenship status to process your record.
HWFICO23DWF-IC089 Header A 0030COMMENT 089 HN Review your parents' marital status in Item 58. If your parents are not married, provide only the income for the parent who supports you.
HWFICO23DWF-IC090 Header A 0030COMMENT 090 HN To resolve your Perkins overpayment, your Financial Aid Aministratormust contact the school associated with the Perkins overpayment.
HWFICO23DWF-IC091 Header A 0030COMMENT 091 HN It appears you reported the same income amount for more than one of your parent(s)' income questions. Please review these items.
HWFICO23DWF-IC092 Header A 0030COMMENT 092 HN It appears you reported the same income amount for more than one of your income questions. Please review these items.
HWFICO23DWF-IC093 Header A 0030COMMENT 093 HN It appears you reported the same income amount for more than one of your income questions. Please review these items.
HWFICO23DWF-IC094 Header A 0030COMMENT 094 HN It appears you reported the same adjusted gross income amount for you and your parent(s). Review Items 36 and 84 and make any necessary corrections.
HWFICO23DWF-IC095 Header A 0030COMMENT 095 HN We assumed you did file or will file a 2019 income tax return (Item 32).
HWFICO23DWF-IC096 Header A 0030COMMENT 096 HN You have reported the same amount for your father's and your mother's income (Items 86 and 87). Please review these items.
HWFICO23DWF-IC097 Header A 0030COMMENT 097 HN We assumed you did not file and will not file a 2019 income tax return (Item 32). Please review this item.
HWFICO23DWF-IC098 Header A 0030COMMENT 098 HN You have reported the same amount for your income and your spouse's income (Items 38 and 39). Please review these items.
HWFICO23DWF-IC099 Header A 0030COMMENT 099 HN Review your marital status in Item 16. You should report income for a spouse only if you were married and not separated as of the date you signed and submitted your FAFSA. Please note: if you were separated or divorced as of the date you signed your FAFSA, we will need only your income, even if a joint tax return was filed.
HWFICO23DWF-IC100 Header A 0030COMMENT 100 HN To resolve your Perkins overpayment, call the U.S. Department of Education at 1-800-621-3115 or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC101 Header A 0030COMMENT 101 HN To resolve your Perkins overpayment, call the U.S. Department of Education at 1-800-621-3115 or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC102 Header A 0030COMMENT 102 HN To resolve your Perkins overpayment, call the U.S. Department of Education at 1-800-621-3115 or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC103 Header A 0030COMMENT 103 HN One or more of the schools you listed on your FAFSA are not in our file of eligible schools. To receive federal student aid, you must attend a school that participates in the federal student aid programs. Please review Item 101 and make changes as necessary.
HWFICO23DWF-IC104 Header A 0030COMMENT 104 HN Either you did not list any schools on your FAFSA or the schools you listed are not in our file of eligible schools. To receive federal student aid, you must attend a school that participates in the federal student aid programs. Please review Item 101 and make changes as necessary. To verify your school code go to https://fafsa.gov and click the "School Code Search" link.
HWFICO23DWF-IC105 Header A 0030COMMENT 105 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security has not yet confirmed that you are a noncitizen (Item 14) in an immigration status associated with the requirements of eligibility for the financial assistance for which you have applied. You must submit proof to your school that you are a noncitizen in the required immigration status. If you do not submit proof to your school within 30 days, or longer if your school allows, you may not be eligible for federal student aid.
HWFICO23DWF-IC106 Header A 0030COMMENT 106 HN You have corrected information on your SAR more than 10 times. Before sending in another correction, contact your financial aid office for assistance.
HWFICO23DWF-IC107 Header A 0030COMMENT 107 HN To resolve your Perkins overpayments, your Financial Aid Administra-tor must access NSLDS for additional Perkins overpayment information.
HWFICO23DWF-IC108 Header A 0030COMMENT 108 HN Your parent did not sign your FAFSA or the SAR corrections you submitted. If your parent is not able to sign, see your financial aid office or High School Counselor.
HWFICO23DWF-IC109 Header A 0030COMMENT 109 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security did not have enough information to confirm that you are a noncitizen (Item 14) in an immigration status associated with the requirements of eligibility for the financial assistance for which you have applied. You must contact the financial aid office at your school to find out what informationis needed. If you do not submit the required information within 30 days, or longer if your school allows, you may not be eligible for federal student aid.
HWFICO23DWF-IC110 Header A 0030COMMENT 110 HN We have not received the signature page from your FAFSA on the Web application or correction. You must sign and return thisSAR before we can determine your eligibility for federal student aid.
HWFICO23DWF-IC111 Header A 0030COMMENT 111 HN The amount you reported for your parents' income tax is equal to or greater than the amount you reported for their adjusted gross income. Review Items 84 and 85 and make the necessary corrections.
HWFICO23DWF-IC112 Header A 0030COMMENT 112 HN Based on the information we have on record for you, your EFC is _____. You are not eligible for a Federal Pell Grant but you maybe eligible for other aid. Your school will use your EFC to determine your financial aid eligibility for other federal grants, loans, and work study, and possible funding from your state and school.
HWFICO23DWF-IC113 Header A 0030COMMENT 113 HN We assumed the value for number in college (Item 73) based on your parents' marital status and number of family members. Your parents should not be included in the number in college. Please review this item.
HWFICO23DWF-IC114 Header A 0030COMMENT 114 HN The amount you reported for your income taxes is equal to or greater than the amount you reported for your adjusted gross income. Review Items 36 and 37 and make the necessary corrections.
HWFICO23DWF-IC115 Header A 0030COMMENT 115 HN The National Student Loan Data System (NSLDS) indicates that one or more of your federal student loans have been discharged. If you have questions, contact the financial aid office at your school.
HWFICO23DWF-IC116 Header A 0030COMMENT 116 HN The National Student Loan Data System (NSLDS) indicates you have one or more student loans in an active bankruptcy status. Before you can receive additional federal student loans, you must contact the financial aid office at your school.
HWFICO23DWF-IC117 Header A 0030COMMENT 117 HN We assumed certain information to calculate your eligibility for federal student aid. We printed the assumption we made and the word "assumed" in the "You told us" space for each of these items. If our assumptions are correct, do not change them. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC118 Header A 0030COMMENT 118 HN Be sure to review the items printed in darker print on this SAR and make any corrections if necessary.
HWFICO23DWF-IC119 Header A 0030COMMENT 119 HN You corrected the date of your marital status to be after the date you submitted your application. Your marital status (Item 16) and date (Item 17) should only be changed if they were reported incorrectly on the date the FAFSA was originally submitted, or if a Financial Aid Administrator has instructed you to update this information. Review Items 16 and 17 and make the necessary correc- tions or contact your Financial Aid Administrator for assistance.
HWFICO23DWF-IC120 Header A 0030COMMENT 120 HN Your citizenship status (Item 14) has been confirmed by the Department of Homeland Security and you meet the citizenship requirements for federal student aid.
HWFICO23DWF-IC121 Header A 0030COMMENT 121 HN It appears you have reported the same amount for your parents' cash, savings, and checking accounts and your parents' real estate/investment net worth. Review Items 88 and 89 and make the necessary corrections.
HWFICO23DWF-IC122 Header A 0030COMMENT 122 HN It appears you have reported the same amount for your cash, savings, and checking accounts and your real estate/investment net worth. Review Items 40 and 41 and make the necessary corrections.
HWFICO23DWF-IC123 Header A 0030COMMENT 123 HN It appears you have reported the same amount for your cash, savings, and checking accounts and your real estate/investment net worth. Review Items 40 and 41 and make the necessary corrections.
HWFICO23DWF-IC124 Header A 0030COMMENT 124 HN Contact the following agency(ies) regarding your defaulted federal student loan(s):
HWFICO23DWF-IC125 Header A 0030COMMENT 125 HN To be considered for a Federal Pell Grant, your financial aid office must receive your SAR by September 17, 2023, or your last day of enrollment, whichever comes first. Other student aid programs have different deadlines.
HWFICO23DWF-IC126 Header A 0030COMMENT 126 HN You reported that your parents will not file an income tax return, but the amount you reported for your parents' income appears to be over the minimum amount required to file a tax return. Please review Items 79, 86, and 87 and make the necessary corrections.
HWFICO23DWF-IC127 Header A 0030COMMENT 127 HN It may be too late to submit any corrections to your SAR. To be considered for a Federal Pell Grant, you must submit a complete, correct SAR to your financial aid office no later than September 17, 2023, or your last day of enrollment, whichever comes first. If it is later than September 17, 2023, you must contact your financial aid office for assistance.
HWFICO23DWF-IC128 Header A 0030COMMENT 128 HN It may be too late for you to make corrections or give us any more information for this year. We must have your corrected SAR no later than September 10, 2023. If it is later than September 10, 2023, you must contact your fiancial aid office for assistance.
HWFICO23DWF-IC129 Header A 0030COMMENT 129 HN You must provide your parent(s) income information in Items 84 through 87 and 92a through 92h.
HWFICO23DWF-IC130 Header A 0030COMMENT 130 HN You must provide your income information in Items 36 through 39 and 44a through 44i.
HWFICO23DWF-IC131 Header A 0030COMMENT 131 HN You reported that you will not file an income tax return, but the amount you reported for your (and your spouse's) income appears to be over the minimum amount required to file a tax return. Please review Items 32, 38, and 39 and make the necessary corrections.
HWFICO23DWF-IC132 Header A 0030COMMENT 132 HN The National Student Loan Data System (NSLDS) indicates that you arein DEFAULT on one or more federal student loans. You are not eligible to receive any federal student aid until you resolve any loan default(s).
HWFICO23DWF-IC133 Header A 0030COMMENT 133 HN The National Student Loan Data System (NSLDS) indicates that you have received one or more overpayments of federal student aid funds. You are required by law to repay any federal student aid funds received for which you were not entitled. You are not eligible to receive any federal student aid until you resolve your overpayment(s).
HWFICO23DWF-IC134 Header A 0030COMMENT 134 HN The National Student Loan Data System (NSLDS) indicates that you arein DEFAULT on one or more federal student loans and that you received one or more overpayments of federal student aid funds. You are not eligible to receive any federal student aid until these items have been resolved.
HWFICO23DWF-IC135 Header A 0030COMMENT 135 HN To resolve your defaulted or fraudulent federal student loan(s), contact the lender associated with the loan.
HWFICO23DWF-IC136 Header A 0030COMMENT 136 HN To resolve your defaulted or fraudulent federal student loan(s), contact the school associated with the loan.
HWFICO23DWF-IC137 Header A 0030COMMENT 137 HN You are currently in the process of applying for or have received a Total and Permanent Disability (TPD) discharge. If you are in the process of applying for a TPD discharge, receiving additional feder-al student aid may affect your eligibility for a TPD discharge. If you have already received a TPD discharge, you must meet additional eligibility requirements to receive further federal student aid. Depending on when you received a TPD discharge, receiving additionalfederal student aid may affect your ability to keep your discharge. Contact the financial aid office at your school for further infor- mation.
HWFICO23DWF-IC138 Header A 0030COMMENT 138 HN The National Student Loan Data System (NSLDS) found your reported Social Security Number (Item 8) on their database, but your name (Items 1 and 2) and date of birth (Item 9) did not match. Therefore, this SAR does not contain the financial aid history that is associated with your reported Social Security Number.
HWFICO23DWF-IC139 Header A 0030COMMENT 139 HN To resolve issues with your federal student loan(s), call the Perkins Loans Customer Service Center at 1-866-313-3797, or write to them at ECSI Federal Perkins Loan Servicer, P.O. Box 1079, Wexford, PA 15090.
HWFICO23DWF-IC140 Header A 0030COMMENT 140 HN According to Social Security Administration (SSA) records, the Social Security Number (SSN) that was provided in Item 8 belongs to a deceased person. If the SSN in Item 8 is correct, the applicant must contact the SSA at 1-800-772-1213 or https://socialsecurity.govto resolve this problem. If the SSN is incorrect, the applicant must correct the SSN on a paper SAR or submit a new FAFSA online with the correct SSN.
HWFICO23DWF-IC141 Header A 0030COMMENT 141 HN You changed either your response to citizenship (Item 14) or the Alien Registration Number (Item 15) that was verified with the Department of Homeland Security. Therefore, you must submit proof of your citizenship status to your financial aid office.
HWFICO23DWF-IC142 Header A 0030COMMENT 142 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security could not confirm that you are anoncitizen (Item 14) in an immigration status associated with the requirements of eligibility for the financial assistance for which you have applied because there is an issue with your Alien Registra-tion Number (Item 15). You must submit proof to your school that youare a noncitizen in the required immigration status. If you do not submit proof within 30 days, or longer if your school allows, you may not be eligible for federal student aid.
HWFICO23DWF-IC143 Header A 0030COMMENT 143 HN Your citizenship status has been confirmed by the Department of Homeland Security and you meet the citizenship requirements for federal student aid.
HWFICO23DWF-IC144 Header A 0030COMMENT 144 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security (DHS) has not yet confirmed yourstatus as a noncitizen (Item 14) in an immigration status associa- ted with the requirements of eligibility for the financial assist- ance for which you have applied. DHS will continue to check its records and we will notify you once we receive more information fromDHS.
HWFICO23DWF-IC145 Header A 0030COMMENT 145 HN According to Social Security Administration (SSA) records, the Social Security Number (SSN) that was reported in Item 8 belongs to a deceased person. If the SSN in Item 8 is correct, the applicant must contact the SSA at 1-800-772-1213 or https://socialsecurity.govto resolve this problem. If the SSN is incorrect, the applicant must correct the SSN on a paper SAR or submit a new FAFSA online with the correct SSN.
HWFICO23DWF-IC146 Header A 0030COMMENT 146 HN The Social Security Administration did not confirm that you are a U.S. citizen. Please provide your financial aid office with documentation of your U.S. citizenship (such as your U.S. Passport, Certificate of Naturalization or Birth Certificate). If the docu- ments support your status as a U.S. citizen, the financial aid office at your school will make a copy of your documentation and cancontinue to process your federal student aid. If you are an eligiblenoncitizen, you or your school must submit a correction to Item 14 to indicate that you are an eligible noncitizen and also provide your Alien Registration Number in Item 15. You and your school will receive a new SAR/ISIR within three processing days with DHS results
HWFICO23DWF-IC147 Header A 0030COMMENT 147 HN Comment 147 is not in use.
HWFICO23DWF-IC148 Header A 0030COMMENT 148 HN We assumed the number in college should be one (Item 73). Your parents should not be included in the number in college.
HWFICO23DWF-IC149 Header A 0030COMMENT 149 HN Based on the information we have on record for you, your EFC is _____. You may be eligible to receive a Federal Pell Grant and other federal student aid. Your school will use your EFC to determine your financial aid eligibility for federal grants, loans, and work study, and possible funding from your state and school.
HWFICO23DWF-IC150 Header A 0030COMMENT 150 HN You must provide asset information for you and your parent(s). Review Items 40 through 42 and Items 88 through 90 and make the necessary corrections.
HWFICO23DWF-IC151 Header A 0030COMMENT 151 HN You must provide your asset information. Review Items 40 through 42 and make the necessary corrections.
HWFICO23DWF-IC152 Header A 0030COMMENT 152 HN The amount you reported for your income tax is equal to or greater than the amount you reported for your adjusted gross income. Review Items 36 and 37 and make the necessary corrections.
HWFICO23DWF-IC153 Header A 0030COMMENT 153 HN The amount you reported for your income tax appears to be over the allowable amount based on what you reported for your adjusted gross income. Review Items 36 and 37 and make the necessary corrections.
HWFICO23DWF-IC154 Header A 0030COMMENT 154 HN The amount you reported for your parents' income tax appears to be over the allowable amount based on what you reported for their adjusted gross income. Review Items 84 and 85 and make the necessary corrections.
HWFICO23DWF-IC155 Header A 0030COMMENT 155 HN The amount you reported for your income tax appears to be over the allowable amount based on what you reported for your adjusted gross income. Review Items 36 and 37 and make the necessary corrections.
HWFICO23DWF-IC156 Header A 0030COMMENT 156 HN If your parents have now completed their 2019 tax return, you shouldcorrect your information to reflect the income and tax information reported on their tax return. You may either make corrections to your information online at https://fafsa.gov or by using this SAR. If you make corrections online and your parents filed a federal tax return with the IRS, they may be eligible to use the IRS Data Re- trieval Tool. With just a few simple steps your parents can transfer that information directly into your FAFSA. If your parents have not yet completed their tax return, you must correct this SAR to reflect the income and tax information reported on their tax return once it is filed.
HWFICO23DWF-IC157 Header A 0030COMMENT 157 HN If you have now completed your 2019 tax return, you should correct your information to reflect the income and tax information reported on your tax return. You may either make corrections to your informa-tion online at https://fafsa.gov or by using this SAR. If you make corrections online and you filed a federal tax return with the IRS, you may be eligible to use the IRS Data Retrieval Tool. With just a few simple steps you can view information from your tax return and transfer that information directly into your FAFSA. If you have not yet completed your tax return you must correct this SAR to reflect the income and tax information reported on your tax return once it is filed.
HWFICO23DWF-IC158 Header A 0030COMMENT 158 HN You are not eligible to receive a Federal Pell Grant because you reported that you have a bachelor's degree (Item 28) or you are working on a degree beyond a bachelor's degree (Item 47). Your Financial Aid Administrator will determine what types of federal student aid you are eligible to receive.
HWFICO23DWF-IC159 Header A 0030COMMENT 159 HN You MAY not be eligible to receive a Federal Pell Grant because you reported that you have a bachelor's degree (Item 28) or you are working on a degree beyond a bachelor's degree (Item 47). Your Financial Aid Administrator will determine what types of federal student aid you are eligible to receive.
HWFICO23DWF-IC160 Header A 0030COMMENT 160 HN You either did not sign your FAFSA or FAFSA correction, or the date that you provided indicates that you completed your FAFSA prior to October 1, 2021, or later than the date the FAFSA was received. You must sign and return this SAR before we can determine your eligibility for federal student aid.
HWFICO23DWF-IC161 Header A 0030COMMENT 161 HN We could not match your information with the Department of Veterans Affairs. Please provide your full name (Items 1 and 2) and/or date of birth (Item 9) for us to complete the match with the Department of Veterans Affairs.
HWFICO23DWF-IC162 Header A 0030COMMENT 162 HN The Department of Veterans Affairs did not confirm that you are or or will be a qualifying veteran for purposes of receiving federal student aid for the 2022-2023 school year. If you believe you are orwill be a qualifying veteran, contact your financial aid office and provide a copy of your DD214 (military separation form). If you are currently serving on active duty in the U.S. Armed Forces for pur- poses other than training, change your answer to Item 49 from "Yes" to "No" and answer "Yes" to Item 48. If you are not and will not be a veteran, you must change the answer to Item 49 from "Yes" to "No" and provide parental information, including the signature of at least one of your parents.
HWFICO23DWF-IC163 Header A 0030COMMENT 163 HN This SAR reflects your Financial Aid Administrator's determination of your status as a homeless youth.
HWFICO23DWF-IC164 Header A 0030COMMENT 164 HN You reported that your parent(s) did file or will file a 2019 income tax return (Item 79) but also reported that your father and your mother do not have a Social Security Number (Items 60 and 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC165 Header A 0030COMMENT 165 HN If you are or were in Foster Care, you may be eligible for assistance through federal programs for foster youth, such as the John H. Chafee Foster Care Independence Program and/or the Education and Training Voucher (ETV) Program. For more information contact your state ETV coordinator. The contact information is located here: https://childwelfare.gov/organizations/?CWIGFunction saction=rols:main.dspROL&rolType=Custom&RS_ID=38
HWFICO23DWF-IC166 Header A 0030COMMENT 166 HN You reported that you are or were in Foster Care. You may be eligible for assistance through federal programs for foster youth, such as the John H. Chafee Foster Care Independence Program and/or the Education and Training Voucher (ETV) Program. For more infor- mation contact your state ETV coordinator. The contact information is located here: https://childwelfare.gov/organizations/?CWIGFunction saction=rols:main.dspROL&rolType=Custom&RS_ID=38
HWFICO23DWF-IC167 Header A 0030COMMENT 167 HN Comment 167 is not in use.
HWFICO23DWF-IC168 Header A 0030COMMENT 168 HN You must provide answers for your parents' marital status and number of family members in Items 58 and 72.
HWFICO23DWF-IC169 Header A 0030COMMENT 169 HN You must provide answers for your marital status and number of family members in Items 16 and 93.
HWFICO23DWF-IC170 Header A 0030COMMENT 170 HN Your FAFSA has been selected for a review process called verification. Your school has the authority to request copies of certain financial documents from you and your parent(s).
HWFICO23DWF-IC171 Header A 0030COMMENT 171 HN Your FAFSA has been selected for a review process called verification. Your school has the authority to request copies of certain financial documents from you (and your spouse).
HWFICO23DWF-IC172 Header A 0030COMMENT 172 HN This SAR was produced because we processed a change to your information based on information reported to us by another agency or as a result of a processing system change. Please review your SAR to see what effect, if any, this change has had on your application, and call 1-800-4-FED-AID (1-800-433-3243) if you have any questions.
HWFICO23DWF-IC173 Header A 0030COMMENT 173 HN The Department of Veterans Affairs (VA) did not confirm that you areor will be a qualifying veteran for purposes of receiving federal student aid for the 2022-2023 school year. If you believe you are orwill be a qualifying veteran, contact your financial aid office and provide a copy of your DD214 (military separation form). If you are currently serving on active duty in the U.S. Armed Forces for pur- poses other than training, change your answer to Item 49 from "Yes" to "No" and answer "Yes" to Item 48. If you are not and will not be a veteran, you must change the answer to Item 49 from "Yes" to "No" and provide parental information, including the signature of at least one of your parents.
HWFICO23DWF-IC174 Header A 0030COMMENT 174 HN We did not process your request to add another school code to your application because the Financial Aid Administrator at your previous school updated your application based on professional judgment. Please contact the financial aid office at your new school for assistance.
HWFICO23DWF-IC175 Header A 0030COMMENT 175 HN You reported that you are married and have dependents other than a spouse, but you also reported that your number of family members is 2. These answers are inconsistent. Review Items 16, 51, and 93 and make the necessary corrections.
HWFICO23DWF-IC176 Header A 0030COMMENT 176 HN You reported that you do not have children or other legal dependents, but you also reported that your number of family membersis greater than 2. These answers are inconsistent. Review Items 50, 51, and 93 and make the necessary corrections.
HWFICO23DWF-IC177 Header A 0030COMMENT 177 HN You reported that you are not married and do not have children or other legal dependents, but you also reported that your number of family members is 2. These answers are inconsistent. Review Items 16, 50, 51, and 93 and make the necessary corrections.
HWFICO23DWF-IC178 Header A 0030COMMENT 178 HN Review the number of family members you have reported in Item 72 and either confirm your answer by reentering it or make the necessary correction.
HWFICO23DWF-IC179 Header A 0030COMMENT 179 HN Review the number of family members you have reported in Item 93 and either confirm your answer by reentering it or make the necessary correction.
HWFICO23DWF-IC180 Header A 0030COMMENT 180 HN The Department of Veterans Affairs (VA) did not confirm that you areor will be a qualifying veteran for purposes of receiving federal student aid for the 2022-2023 school year. If you believe you are orwill be a qualifying veteran, contact your financial aid office and provide a copy of your DD214 (military separation form). If you are currently serving on active duty in the U.S. Armed Forces for pur- poses other than training, change your answer to Item 49 from "Yes" to "No" and answer "Yes" to Item 48. If you are not and will not be a veteran, you must change the answer to Item 49 from "Yes" to "No" and provide parental information, including the signature of at least one of your parents.
HWFICO23DWF-IC181 Header A 0030COMMENT 181 HN Commen 181 is not in use.
HWFICO23DWF-IC182 Header A 0030COMMENT 182 HN Comment 182 is not in use.
HWFICO23DWF-IC183 Header A 0030COMMENT 183 HN Comment 183 is not in use.
HWFICO23DWF-IC184 Header A 0030COMMENT 184 HN Comment 184 is not in use.
HWFICO23DWF-IC185 Header A 0030COMMENT 185 HN Comment 185 is not in use.
HWFICO23DWF-IC186 Header A 0030COMMENT 186 HN Comment 186 is not in use.
HWFICO23DWF-IC187 Header A 0030COMMENT 187 HN Comment 187 is not in use.
HWFICO23DWF-IC188 Header A 0030COMMENT 188 HN Comment 188 is not in use.
HWFICO23DWF-IC189 Header A 0030COMMENT 189 HN Comment 189 is not in use.
HWFICO23DWF-IC190 Header A 0030COMMENT 190 HN Educational Credit Management Corporation - CA 1-888-221-3262 or 651-221-0566 (GA 706)
HWFICO23DWF-IC191 Header A 0030COMMENT 191 HN College Assist, 1-800-333-2858 or 1-800-727-9834 (GA 708)
HWFICO23DWF-IC192 Header A 0030COMMENT 192 HN Comment 192 is not in use.
HWFICO23DWF-IC193 Header A 0030COMMENT 193 HN Comment 193 is not in use.
HWFICO23DWF-IC194 Header A 0030COMMENT 194 HN Comment 194 is not in use.
HWFICO23DWF-IC195 Header A 0030COMMENT 195 HN Florida Department of Education, Defaulted Borrowers Assistance, 1-800-366-3475 (GA 712)
HWFICO23DWF-IC196 Header A 0030COMMENT 196 HN Georgia Student Finance Commission, Collections, 1-800-505-4732 (GA 713)
HWFICO23DWF-IC197 Header A 0030COMMENT 197 HN Comment 197 is not in use.
HWFICO23DWF-IC198 Header A 0030COMMENT 198 HN Illinois Student Assistance Commission, Claims and Collections, 1-800-899-4722 or 847-948-8500 (GA 717)
HWFICO23DWF-IC199 Header A 0030COMMENT 199 HN Comment 199 is not in use.
HWFICO23DWF-IC200 Header A 0030COMMENT 200 HN Comment 200 is not in use.
HWFICO23DWF-IC201 Header A 0030COMMENT 201 HN Kentucky Higher Education Assistance Authority, Collections Office, 1-800-928-8926 or 1-800-928-4241 (GA 721)
HWFICO23DWF-IC202 Header A 0030COMMENT 202 HN Louisiana Office of Student Financial Assistance, 1-888-272-5543 or 1-800-331-2314 (GA 722)
HWFICO23DWF-IC203 Header A 0030COMMENT 203 HN Finance Authority of Maine, 1-800-331-2314 or 1-888-272-5543 (GA 723)
HWFICO23DWF-IC204 Header A 0030COMMENT 204 HN Comment 204 is not in use.
HWFICO23DWF-IC205 Header A 0030COMMENT 205 HN American Student Assistance, Collections, 1-800-999-9080 (GA 725)
HWFICO23DWF-IC206 Header A 0030COMMENT 206 HN Michigan Higher Education Assistance Authority, Collections, 1-800-642-5626 (GA 726)
HWFICO23DWF-IC207 Header A 0030COMMENT 207 HN Comment 207 is not in use.
HWFICO23DWF-IC208 Header A 0030COMMENT 208 HN Comment 208 is not in use.
HWFICO23DWF-IC209 Header A 0030COMMENT 209 HN Missouri Department of Higher Education, 1-800-473-6757 (GA 729)
HWFICO23DWF-IC210 Header A 0030COMMENT 210 HN Montana Guaranteed Student Loan Program, Claims Management, 1-800-537-7508 or 1-800-322-3086 (GA 730)
HWFICO23DWF-IC211 Header A 0030COMMENT 211 HN National Student Loan Program (NSLP), Collection Office 1-800-735-8778, Ext. 6380 (GA 731)
HWFICO23DWF-IC212 Header A 0030COMMENT 212 HN Comment 212 is not in use.
HWFICO23DWF-IC213 Header A 0030COMMENT 213 HN New Hampshire Higher Education Assistance Foundation, Claims Section, 603-225-6612, Ext. 6004 (GA 733)
HWFICO23DWF-IC214 Header A 0030COMMENT 214 HN New Jersey Higher Education Assistance Authority, 1-800-792-8670 (GA 734)
HWFICO23DWF-IC215 Header A 0030COMMENT 215 HN New Mexico Student Loan Guarantee Corporation, 505-761-2366 or 505-345-8821, ext. 1361 (GA 735)
HWFICO23DWF-IC216 Header A 0030COMMENT 216 HN New York State Higher Education Services Corporation, Office of Default, 1-866-944-4372 or 1-888-697-4372. (GA 736)
HWFICO23DWF-IC217 Header A 0030COMMENT 217 HN North Carolina State Education Assistance Authority, Collections, 1-800-544-1644 (GA 737)
HWFICO23DWF-IC218 Header A 0030COMMENT 218 HN North Dakota Post Claims Collections, 701-328-5707 (GA 738)
HWFICO23DWF-IC219 Header A 0030COMMENT 219 HN Comment 219 is not in use.
HWFICO23DWF-IC220 Header A 0030COMMENT 220 HN Oklahoma College Assistance Program, Collection Office, 1-800-331-2314 or 1-800-442-8642 (GA 740)
HWFICO23DWF-IC221 Header A 0030COMMENT 221 HN Comment 221 is not in use.
HWFICO23DWF-IC222 Header A 0030COMMENT 222 HN Pennsylvania Higher Education Assistance Agency, 1-800-233-0751 (GA 742)
HWFICO23DWF-IC223 Header A 0030COMMENT 223 HN Rhode Island Higher Education Assistance Authority, 1-800-331-2314 (GA 744)
HWFICO23DWF-IC224 Header A 0030COMMENT 224 HN South Carolina State Education Assistance Authority, Collections, 803-798-7960 (GA 745)
HWFICO23DWF-IC225 Header A 0030COMMENT 225 HN Comment 225 is not in use.
HWFICO23DWF-IC226 Header A 0030COMMENT 226 HN Tennessee Student Assistance Corporation, BTI Services, 1-800-342-1663 or 615-741-1346 (GA 747)
HWFICO23DWF-IC227 Header A 0030COMMENT 227 HN Texas Guaranteed Student Loan Corp., Collections, 1-800-845-6267 (GA 748)
HWFICO23DWF-IC228 Header A 0030COMMENT 228 HN Utah Higher Education Assistance Authority, 801-366-8411 or 1-800-418-8757 (GA 749)
HWFICO23DWF-IC229 Header A 0030COMMENT 229 HN Vermont Student Assistance Corp., 1-800-642-3177 or 802-655-9602 (GA 750)
HWFICO23DWF-IC230 Header A 0030COMMENT 230 HN Comment 230 is not in use.
HWFICO23DWF-IC231 Header A 0030COMMENT 231 HN Northwest Education Loan Association, Collection Office, 1-888-272-5543 (GA 753)
HWFICO23DWF-IC232 Header A 0030COMMENT 232 HN Great Lakes Higher Education Corporation, 1-800-354-6980 or 1-888-686-6919 (GA 755)
HWFICO23DWF-IC233 Header A 0030COMMENT 233 HN Comment 233 is not in use.
HWFICO23DWF-IC234 Header A 0030COMMENT 234 HN Comment 234 is not in use.
HWFICO23DWF-IC235 Header A 0030COMMENT 235 HN United Student Aid Funds, Post Claims Assistance, 1-800-331-2314 (GA 800)
HWFICO23DWF-IC236 Header A 0030COMMENT 236 HN Comment 236 is not in use.
HWFICO23DWF-IC237 Header A 0030COMMENT 237 HN Comment 237 is not in use.
HWFICO23DWF-IC238 Header A 0030COMMENT 238 HN Educational Credit Management Corporation, 1-888-221-3262 (GA 927)
HWFICO23DWF-IC239 Header A 0030COMMENT 239 HN Educational Credit Management Corporation, 1-888-221-3262 (GA 951)
HWFICO23DWF-IC240 Header A 0030COMMENT 240 HN Comment 240 is not in use.
HWFICO23DWF-IC241 Header A 0030COMMENT 241 HN Comment 241 is not in use.
HWFICO23DWF-IC242 Header A 0030COMMENT 242 HN Comment 242 is not in use.
HWFICO23DWF-IC243 Header A 0030COMMENT 243 HN Comment 243 is not in use.
HWFICO23DWF-IC244 Header A 0030COMMENT 244 HN Comment 244 is not in use.
HWFICO23DWF-IC245 Header A 0030COMMENT 245 HN Comment 245 is not in use for this aid year.
HWFICO23DWF-IC246 Header A 0030COMMENT 246 HN Comment 246 is not in use.
HWFICO23DWF-IC247 Header A 0030COMMENT 247 HN The National Student Loan Data System (NSLDS) indicates that one or more of your federal student loans have been discharged based on a determination by the Department of Veterans Affairs that you are unemployable due to a service-connected disability. If you have questions, contact the financial aid office at your school.
HWFICO23DWF-IC248 Header A 0030COMMENT 248 HN Direct Loan Servicing Center (ACS), Greenville, TX, 1-855-554-0052 (ED Servicer 583)
HWFICO23DWF-IC249 Header A 0030COMMENT 249 HN Comment 249 is not in use.
HWFICO23DWF-IC250 Header A 0030COMMENT 250 HN Comment 250 is not in use.
HWFICO23DWF-IC251 Header A 0030COMMENT 251 HN Call the U.S. Department of Education at 1-800-621-3115, or write tothe U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609. (EDR 04)
HWFICO23DWF-IC252 Header A 0030COMMENT 252 HN Call the U.S. Department of Education at 1-800-621-3115, or write tothe U.S. Department of Education, P.O. 5609, Greenville, Texas 75403-5609. (EDR 05)
HWFICO23DWF-IC253 Header A 0030COMMENT 253 HN Call the U.S. Department of Education at 1-800-621-3115, or write tothe U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609. (EDR 09)
HWFICO23DWF-IC254 Header A 0030COMMENT 254 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received subsidized student loans in excess of loan limits established for the federal loan programs. You should review the information on Page 4.
HWFICO23DWF-IC255 Header A 0030COMMENT 255 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received a total amount of undergraduate student loans that exceeds the loan limits established for the federal loan programs. You should review the information on Page 4.
HWFICO23DWF-IC256 Header A 0030COMMENT 256 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received a total amount of student loans (graduate and undergraduate) that exceeds the loan limits established for the federal loan programs. You should review the information on Page 4.
HWFICO23DWF-IC257 Header A 0030COMMENT 257 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received a total amount of student loans (graduate and undergraduate) that is close to or equal to the loan limits estab- lished for the federal loan programs. Therefore, your eligibility for additional student loans may be limited. You should review the information on Page 4.
HWFICO23DWF-IC258 Header A 0030COMMENT 258 HN Based upon data provided by the National Student Loan Data System NSLDS) and your grade level, we have determined that you may have received a total amount of undergraduate student loans that is closeto or equal to the loan limits established for the federal loan pro-grams. Therefore, your eligibility for additional student loans may be limited. You should review the information on Page 4.
HWFICO23DWF-IC259 Header A 0030COMMENT 259 HN The National Student Loan Data System (NSLDS) indicates you have oneor more student loans in a status associated with identity theft. Before you can receive additional federal student loans, you must contact the financial aid office at your school.
HWFICO23DWF-IC260 Header A 0030COMMENT 260 HN Based upon data provided by the National Student Loan Data System (NSLDS), your grade level, and your dependency status, we have determined that you may have received student loans in excess of loan limits established for the federal loan programs. You should review the information on Page 4.
HWFICO23DWF-IC261 Header A 0030COMMENT 261 HN Comment 261 is not in use.
HWFICO23DWF-IC262 Header A 0030COMMENT 262 HN Comment 262 is not in use.
HWFICO23DWF-IC263 Header A 0030COMMENT 263 HN Comment 263 is not in use.
HWFICO23DWF-IC264 Header A 0030COMMENT 264 HN Comment 264 is not in use.
HWFICO23DWF-IC265 Header A 0030COMMENT 265 HN Comment 265 is not in use.
HWFICO23DWF-IC266 Header A 0030COMMENT 266 HN Comment 266 is not in use.
HWFICO23DWF-IC267 Header A 0030COMMENT 267 HN There is a limit to the total amount of subsidized Federal student loans that you may receive. Please visit https://StudentAid.gov andselect Types of Aid/Loans for more information.
HWFICO23DWF-IC268 Header A 0030COMMENT 268 HN Comment 268 is not in use.
HWFICO23DWF-IC269 Header A 0030COMMENT 269 HN Comment 269 is not in use.
HWFICO23DWF-IC270 Header A 0030COMMENT 270 HN Comment 270 is not in use.
HWFICO23DWF-IC271 Header A 0030COMMENT 271 HN Comment 271 is not in use.
HWFICO23DWF-IC272 Header A 0030COMMENT 272 HN The National Student Loan Data System (NSLDS) indicates that you have one or more student loans that may have been obtained fraudulently. You are not eligible to receive any federal student aid until this issue is resolved.
HWFICO23DWF-IC273 Header A 0030COMMENT 273 HN You changed the answer to your parents' income or income taxes paid.If your parents have completed their 2019 tax return, you should also change the answer to the tax return question (Item 79) to indicate their tax return has been completed. You may make corrections online at https://fafsa.gov and if your parents filed a federal tax return with the IRS, they may be eligible to usethe IRS Data Retrieval Tool, which is the best and easiest way to provide accurate tax information. With just a few simple steps, yourparents transfer that information directly into your FAFSA.
HWFICO23DWF-IC274 Header A 0030COMMENT 274 HN You changed the answer to your income or income taxes paid. If you have completed your 2019 tax return, you should also change the answer to the tax return question (Item 32) to indicate your tax return has been completed. You may make correc- tions online at https://fafsa.gov and if you filed a federal tax return with the IRS, you may be eligible to use the IRS Data Retrieval Tool, which is the best and easiest way to provide accurate tax information. With just a few simple steps, you can transfer that information directly into your FAFSA.
HWFICO23DWF-IC275 Header A 0030COMMENT 275 HN Your identity has been verified by the Social Security Administra- tion. You can now use your FSA ID to make corrections, add school codes, view your federal student loan history, electronically sign your Federal Direct Loan Master Promissory Note, and more. Do not share your FSA ID with anyone. For more information about your FSA ID, visit https://StudentAid.gov/FSAID.
HWFICO23DWF-IC276 Header A 0030COMMENT 276 HN You were issued a Federal Student Aid PIN to sign your 2022-2023 FAFSA. We were unable to verify your name, date of birth, and/or Social Security Number (SSN) with the Social Security Administration(SSA). Therefore, your PIN has been deactivated. Follow the instructions below to resolve your problem with the SSA.
HWFICO23DWF-IC277 Header A 0030COMMENT 277 HN Your parent's identity has been verified by the Social Security Administration. Your parent can now use his or her FSA ID with all Federal Student Aid systems that require it. Your parent should not share his or her FSA ID with anyone, including you. For more information about the FSA ID, your parent can visit https://StudentAid.gov/FSAID
HWFICO23DWF-IC278 Header A 0030COMMENT 278 HN Your parent was issued a Federal Student Aid PIN to sign your 2022- 2023 FAFSA. We were unable to verify your parent's name, date of birth and/or Social Security Number (SSN) with the Social Security -Administration (SSA). Therefore, the PIN has been deactivated. Follow the instructions below to resolve your parent's problem with the SSA.
HWFICO23DWF-IC279 Header A 0030COMMENT 279 HN Your parent's identity has been verified by the Social Security Administration. Your parent can now use his or her FSA ID with all Federal Student Aid systems that require it. Your parent should not share his or her FSA ID with anyone, including you. For more information about the FSA ID, your parent can visit https://StudentAid.gov/FSAID
HWFICO23DWF-IC280 Header A 0030COMMENT 280 HN Your parent was issued a Federal Student Aid PIN to sign your 2022- 2023 FAFSA. We were unable to verify your parent's name, date of birth or Social Security Number (SSN) with the Social Security Ad- ministration (SSA). Therefore, the PIN has been deactivated. Fol- low the instructions below to resolve your parent's problem with theSSA.
HWFICO23DWF-IC281 Header A 0030COMMENT 281 HN We cannot process your FAFSA because of issues related to your eligibility. Contact Federal Stuent Aid at 202-377-4074 for assistance within 30 days from the date of this letter.
HWFICO23DWF-IC282 Header A 0030COMMENT 282 HN You are currently in the process of applying for or have received a Total and Permanent Disability (TPD) Discharge. If you are in theprocess of applying for a TPD discharge, receiving additional fed- eral student aid may affect your eligibility for a TPD discharge. If you have already received a TPD discharge, you must meet addi- tional eligibility requirements to receive further federal student aid. Dependidng on when you received a TPD discharge, receiving additional federal student aid may affect your ability to keep your discharge. Contact the financial aid office at your school for further information.
HWFICO23DWF-IC283 Header A 0030COMMENT 283 HN Issues related to your FAFSA have been resolved and processing of your FAFSA may continue.
HWFICO23DWF-IC284 Header A 0030COMMENT 284 HN This SAR reflects your Financial Aid Administrator's decision to consider you an independent student.
HWFICO23DWF-IC285 Header A 0030COMMENT 285 HN Since you filed your FAFSA over the telephone, you must sign and return this SAR before we can determine your eligibility for federalstudent aid.
HWFICO23DWF-IC286 Header A 0030COMMENT 286 HN We assumed the total amount for your parents' income deductions to be zero in order to calculate your eligibility for federal student aid because the amounts you reported in Items 91a through 91f are high, based on the other income amounts you reported. If our assumption is correct, no further action is required. If it is incorrect, you need to confirm your answers or make the necessary corrections to Items 91a through 91f.
HWFICO23DWF-IC287 Header A 0030COMMENT 287 HN We assumed the total amount for your income deductions to be zero inorder to calculate your eligibility for federal student aid because the amounts you reported in Items 43a through 43f are high, based onthe other income amounts you reported. If our assumption is correct,no further action is required. If it is incorrect, you need to confirm your answers or make the necessary corrections to Items 43a through 43f.
HWFICO23DWF-IC288 Header A 0030COMMENT 288 HN We assumed the total amount for your income deductions to be zero inorder to calculate your eligibility for federal student aid because the amounts you reported in Items 43a through 43f are high, based onthe other income amounts you reported. If our assumption is correct,no further action is required. If it is incorrect, you need to confirm your answers or make the necessary corrections to Items 43a through 43f.
HWFICO23DWF-IC289 Header A 0030COMMENT 289 HN To resolve your TEACH Grant overpayment, your Financial Aid Administrator must contact the school associated with the TEACH Grant overpayment.
HWFICO23DWF-IC290 Header A 0030COMMENT 290 HN To resolve your TEACH Grant overpayment, call the U.S. Department ofEducation at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC291 Header A 0030COMMENT 291 HN To resolve your TEACH Grant overpayment, call the U.S. Department ofEducation at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC292 Header A 0030COMMENT 292 HN To resolve your TEACH Grant overpayment, call the U.S. Department ofEducation at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC293 Header A 0030COMMENT 293 HN To resolve your TEACH Grant overpayment, your Financial Aid Administrator must access NSLDS for additional TEACH Grant overpayment information.
HWFICO23DWF-IC294 Header A 0030COMMENT 294 HN To resolve your TEACH Grant overpayment, your Financial Aid Administrator must access NSLDS for additional TEACH Grant overpayment information.
HWFICO23DWF-IC295 Header A 0030COMMENT 295 HN You did not report information about your parents on your FAFSA and will see comments and highlighted fields on your SAR regarding the missing information. You indicated you have a circumstance that requires you to follow up with your Financial Aid Administrator before your eligibility for federal student aid can be determined.
HWFICO23DWF-IC296 Header A 0030COMMENT 296 HN This SAR reflects the parental data that you have added to your FAFSA.
HWFICO23DWF-IC297 Header A 0030COMMENT 297 HN Comment 297 is not in use.
HWFICO23DWF-IC298 Header A 0030COMMENT 298 HN This SAR has been produced due to a possible change in your eligibility for federal student aid. Please contact your financial aid office for more information.
HWFICO23DWF-IC299 Header A 0030COMMENT 299 HN You did not report information about your parents on your FAFSA because you indicated you are homeless or at risk of homelessness. You will see comments and highlighted fields on your SAR regarding the missing information. You are required to follow up with your Financial Aid Administrator before your eligibility for federal student aid can be determined.
HWFICO23DWF-IC300 Header A 0030COMMENT 300 HN You did not report information about your parents on your FAFSA because you indicated you are only applying for an unsubsidized student loan. You will see comments and highlighted fields on your SAR regarding the missing information and are required to follow up with your Financial Aid Administrator before your eligibility for federal student aid can be determined.
HWFICO23DWF-IC301 Header A 0030COMMENT 301 HN You did not report whether or not you will have your first bachelor's degree by July 1, 2022 (Item 28). You need to provide an answer for this item.
HWFICO23DWF-IC302 Header A 0030COMMENT 302 HN You have changed your marital status in Item 16 or your marital status date in Item 17 to a new response. The answer to these questions must be your marital status as of the date you signed and submitted your FAFSA. If your answers do not reflect your status as of the date you submitted your FAFSA, you need to make a correction to one or both of these items.
HWFICO23DWF-IC303 Header A 0030COMMENT 303 HN Department of Education/ACS, 1-800-835-4611 or 1-800-826-4470 (GA 577)
HWFICO23DWF-IC304 Header A 0030COMMENT 304 HN Department of Education/NAVIENT, 1-800-722-1300 (ED Servicer 578)
HWFICO23DWF-IC305 Header A 0030COMMENT 305 HN Department of Education/FEDLOAN Servicing (PHEAA), 1-800-699-2908 (ED Servicer 579)
HWFICO23DWF-IC306 Header A 0030COMMENT 306 HN Department of Education/NELNET, 1-888-486-4722 (ED Servicer 580)
HWFICO23DWF-IC307 Header A 0030COMMENT 307 HN Department of Education/GREAT LAKES, 1-800-236-4300 (ED Servier 581)
HWFICO23DWF-IC308 Header A 0030COMMENT 308 HN You have changed your parents' marital status in Item 58 or your parents' marital status date in Item 59 to a new response. The answer to these questions must be your parents' marital status as ofthe date you signed and submitted your FAFSA. Unless a Financial AidAdministrator has instructed you to update this information, you need to make a correction to one or both of these items if your answers do not reflect your parents' status as of the date you submitted your FAFSA.
HWFICO23DWF-IC309 Header A 0030COMMENT 309 HN To resolve your Iraq/Afghanistan Service Grant overpayment, your Financial Aid Administrator must contact the school associated with the Iraq/Afghanistan Service Grant overpayment.
HWFICO23DWF-IC310 Header A 0030COMMENT 310 HN To resolve your Iraq/Afghanistan Service Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC311 Header A 0030COMMENT 311 HN To resolve your Iraq/Afghanistan Service Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC312 Header A 0030COMMENT 312 HN To resolve your Iraq/Afghanistan Service Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC313 Header A 0030COMMENT 313 HN To resolve your Iraq/Afghanistan Service Grant overpayments your Financial Aid Administrator must access NSLDS for Iraq/Afghanistan Service Grant overpayment information.
HWFICO23DWF-IC314 Header A 0030COMMENT 314 HN To resolve your Iraq/Afghanistan Service Grant overpayment, your Financial Aid Administrator must access NSLDS for Iraq/Afghanistan Service Grant overpayment information.
HWFICO23DWF-IC315 Header A 0030COMMENT 315 HN DEPT OF ED/MOHELA 1-888-866-4352 (ED Servicer 500)
HWFICO23DWF-IC316 Header A 0030COMMENT 316 HN HESC/EDFinancial, 1-855-337-6884 (ED Servicer 501)
HWFICO23DWF-IC317 Header A 0030COMMENT 317 HN DEPT OF ED/CORNERSTONE -- UHEAA Cornerstone 1-800-663-1662 (ED Servicer 502)
HWFICO23DWF-IC318 Header A 0030COMMENT 318 HN Aspire Resources, 1-855-475-3335 (ED Servicer 503)
HWFICO23DWF-IC319 Header A 0030COMMENT 319 HN DEPT OF ED/GRANITE STATE -- GSMR -- NH, 1-888-556-0022 (ED Servicer 504)
HWFICO23DWF-IC320 Header A 0030COMMENT 320 HN Comment 320 is not in use.
HWFICO23DWF-IC321 Header A 0030COMMENT 321 HN DEPT OF ED/OSLA SERVICING, 1-866-264-9762 (ED Servicer 506)
HWFICO23DWF-IC322 Header A 0030COMMENT 322 HN Comment 322 is not in use.
HWFICO23DWF-IC323 Header A 0030COMMENT 323 HN Comment 323 is not in use.
HWFICO23DWF-IC324 Header A 0030COMMENT 324 HN Comment 324 is not in use.
HWFICO23DWF-IC325 Header A 0030COMMENT 325 HN Comment 325 is not in use.
HWFICO23DWF-IC326 Header A 0030COMMENT 326 HN DEPT OF ED/VSAC SERVICING, 1-888-932-5626 (ED Servicer 511)
HWFICO23DWF-IC327 Header 0000COMMENT 327 HN
HWFICO23DWF-IC340 Header 0000COMMENT 340 HN
HWFICO23DWF-IC343 Header 0000COMMENT 343 HN
HWFICO23DWF-IC344 Header A 0030COMMENT 344 HN DEPT OF ED/ECSI FEDERAL PERKINS SERVICER, 1-866-313-3797 (ED Servicer 529)
HWFICO23DWF-IC345 Header A 0030COMMENT 345 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between four and five school years.
HWFICO23DWF-IC346 Header A 0030COMMENT 346 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received a total amount of Pell Grants that is close to the cumulative total you can receive. Therefore, your eligibility for additional Pell Grants may be limited.
HWFICO23DWF-IC347 Header A 0030COMMENT 347 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you may have received a total amount of Pell Grants that equals or exceeds the cumulative total you can receive.
HWFICO23DWF-IC348 Header A 0030COMMENT 348 HN Based on information from NSLDS, the total amount of Federal Pell Grants that you have received has changed, which may affect your eligibility for additional Pell Grants.
HWFICO23DWF-IC349 Header A 0030COMMENT 349 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Once a total amount of Pell Grant eligibility has been received, a student can no longer receive Pell Grant aid.
HWFICO23DWF-IC350 Header A 0030COMMENT 350 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of up to one half of a school year.
HWFICO23DWF-IC351 Header A 0030COMMENT 351 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between one half and one school year.
HWFICO23DWF-IC352 Header A 0030COMMENT 352 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between one and one and one-half school years.
HWFICO23DWF-IC353 Header A 0030COMMENT 353 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between one and one-half and two school years.
HWFICO23DWF-IC354 Header A 0030COMMENT 354 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between two and two and one-half school years.
HWFICO23DWF-IC355 Header A 0030COMMENT 355 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between two and one-half and three school years.
HWFICO23DWF-IC356 Header A 0030COMMENT 356 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between three and three and one-half school years.
HWFICO23DWF-IC357 Header A 0030COMMENT 357 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between three and one-half and four school years.
HWFICO23DWF-IC358 Header A 0030COMMENT 358 HN Comment 358 is not in use.
HWFICO23DWF-IC359 Header A 0030COMMENT 359 HN Your school may request additional information to determine your eligibility for federal student aid.
HWFICO23DWF-IC360 Header A 0030COMMENT 360 HN Based on data provided by the National Student Loan Data System (NSLDS), your school will request additional information to determine your eligibility for federal student aid and before disbursement of funds can be made.
HWFICO23DWF-IC361 Header A 0030COMMENT 361 HN The parents' marital status you reported in Item 58 does not appear to agree with the parents' tax return filing status reported in Item82. If one of these items is incorrect, you need to make a correc- tion. If the information you reported is correct, make sure the income information reported in Items 84 through 87, 91 and 92 cor- rectly reflects your parents' 2019 income.
HWFICO23DWF-IC362 Header A 0030COMMENT 362 HN The parents' marital status you reported in Item 58 does not appear to agree with the parents' tax return filing status reported in Item81. If one of these items is incorrect, you need to make a correction.
HWFICO23DWF-IC363 Header A 0030COMMENT 363 HN You reported that your parents' marital status is widowed. Review items 84 through 87, 91 and 92 to make sure the income information reported does not include your parent's spouse's 2019 income.
HWFICO23DWF-IC364 Header A 0030COMMENT 364 HN You reported that your parents' marital status is married and also reported that your parents' tax return filing status was qualifying widow(er). Please review items 84 through 87, 91 and 92 to make sure the income information reported correctly reflects your parents' 2019 income.
HWFICO23DWF-IC365 Header A 0030COMMENT 365 HN Your marital status you reported in Item 16 does not appear to agreewith your tax return filing status reported in Item 34. If one of these items is incorrect, you need to make a correction. If the information you reported is correct, make sure the income informa- tion reported in Items 36 through 39, 43 and 44 correctly reflects your 2019 income.
HWFICO23DWF-IC366 Header A 0030COMMENT 366 HN Your marital status you reported in Item 16 does not appear to agreewith your tax return filing status reported in Item 34. If one of these items is incorrect, you need to make a correction.
HWFICO23DWF-IC367 Header A 0030COMMENT 367 HN Your marital status you reported in Item 16 does not appear to agreewith your tax return filing status reported in Item 34. If the in- formation you reported is correct, make sure the income information reported in Items 36 through 39, 43 and 44 correctly reflects your 2019 income.
HWFICO23DWF-IC368 Header A 0030COMMENT 368 HN You reported that your marital status is married and also reported that your tax return filing status was qualifying widow(er). Please review items 36 through 39, 43 and 44 to make sure the income information reported correctly reflects your 2019 income.
HWFICO23DWF-IC369 Header A 0030COMMENT 369 HN The Social Security Administration (SSA) did not confirm the Social Security Number (SSN) you reported for your first parent in Item 60.If you believe the SSN you reported is correct, your parent must contact the SSA. The SSA can be contacted by calling 1-800-772-1213or by visiting https://socialsecurity.gov. If the SSN is incorrect, you must make the necessary correction.
HWFICO23DWF-IC370 Header A 0030COMMENT 370 HN The Social Security Administration (SSA) did not confirm the Social Security Number (SSN) you reported for your second parent in Item 65. If you believe that the SSN you reported is correct, your par- ent must contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSN is incorrect, you must make the necessary correction.
HWFICO23DWF-IC371 Header A 0030COMMENT 371 HN The Social Security Administration (SSA) confirmed the Social Sec- urity Number (SSN) you reported for your second parent on your FAFSA, but did not confirm the SSN you reported for your first par- ent (Item 60). If you believe that the SSN you reported for your first parent is correct, your parent should contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSN is incorrect, you need to make the necessary correction.
HWFICO23DWF-IC372 Header A 0030COMMENT 372 HN The Social Security Administration (SSA) confirmed the Social Sec- urity Number (SSN) you reported for your first parent on your FAFSA,but did not confirm the SSN you reported for your second parent (Item 64). If you believe that the SSN you reported for your secondparent is correct, your parent should contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSN is incorrect, you need to make the necessary correction.
HWFICO23DWF-IC373 Header A 0030COMMENT 373 HN Your first parent's date of birth as reported on your FAFSA does notmatch the date of birth in the Social Security Administration's (SSA) records for your first parent's Social Security Number (SSN). Therefore, you must correct your first parent's SSN (Item 60) or date of birth (Item 63). If your parent's date of birth is correct,you must confirm it by re-entering it in Item 63. If you confirm your parent's date of birth, your parent should also contact the SSAto make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC374 Header A 0300COMMENT 374 HN We previously indicated that your first parent's date of birth in Item 63 does not match the date of birth in the Social Security Ad- ministration's (SSA) records for your first parent's Social SecurityNumber (SSN). If your first parent's SSN (Item 60) or date of birthis incorrect, you need to make a correction. If your parent's SSN and date of birth are correct, your parent should contact the SSA tomake sure they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC375 Header A 0030COMMENT 375 HN Your second parent's date of birth as reported on your FAFSA does not match the date of birth in the Social Security Administration's (SSA) records for your second parent's Social Security Number (SSN).Therefore, you must correct your second parent's SSN (Item 64) or date of birth (Item 67). If your parent's date of birth is correct,you must confirm it by re-entering it in Item 67. If you confirm your parent's date of birth, your parent should also contact the SSAto make sure they correct it in their records. The SSA can be con- tacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC376 Header A 0030COMMENT 376 HN We previously indicated that your second parent's date of birth in Item 67 does not match the date of birth in the Social Security Administration's (SSA) records for your second parent's Social Security Number (SSN). If your second parent's SSN (Item 64) or date of birth is incorrect, you need to make a correction. If your parent's SSN and date of birth are correct, your parent should con- tact the SSA to make sure they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC377 Header A 0030COMMENT 377 HN Your first parent's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for your first parent's Social Security Number (SSN). Therefore, you must correct your first parent's SSN (Item 60) or name (Items 61 and62). If your parent's name is correct, you must confirm it by re- entering your parent's last name and first name initial in Items 61 and 62. If you confirm your parent's name, your parent should also contact the SSA to make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC378 Header A 0030COMMENT 378 HN We previously indicated that your first parent's name as reported onyour FAFSA does not match the name in the Social Security Admini- stration's (SSA) records for your first parent's Social Security Number (SSN). If your parent's SSN (Item 60) or name (Items 61 or 62) is incorrect, you need to make the necessary corrections. If your parent's SSN and name are correct, your parent should contact the SSA to make sure they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC379 Header A 0030COMMENT 379 HN Your second parent's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for your second parent's Social Security Number (SSN). Therefore, you must correct your second parent's SSN (Item 64) or name (Items 65 and 66). If your parent's name is correct, you must confirm it by re-entering your parent's last name and first name initial in Items 65 and 66. If you confirm your parent's name, your parent should also contact the SSA to make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC380 Header A 0030COMMENT 380 HN We previously indicated that your second parent's name as reported on your FAFSA does not match the name in the Social Security Admin- istration's (SSA) records for your second parent's Social Security Number (SSN). If your parent's SSN (Item 64) or name (Items 65 or 66) is incorrect, you need to make the necessary corrections. If your parent's SSN and name are correct, your parent should contact the SSA to make sure they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC381 Header A 0030COMMENT 381 HN The date of birth you reported for your second parent on your FAFSA matches the Social Security Administration's (SSA) records, but the date of birth you reported for your first parent does not match the SSA's records. Your first parent should review the date of birth inItem 63 and either confirm the date you have reported or make the necessary correction.
HWFICO23DWF-IC382 Header A 0030COMMENT 382 HN The date of birth you reported for your first parent on your FAFSA matches the Social Security Administration's records, but the date of birth you reported for your second parent does not match the SSA's records. Your second parent should review the date of birth in Item 67 and either confirm the date you reported or make the necessary correction.
HWFICO23DWF-IC383 Header A 0030COMMENT 383 HN The name you reported for your first parent on your FAFSA does not match the Social Security Administration's records. If the last name and first initial you reported in Items 61 and 62 are correct, contact the SSA. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC384 Header A 0030COMMENT 384 HN The name you reported for your second parent on your FAFSA does not match the Social Security Administration's (SSA) records. If the last name and first initial you reported in Items 65 and 66 are correct, contact the SSA. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC385 Header A 0030COMMENT 385 HN According to the Social Security Administration, the Social SecurityNumber you provided for your first parent in Item 60 belongs to a deceased person. Please review your answer to Item 60 and make a correction if necessary.
HWFICO23DWF-IC386 Header A 0030COMMENT 386 HN According to the Social Security Administration, the Social SecurityNumber you provided for your second parent in Item 64 belongs to a deceased person. Please review your answer to Item 64 and make a correction if necessary.
HWFICO23DWF-IC387 Header A 0030COMMENT 387 HN You must report a valid Social Security Number (SSN), name and date of birth for your first parent or second parent. If your parent does not have an SSN you must correct Item 60 and/or Item 64 to all zeroes.
HWFICO23DWF-IC388 Header A 0030COMMENT 388 HN You reported that your parent(s) did file or will file a 2019 incometax return (Item 79) but also reported that your first parent does not have a Social Security Number (Item 60). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC389 Header A 0030COMMENT 389 HN You reported that your parent(s) did file or will file a 2019 incometax return (Item 79) but also reported that your second parent does not have a Social Security Number (Item 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC390 Header A 0030COMMENT 390 HN We were unable to verify your eligibility for federal student aid with one or more other federal agencies through computer matching programs. Your school will contact you if additional information isneeded.
HWFICO23DWF-IC391 Header A 0030COMMENT 391 HN You reported that your parent(s) did file or will file a 2019 incometax return (Item 79) but also reported that your first parent and your second parent do not have a Social Security Number (Items 60 and 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC392 Header A 0030COMMENT 392 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level we have determined that you may have received a total amount of student loans (graduate and undergrad- uate) that exceeds the loan limits established for the federal loan programs. However, you may have reaffirmed the excess debt with yourloan servicer, restoring your eligibility to participate in the federal student aid programs. You should review the information on Page 4.
HWFICO23DWF-IC393 Header A 0030COMMENT 393 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received a total amount of undergraduate student loans that exceeds the loan limits established for the federal loan programs. However, you may have reaffirmed the excess debt with your loan servicer, restoring your eligibility to participate in the federal student aid programs. You should review the information on Page 4.
HWFICO23DWF-IC394 Header A 0030COMMENT 394 HN You have reported the same Social Security Number for your parents (Items 60 and 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC395 Header A 0030COMMENT 395 HN Comment 395 is not in use.
HWFICO23DWF-IC396 Header A 0030COMMENT 396 HN Comment 396 is not in use.
HWFICO23DWF-IC397 Header A 0030COMMENT 397 HN Comment 397 is not in use.
HWFICO23DWF-IC398 Header A 0030COMMENT 398 HN Comment 398 is not in use.
HWFICO23DWF-IC399 Header A 0030COMMENT 399 HN Comment 399 is not in use.
HWFICO23DWF-IC400 Header A 0030COMMENT 400 HN Your Financial Aid Administrator may contact you to resolve any issues related to parental data reported on your FAFSA.
HWFICO23DWF-IC401 Header A 0030COMMENT 401 HN Your Financial Aid Administrator may contact you to resolve any issues related to data reported on your FAFSA.
HWFICO23DWF-IC402 Header A 0030COMMENT 402 HN You may be eligible for addtional aid through the Children of Fallen Heroes Scholarship Act. For additional information, please contact your Financial Aid Administrator.
HWFICO23DWF-IC403 Header A 0030COMMENT 403 HN Review the responses to the questions about your parents' type of tax return (Item 80) and whether they filed a Schedule 1 (Item 82) If your parents filed a foreign tax return, they wiould not have been able to file a Schedule 1. Please review your answers and make the necessary corrections.
HWFICO23DWF-IC404 Header A 0030COMMENT 404 HN Review the responses to the questions about your type of tax return (Item 33) and whether you filed a Schedule 1 (Item 35). If you filed a foreign tax return, you would not have been able to filea Schedule 1. Please review your answers and make the necessary corrections.
HWFICO23DWF-IC901 Header A 0030COMMENT 901 HN Comment 901 is not in use.
HWFICO23DWF-IC902 Header A 0030COMMENT 902 HN Comment 902 is not in use.
HWFICO23DWF-IS-C-COM09 Header 0000COMMENT 902 HN
==========================================
= WFISR23D
==========================================
HWFISR23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFISR23DWF-IS-A-COL1 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL10 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL2 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL3 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL4 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL5 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL6 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL7 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL8 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL9 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-HSG1 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG10 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG2 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG3 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG4 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG5 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG6 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG7 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG8 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG9 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-PREP-EIN Header A 0090APPLICATION PREPARER EIN NN Reference: WF-2223-FEDERAL.WF-FE-A-PREP-SGN
HWFISR23DWF-IS-A-PREP-SGN Header A 0010APPLICATION PREPARER SIGNATURE NXH WF23FEDDWF-FE-A-PREP-SGN Reference: WF-2223-FEDERAL.WF-FE-A-PREP-SGN
HWFISR23DWF-IS-A-PREP-SSN Header A 0090APPLICATION PREPARER SSN NN Reference: WF-2223-FEDERAL.WF-FE-A-PREP-SGN
HWFISR23DWF-IS-A-SGN Header A 0010APPLICATION SIGNATURE NXH WF23FEDDWF-FE-A-SGN Reference: WF-2223-FEDERAL.WF-FE-A-SGN
HWFISR23DWF-IS-A-SGN-DATE Header A 0080APPLICATION SIGNATURE DATE NN Reference: WF-2223-FEDERAL.WF-FE-A-SGN
HWFISR23DWF-IS-A-SSREG Header A 0010SELECTIVE SERVICE REGISTRATION NXH WF23FEDDWF-FE-A-SSREG Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
HWFISR23DWF-IS-AD-CITY Header A 0160STUDENT ADDRESS CITY NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-AD-PHONE Header A 0100STUDENT TELEPHONE NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-AD-STATE Header A 0020STUDENT ADDRESS STATE NXH WWSTDNTDWW-ST-AD1-STATE Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-AD-STRT Header A 0350STUDENT ADDRESS STREET LINE NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-AD-ZIP Header A 0050STUDENT ADDRESS ZIP CODE NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-C-ADDR-CHG Header A 0010ADDRESS CHANGE FLAG NXH WF23FEDDWF-FE-C-ADDR-CHG Reference: WF-2223-FEDERAL.WF-FE-C-ADDR-CHG
HWFISR23DWF-IS-C-ATHRSH-PAR Header A 0010PARENT ASSETS EXCEED THRESHOLD NXH WF23FEDDWF-FE-C-ATHRSH-STU Reference: WF-2223-FEDERAL.WF-FE-C-ATHRSH-PAR
HWFISR23DWF-IS-C-ATHRSH-STU Header A 0010STUDENT ASSETS EXCEED THRSHOLD NXH WF23FEDDWF-FE-C-ATHRSH-STU Reference: WF-2223-FEDERAL.WF-FE-C-ATHRSH-STU
HWFISR23DWF-IS-C-AUTO-ZERO Header A 0010AUTOMATIC ZERO EFC NXH WF23FEDDWF-FE-C-AUTO-ZERO Reference: WF-2223-FEDERAL.WF-FE-C-AUTO-ZERO
HWFISR23DWF-IS-C-BATCH-YR Header A 0010BATCH YEAR NXH WF23FEDDWF-FE-C-BATCH-YR Reference: WF-2223-FEDERAL.WF-FE-C-BATCH-YR
HWFISR23DWF-IS-C-CFLAG Header A 0010SAR C FLAG NXH WF23FEDDWF-FE-C-CFLAG Reference: WF-2223-FEDERAL.WF-FE-C-CFLAG
HWFISR23DWF-IS-C-CFLAG-CHG Header A 0010SAR C CHANGE FLAG NXH WF23FEDDWF-FE-C-CFLAG-CHG Reference: WF-2223-FEDERAL.WF-FE-C-CFLAG-CHG
HWFISR23DWF-IS-C-CHILD-HERO Header A 0010CHILD OF FALLEN HERO IND
VWFISR23DWF-IS-C-CHILD-HERO 1 0000 Eligible for schlshp
VWFISR23DWF-IS-C-CHILD-HERO 2 0000 Inelig for Schlshp
HWFISR23DWF-IS-C-COM01 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM02 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM03 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM04 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM05 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM06 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM07 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM08 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM09 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM10 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM11 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM12 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM13 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM14 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM15 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM16 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM17 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM18 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM19 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM20 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COMPUTE Header A 0030CPS COMPUTE BATCH NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-C-BATCH-CMP
HWFISR23DWF-IS-C-COR-FLAG Header A 1950CORRECTION FLAGS NXH WF23FEDDWF-FE-C-COR-FLAG Reference: WF-2223-FEDERAL.WF-FE-C-COR-FLAG
HWFISR23DWF-IS-C-COR-INIT Header A 0010CORRECTION SOURCE NXH WF23FEDDWF-FE-C-COR-INIT Reference: WF-2223-FEDERAL.WF-FE-C-COR-INIT
HWFISR23DWF-IS-C-COR-TRAN Header A 0020CORRECTION TRANSACTION NN Reference: WF-2223-FEDERAL.WF-FE-C-COR-TRAN
HWFISR23DWF-IS-C-DEP Header A 0010DEPENDENCY STATUS NXH WF23FEDDWF-FE-C-DEP Reference: WF-2223-FEDERAL.WF-FE-C-DEP
HWFISR23DWF-IS-C-EFC-CHG Header A 0010EFC CHANGE FLAG NXH WF23FEDDWF-FE-C-EFC-CHG Reference: WF-2223-FEDERAL.WF-FE-C-EFC-CHG
HWFISR23DWF-IS-C-ELEC-INST Header A 0010ELEC INSTITUTION INDICATOR NXH WF23FEDDWF-FE-C-ELEC-INST Reference: WF-2223-FEDERAL.WF-FE-C-ELEC-INST
HWFISR23DWF-IS-C-ETI Header A 0010ELEC TRANSACTION INDICATOR NXH WF23FEDDWF-FE-C-ETI Reference: WF-2223-FEDERAL.WF-FE-C-ETI
HWFISR23DWF-IS-C-ETI-DEST Header A 0070ETI DESTINATION ID NN Reference: WF-2223-FEDERAL.WF-FE-C-ETI-DEST
HWFISR23DWF-IS-C-FC1 Header A 0060PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-AAI Header A 0080ADJUSTED AVAILABLE INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-AI Header A 0080AVAILABLE INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-APA Header A 0090ASSET PROTECTION ALLOWANCE NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-ATI Header A 0070ALLOWANCES AGAINST INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-CAI Header A 0070CONTRIB FROM AVAILABLE INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-DNW Header A 0090DISCRETIONARY NET WORTH NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-EA Header A 0070EMPLOYMENT ALLOWANCE NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-FISAP Header A 0080PRIMARY FC FISAP INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1-FISAP
HWFISR23DWF-IS-C-FC1-FRMULA Header A 0010PRIMARY FC FORMULA NXH WF23FEDDWF-FE-C-FC1-FRMULA Reference: WF-2223-FEDERAL.WF-FE-C-FC1-FRMULA
HWFISR23DWF-IS-C-FC1-IPA Header A 0070INCOME PROTECTION ALLOWANCE NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M01 Header A 00601-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M02 Header A 00602-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M03 Header A 00603-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M04 Header A 00604-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M05 Header A 00605-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M06 Header A 00606-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M07 Header A 00607-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M08 Header A 00608-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M10 Header A 006010-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M11 Header A 006011-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M12 Header A 006012-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-NW Header A 0090NET WORTH NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-PC Header A 0070PARENT CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-PCA Header A 0070CONTRIBUTION FROM ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SATI Header A 0070STUDENT ALWNCES AGAINST INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SCA Header A 0070STUDENT ASSET CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SDNW Header A 0090STUDENT DISCRETIONARY NET WRTH NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SIC Header A 0070STUDENT INCOME CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SIGREJ Header A 0060PRIMARY FC (SIGNATURE REJECT) NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1-SIGREJ
HWFISR23DWF-IS-C-FC1-STI Header A 0080STUDENT TOTAL INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-STX Header A 0070STATE TAX ALLOWANCE NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-TI Header A 0080TOTAL INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-TPC Header A 0070TOTAL PARENT CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-TSC Header A 0070TOTAL STUDENT CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-GRAD Header A 0010GRADUATE STATUS NXH WF23FEDDWF-FE-C-GRAD Reference: WF-2223-FEDERAL.WF-FE-C-GRAD
HWFISR23DWF-IS-C-HIL-FLAG Header A 1950HIGHLIGHT FLAGS NXH WF23FEDDWF-FE-C-HIL-FLAG Reference: WF-2223-FEDERAL.WF-FE-C-HIL-FLAG
HWFISR23DWF-IS-C-IRS-AGI-PAR Header A 0010PARENT IRS AGI DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-AGI-PAR
HWFISR23DWF-IS-C-IRS-AGI-STU Header A 0010STUDENT IRS AGI DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-AGI-STU
HWFISR23DWF-IS-C-IRS-DIST-PARHeader 0000 WF23FEDDWF-FE-C-IRS-DIST-PAR
HWFISR23DWF-IS-C-IRS-DSP-PAR Header A 0010PARENT IRS DISPLAY FLAG NXH WF23FEDDWF-FE-C-IRS-DSP-PAR Reference: WF23FEDD.WF-FE-C-IRS-DSP-PAR
HWFISR23DWF-IS-C-IRS-DSP-STU Header A 0010STUDENT IRS DISPLAY FLAG NXH WF23FEDDWF-FE-C-IRS-DSP-STU Reference: WF23FEDD.WF-FE-C-IRS-DSP-STU
HWFISR23DWF-IS-C-IRS-DSTP-PARHeader A 0010PAR IRS IRA PEN/DIST DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU
HWFISR23DWF-IS-C-IRS-DSTP-STUHeader A 0010STU IRS IRA DIST/PEN DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU
HWFISR23DWF-IS-C-IRS-EDCR-PARHeader A 0010PAR IRS ED CREDITS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-EDCR-PAR
HWFISR23DWF-IS-C-IRS-EDCR-STUHeader A 0010STU IRS ED CREDITS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-EDCR-STU
HWFISR23DWF-IS-C-IRS-FIT-PAR Header A 0010PARENT IRS FIT DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-FIT-PAR
HWFISR23DWF-IS-C-IRS-FIT-STU Header A 0010STUDENT IRS FIT DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-FIT-STU
HWFISR23DWF-IS-C-IRS-FLST-PARHeader A 0010PAR IRS FILE STATUS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-FLST-PAR
HWFISR23DWF-IS-C-IRS-FLST-STUHeader A 0010STU IRS FILE STATUS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-FLST-STU
HWFISR23DWF-IS-C-IRS-INT-PAR Header A 0010PAR IRS INTEREST INC DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-INT-PAR
HWFISR23DWF-IS-C-IRS-INT-STU Header A 0010STU IRS INTEREST INC DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-INT-STU
HWFISR23DWF-IS-C-IRS-IRA-PAR Header A 0010PAR IRS IRA PAYMENTS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-IRA-PAR
HWFISR23DWF-IS-C-IRS-IRA-STU Header A 0010STU IRS IRA PAYMENTS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-IRA-STU
HWFISR23DWF-IS-C-IRS-RET-PAR Header A 0010PAR IRS RETURN TYPE DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-RET-PAR
HWFISR23DWF-IS-C-IRS-RET-STU Header A 0010STU IRS RETURN TYPE DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-RET-STU
HWFISR23DWF-IS-C-IRS-SCD1-PARHeader A 0010PAR IRS SCHED 1 DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent filed Schedule 1 value onthe FAFSA, as compared to the parent's tax return,for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA onthe web. If the value is 1 (filed Schedule 1 was retrieved from the tax return and not subsequentlychanged), the Schedule 1 answer does not need to be verified if the parent is selected for verification.
HWFISR23DWF-IS-C-IRS-SCD1-STUHeader A 0010STU IRS SCHED 1 DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student filed schedule 1 value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the web. If the value is 1 (Filed Sched 1was retrieved from the tax return and not subsequently changed), the Schedule 1 answer does not need to be verified if the student is selected for verification.
HWFISR23DWF-IS-C-IRSREQ-PAR Header A 0020PARENT IRS DATA REQUEST NXH WF23FEDDWF-FE-C-IRSREQ-STU Reference: WF-2223-FEDERAL.WF-FE-C-IRSREQ-PAR
HWFISR23DWF-IS-C-IRSREQ-STU Header A 0020STUDENT IRS DATA REQUEST NXH WF23FEDDWF-FE-C-IRSREQ-STU Reference: WF-2223-FEDERAL.WF-FE-C-IRSREQ-STU
HWFISR23DWF-IS-C-MATCH-CIT Header A 0010SSA CITIZENSHIP MATCH NXH WF23FEDDWF-FE-C-MATCH-CIT Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-CIT
HWFISR23DWF-IS-C-MATCH-DHS Header A 0010DHS MATCH NXH WF23FEDDWF-FE-C-MATCH-DHS Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-DHS
HWFISR23DWF-IS-C-MATCH-DHS2 Header A 0010DHS SECONDARY MATCH NXH WF23FEDDWF-FE-C-MATCH-DHS2 Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-DHS2
HWFISR23DWF-IS-C-MATCH-DOD Header A 0010DOD MATCH NXH WF23FEDDWF-FE-C-MATCH-DOD Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-DOD
HWFISR23DWF-IS-C-MATCH-HS Header A 0010HIGH SCHOOL MATCH NXH WF23FEDDWF-FE-C-MATCH-HS Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-HS
HWFISR23DWF-IS-C-MATCH-NSL Header A 0010NSLDS MATCH NXH WF23FEDDWF-FE-C-MATCH-NSL Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-NSL
HWFISR23DWF-IS-C-MATCH-P1 Header A 0010PARENT 1 SOCIAL SECURITY MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN Reference: WF23FEDD.WF-FE-C-MATCH-P1
HWFISR23DWF-IS-C-MATCH-P2 Header A 0010PARENT 2 SOCIAL SECURITY MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN Reference: WF23FEDD.WF-FE-C-MATCH-P1
HWFISR23DWF-IS-C-MATCH-SS Header A 0010SELECTIVE SERVICE MATCH NXH WF23FEDDWF-FE-C-MATCH-SS Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-SS
HWFISR23DWF-IS-C-MATCH-SSN Header A 0010SOCIAL SECURITY SSN/NAME MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-SSN
HWFISR23DWF-IS-C-MATCH-VA Header A 0010VETERANS ADMINISTRATION MATCH NXH WF23FEDDWF-FE-C-MATCH-VA Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-VA
HWFISR23DWF-IS-C-MULT-INST Header A 0100MULTIPLE INSTITUTION FLAG NXH WF23FEDDWF-FE-C-MULT-INST Reference: WF-2223-FEDERAL.WF-FE-C-MULT-INST
HWFISR23DWF-IS-C-NSLDS-PS1 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-2223-FEDERAL.WF-FE-C-NSLDS-PS1
HWFISR23DWF-IS-C-NSLDS-PS2 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-2223-FEDERAL.WF-FE-C-NSLDS-PS1
HWFISR23DWF-IS-C-NSLDS-PS3 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-2223-FEDERAL.WF-FE-C-NSLDS-PS1
HWFISR23DWF-IS-C-NSLDS-TRAN Header A 0020NSLDS TRANSACTION NN Reference: WF-2223-FEDERAL.WF-FE-C-NSLDS-TRAN
HWFISR23DWF-IS-C-ORIG-DATE Header A 0080APPLICATION RECEIVED DATE NN Reference: WF-2223-FEDERAL.WF-FE-C-ORIG-DATE
HWFISR23DWF-IS-C-ORIG-SRCE Header A 0010ORIGINAL APPLICATION SOURCE NXH WF23FEDDWF-FE-C-ORIG-SRCE Reference: WF-2223-FEDERAL.WF-FE-C-ORIG-SRCE
HWFISR23DWF-IS-C-ORIG-TYPE Header A 0010ORIGINAL APPLICATION TYPE NXH WF23FEDDWF-FE-C-ORIG-TYPE Reference: WF-2223-FEDERAL.WF-FE-C-ORIG-SRCE
HWFISR23DWF-IS-C-PELL-ELIG Header A 0010PELL ELIGIBILITY NXH WF23FEDDWF-FE-C-PELL-ELIG Reference: WF-2223-FEDERAL.WF-FE-C-PELL-ELIG
HWFISR23DWF-IS-C-PROC-DATE Header A 0080TRANSACTION PROCESSING DATE NN Reference: WF-2223-FEDERAL.WF-FE-C-PROC-DATE
HWFISR23DWF-IS-C-PUSHED Header A 0010ISIR PUSHED FLAG NXH WF23FEDDWF-FE-C-PUSHED Reference: WF-2223-FEDERAL.WF-FE-C-PUSHED
HWFISR23DWF-IS-C-REC-TYPE Header A 0010RECORD TYPE NXH WF23FEDDWF-FE-C-REC-TYPE Reference: WF-2223-FEDERAL.WF-FE-C-REC-TYPE
HWFISR23DWF-IS-C-REJ-CHG Header A 0010REJECT STATUS CHANGE FLAG NXH WF23FEDDWF-FE-C-REJ-CHG Reference: WF-2223-FEDERAL.WF-FE-C-REJ-CHG
HWFISR23DWF-IS-C-REJ1 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ2 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ3 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ4 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ5 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ6 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ7 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REPROC-RSN Header A 0020REPROCESSING REASON NXH WF23FEDDWF-FE-C-REPROC-RSN Reference: WF-2223-FEDERAL.WF-FE-C-REPROC-RSN
HWFISR23DWF-IS-C-SIMP-NEEDS Header A 0010SIMPLIFIED NEEDS TEST NXH WF23FEDDWF-FE-C-SIMP-NEEDS Reference: WF-2223-FEDERAL.WF-FE-C-SIMP-NEEDS
HWFISR23DWF-IS-C-SP-CIRC Header A 0010SPECIAL CIRCUMSTANCE NXH WF23FEDDWF-FE-C-SP-CIRC Reference: WF-2223-FEDERAL.WF-FE-C-SP-CIRC
HWFISR23DWF-IS-C-SSN-DUP Header A 0010DUPLICATE SSN NXH WF23FEDDWF-FE-C-SSN-DUP Reference: WF-2223-FEDERAL.WF-FE-C-SSN-DUP
HWFISR23DWF-IS-C-SSN-NM-CHG Header A 0010NAME/SSN CHANGE FLAG NXH WF23FEDDWF-FE-C-SSN-NM-CHG Reference: WF-2223-FEDERAL.WF-FE-C-SSN-NM-CHG
HWFISR23DWF-IS-C-TRAN-DATE Header A 0080TRANSACTION RECEIVED DATE NN Reference: WF-2223-FEDERAL.WF-FE-C-TRAN-DATE
HWFISR23DWF-IS-C-TRAN-SRCE Header A 0010TRANSACTION SOURCE NXH WF23FEDDWF-FE-C-TRAN-SRCE Reference: WF-2223-FEDERAL.WF-FE-C-TRAN-SRCE
HWFISR23DWF-IS-C-TRAN-TYPE Header A 0010TRANSACTION TYPE NXH WF23FEDDWF-FE-C-TRAN-TYPE Reference: WF-2223-FEDERAL.WF-FE-C-TRAN-SRCE
HWFISR23DWF-IS-C-VER Header A 0010VERIFICATION SELECTION NXH WF23FEDDWF-FE-C-VER Reference: WF-2223-FEDERAL.WF-FE-C-VER
HWFISR23DWF-IS-C-VER-CHG Header A 0010VERIFICATION STATUS CHNGE FLAG NXH WF23FEDDWF-FE-C-VER-CHG Reference: WF-2223-FEDERAL.WF-FE-C-VER-CHG
HWFISR23DWF-IS-C-VER-DHS Header A 0130DHS VERIFICATION NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-C-VER-DHS
HWFISR23DWF-IS-C-VER-DOD Header A 0080DOD VERIFICATION DATE NN Reference: WF-2223-FEDERAL.WF-FE-C-VER-DOD
HWFISR23DWF-IS-C-VER-FLAG Header A 1950FAFSA DATA VERIFY FLAGS NXH WF23FEDDWF-FE-C-VER-FLAG Reference: WF-2223-FEDERAL.WF-FE-C-VER-FLAG
HWFISR23DWF-IS-C-VER-HS Header A 0120HIGH SCHOOL VERIFICATION CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-VER-HS
HWFISR23DWF-IS-C-VER-NSL Header A 0010NSLDS MATCH RESULTS NXH WF23FEDDWF-FE-C-VER-NSL Reference: WF-2223-FEDERAL.WF-FE-C-VER-NSL
HWFISR23DWF-IS-C-VER-SS Header A 0010SEL SERV REG VERIFICATION NXH WF23FEDDWF-FE-C-VER-SS Reference: WF-2223-FEDERAL.WF-FE-C-VER-SS
HWFISR23DWF-IS-C-VER-TRACK Header A 0040VERIFICATION TRACKING FLAG NXH WF23FEDDWF-FE-C-VER-TRACK Reference: WF-2223-FEDERAL.WF-FE-C-VER-TRACK
HWFISR23DWF-IS-CAP-AFI-TOTAL Header A 0080PARENT AFI TOTAL (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-AGI Header A 0070PARENT ADJ GROSS INCOME (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-ATHRSH Header A 0010PARENT ASSET EXC THRSHLD (ASM) NXH WF23FEDDWF-FE-CAS-ATHRSH Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-FAM-COL Header A 0010PARENT FAMILY IN COLLEGE (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-FAM-SIZE Header A 0020PARENT FAMILY SIZE (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-FED-TAX Header A 0060PARENT FEDERAL TAX (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-FILER Header A 0010PARENT TAX FILER (ASM) NXH WF23FEDDWF-FE-CAP-FILER Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-MAR Header A 0010PARENT MARITAL STATUS (ASM) NXH WF23FEDDWF-FE-CAP-MAR Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-P1-INC Header A 0070PARENT 1 WORK INCOME (ASM) NNH WF23FEDDWF-FE-CAP-MAR
HWFISR23DWF-IS-CAP-P1-SSN Header A 0010PARENT 1 SSN (ASM) NN WF23FEDDWF-FE-CAP-P1-SSN
HWFISR23DWF-IS-CAP-P2-INC Header A 0070PARENT 2 WORK INCOME (ASM) NN WF23FEDDWF-FE-CAP-P1-SSN
HWFISR23DWF-IS-CAP-P2-SSN Header A 0010PARENT 2 SSN (ASM) NN WF23FEDDWF-FE-CAP-P1-SSN
HWFISR23DWF-IS-CAS-AFI-TOTAL Header A 0080STUDENT AFI TOTAL (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-AGI Header A 0070STUDENT ADJ GROSS INCOME (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-ATHRSH Header A 0010STUDENT ASSET EXC THRSHD (ASM) NXH WF23FEDDWF-FE-CAS-ATHRSH Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-CIT Header A 0010STUDENT CITIZ STATUS (ASM) NXH WF23FEDDWF-FE-CAS-CIT Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-FAM-COL Header A 0010STUDENT FAM IN COLLEGE (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-FAM-SIZE Header A 0020STUDENT FAMILY SIZE (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-FED-TAX Header A 0070STUDENT FEDERAL TAX (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-FILER Header A 0010STUDENT TAX FILER (ASM) NXH WF23FEDDWF-FE-CAS-FILER Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-MAR Header A 0010STUDENT MARITAL STATUS (ASM) NXH WF23FEDDWF-FE-CAS-MAR Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-SP-INC Header A 0070SPOUSE WORK INCOME (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-ST-INC Header A 0070STUDENT WORK INCOME (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-CHL Header A 0010STUDENT CHILD DEPS TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-CHL Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-DEP Header A 0010STUDENT OTHER DEPS TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-DEP Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-DOB Header A 0010STUDENT DT OF BIRTH TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-DOB Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-HMLS Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-MAR Header A 0010STUDENT MARITAL TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-MAR Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-UYHU Header A 0010STUDENT UNACC (HUD) TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-UYHU Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-UYSD Header A 0010STUDENT UNACC (SDL) TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-UYSD Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CCP-AFI-TOTAL Header A 0080PARENT TOTAL AFI (CALC) NN Reference: WF-2223-FEDERAL.WF-FE-CCS-AFI-TOTAL
HWFISR23DWF-IS-CCP-UTX-TOTAL Header A 0080PARENT TOTAL UTX (CALC) NN Reference: WF-2223-FEDERAL.WF-FE-CCS-AFI-TOTAL
HWFISR23DWF-IS-CCS-AFI-TOTAL Header A 0080STUDENT TOTAL AFI (CALC) NN Reference: WF-2223-FEDERAL.WF-FE-CCS-AFI-TOTAL
HWFISR23DWF-IS-CCS-UTX-TOTAL Header A 0080STUDENT TOTAL UTX (CALC) NN Reference: WF-2223-FEDERAL.WF-FE-CCS-AFI-TOTAL
HWFISR23DWF-IS-DOB Header A 0080STUDENT DATE OF BIRTH NN Reference: WF-2223-FEDERAL.WF-FE-DOB
HWFISR23DWF-IS-EMAIL Header A 0500STUDENT E-MAIL ADDRESS NN Reference: WF-2223-FEDERAL.WF-FE-EMAIL
HWFISR23DWF-IS-F-ASM1-OVR Header A 0010ASSUMPTION 1 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM1-OVR
HWFISR23DWF-IS-F-ASM2-OVR Header A 0010ASSUMPTION 2 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM2-OVR
HWFISR23DWF-IS-F-ASM3-OVR Header A 0010ASSUMPTION 3 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM3-OVR
HWFISR23DWF-IS-F-ASM4-OVR Header A 0010ASSUMPTION 4 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM4-OVR
HWFISR23DWF-IS-F-ASM5-OVR Header A 0010ASSUMPTION 5 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM5-OVR
HWFISR23DWF-IS-F-ASM6-OVR Header A 0010ASSUMPTION 6 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM6-OVR
HWFISR23DWF-IS-F-COLLEGE Header A 0060FAA COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-F-COLLEGE
HWFISR23DWF-IS-F-DEP-OVR Header A 0010DEPENDENCY OVERRIDE NXH WF23FEDDWF-FE-F-DEP-OVR Reference: WF-2223-FEDERAL.WF-FE-F-DEP-OVR
HWFISR23DWF-IS-F-PROF-JUDG Header A 0010PROFESSIONAL JUDGMENT NXH WF23FEDDWF-FE-F-PROF-JUDG Reference: WF-2223-FEDERAL.WF-FE-F-PROF-JUDG
HWFISR23DWF-IS-F-REJ12-OVR Header A 0010REJECT 12 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJ12-OVR
HWFISR23DWF-IS-F-REJ20-OVR Header A 0010REJECT 20 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJ20-OVR
HWFISR23DWF-IS-F-REJ21-OVR Header A 0010REJECT 21 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJ21-OVR
HWFISR23DWF-IS-F-REJ3-OVR Header A 0010REJECT 3 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJ3-OVR
HWFISR23DWF-IS-F-REJA-OVR Header A 0010REJECT A OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJA-OVR
HWFISR23DWF-IS-F-REJB-OVR Header A 0010REJECT B OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJB-OVR
HWFISR23DWF-IS-F-REJC-OVR Header A 0010REJECT C OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJC-OVR
HWFISR23DWF-IS-F-REJG-OVR Header A 0010REJECT G OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJG-OVR
HWFISR23DWF-IS-F-REJJ-OVR Header A 0010REJECT J OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJJ-OVR
HWFISR23DWF-IS-F-REJK-OVR Header A 0010REJECT K OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJK-OVR
HWFISR23DWF-IS-F-REJN-OVR Header A 0010REJECT N OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJN-OVR
HWFISR23DWF-IS-F-REJW-OVR Header A 0010REJECT W OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJW-OVR
HWFISR23DWF-IS-FED-ID Header A 0013FEDERAL ID NN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFISR23DWF-IS-NM-FIRST Header A 0120STUDENT FIRST NAME NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-NM-LAST Header A 0160STUDENT LAST NAME NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-NM-MI Header A 0010STUDENT MIDDLE INITIAL NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-P-A-COOP Header A 0070PARENT AFI CO-OP EARNINGS NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-CPAY Header A 0070PARENT AFI COMBAT PAY NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-CSPD Header A 0070PARENT AFI CHILD SUPPORT PAID NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-EDCR Header A 0070PARENT AFI EDUCATION CREDITS NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-GRNT Header A 0070PARENT AFI GRANTS/SCHOLARSHIPS NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-WORK Header A 0070PARENT AFI NEED-BASED WORK NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-AGI Header A 0070PARENT ADJUSTED GROSS INCOME NN Reference: WF-2223-FEDERAL.WF-FE-P-AGI
HWFISR23DWF-IS-P-BUS-FRM Header A 0070PARENT BUSINESS/FARM ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-P-BUS-FRM
HWFISR23DWF-IS-P-CASH Header A 0070PARENT CASH ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-P-CASH
HWFISR23DWF-IS-P-DLW Header A 0010PARENT DISLOCATED WORKER NXH WF23FEDDWF-FE-S-DLW Reference: WF-2223-FEDERAL.WF-FE-P-DLW
HWFISR23DWF-IS-P-EMAIL Header A 0500PARENT E-MAIL ADDRESS NN Reference: WF-2223-FEDERAL.WF-FE-P-FA-SSN
HWFISR23DWF-IS-P-FAM-COL Header A 0010PARENT FAMILY IN COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-P-FAM-COL
HWFISR23DWF-IS-P-FAM-SIZE Header A 0020PARENT FAMILY SIZE NN Reference: WF-2223-FEDERAL.WF-FE-P-FAM-SIZE
HWFISR23DWF-IS-P-FED-TAX Header A 0060PARENT FEDERAL TAX NN Reference: WF-2223-FEDERAL.WF-FE-P-FED-TAX
HWFISR23DWF-IS-P-FILE-STAT Header A 0010PARENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT
HWFISR23DWF-IS-P-FILER Header A 0010PARENT TAX FILER NXH WF23FEDDWF-FE-S-FILER Reference: WF-2223-FEDERAL.WF-FE-P-FILER
HWFISR23DWF-IS-P-FORM Header A 0010PARENT TAX FORM NXH WF23FEDDWF-FE-S-FORM Reference: WF-2223-FEDERAL.WF-FE-P-FILER
HWFISR23DWF-IS-P-INV Header A 0060PARENT INVESTMENT ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-P-INV
HWFISR23DWF-IS-P-MAR Header A 0010PARENT MARITAL STATUS NXH WF23FEDDWF-FE-P-MAR Reference: WF-2223-FEDERAL.WF-FE-P-MAR
HWFISR23DWF-IS-P-MAR-DATE Header A 0060PARENT MARITAL STATUS DATE NN Reference: WF-2223-FEDERAL.WF-FE-P-MAR
HWFISR23DWF-IS-P-MT-LUNCH Header A 0010PARENT MEANS-TESTED LUNCH PGM NXH WF23FEDDWF-FE-S-MT-LUNCH Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-MT-SNAP Header A 0010PARENT MEANS-TESTED SUPP NUTR NXH WF23FEDDWF-FE-S-MT-SNAP Reference: WF23FEDD.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-MT-SSI Header A 0010PARENT MEANS-TESTED SSI NXH WF23FEDDWF-FE-S-MT-SSI Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-MT-TANF Header A 0010PARENT MEANS-TESTED TANF NXH WF23FEDDWF-FE-S-MT-TANF Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-MT-WIC Header A 0010PARENT MEANS-TESTED WIC NXH WF23FEDDWF-FE-S-MT-WIC Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-P1-DOB Header A 0080PARENT 1 BIRTHDATE NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P1-FNAME Header A 0010PARENT 1 FIRST INITIAL NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P1-INC Header A 0070PARENT 1 WORK INCOME NN
HWFISR23DWF-IS-P-P1-LEV Header A 0010PARENT 1 EDUCATIONAL LEVEL NXH WFFED23DWF-FE-P-P2-LEV
HWFISR23DWF-IS-P-P1-LNAME Header A 0160PARENT 1 LAST NAME NN 00000124 The parents' SSNs, last names, first initals, and birthdates are collected on the federal financial aid application.
HWFISR23DWF-IS-P-P1-SSN Header A 0090PARENT 1 SSN NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P2-DOB Header A 0080PARENT 2 BIRTHDATE NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P2-FNAME Header A 0010PARENT 2 FIRST INITIAL NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P2-INC Header A 0070PARENT 2 WORK INCOME NN
HWFISR23DWF-IS-P-P2-LEV Header A 0010PARENT 2 EDUCATIONAL LEVEL NXH WFFED23DWF-FE-P-P2-LEV
HWFISR23DWF-IS-P-P2-LNAME Header A 0160PARENT 2 LAST NAME NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P2-SSN Header A 0090PARENT 2 SSN NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-RES Header A 0020PARENT STATE OF RESIDENCE NXH WWSYSVRDWF-HELP-RES Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFISR23DWF-IS-P-RES-5YR Header A 0010PARENT FIVE-YEAR RESIDENCE NXH WF23FEDDWF-FE-S-RES-5YR Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFISR23DWF-IS-P-RES-DATE Header A 0080PARENT STATE RESIDENCE DATE NN Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFISR23DWF-IS-P-SCHED1 Header A 0010PARENT FILED SCHEDULE 1 QUEST NXH WF23FEDDWF-FE-S-SCHED1
HWFISR23DWF-IS-P-U-CSUP Header A 0070PARENT UTX CHILD SUPPORT RCVD NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-DST-PEN Header A 0070PARENT UNTX PENS/DIST NN
HWFISR23DWF-IS-P-U-INT Header A 0070PARENT UTX INTEREST INCOME NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-IRA Header A 0070PARENT UTX IRA PAYMENTS NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-LIV Header A 0070PARENT UTX LIVING ALLOWANCES NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-OTHER Header A 0070PARENT UTX OTHER UNTAXED INC NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-PEN Header A 0070PARENT UTX PENSION PAYMENTS NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-VET Header A 0070PARENT UTX VET NON-ED BENEFIT NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-S-A-COOP Header A 0070STUDENT AFI CO-OP EARNINGS NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-CPAY Header A 0070STUDENT AFI COMBAT PAY NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-CSPD Header A 0070STUDENT AFI CHILD SUPPORT PAID NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-EDCR Header A 0070STUDENT AFI EDUCATION CREDITS NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-GRNT Header A 0070STUDENT AFI GRANTS/SCHOLARSHPS NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-WORK Header A 0070STUDENT AFI NEED-BASED WORK NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-AGI Header A 0070STUDENT ADJUSTED GROSS INCOME NN Reference: WF-2223-FEDERAL.WF-FE-S-AGI
HWFISR23DWF-IS-S-ALIEN Header A 0090STUDENT ALIEN REGISTRATION NN Reference: WF-2223-FEDERAL.WF-FE-S-ALIEN
HWFISR23DWF-IS-S-BACH-DEG Header A 0010STUDENT BACHELOR'S DEGREE NXH WF23FEDDWF-FE-S-BACH-DEG Reference: WF-2223-FEDERAL.WF-FE-S-BACH-DEG
HWFISR23DWF-IS-S-BUS-FRM Header A 0070STUDENT BUSINESS/FARM ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-S-BUS-FRM
HWFISR23DWF-IS-S-CASH Header A 0070STUDENT CASH ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-S-CASH
HWFISR23DWF-IS-S-CIT Header A 0010STUDENT CITIZENSHIP STATUS NXH WF23FEDDWF-FE-S-CIT Reference: WF-2223-FEDERAL.WF-FE-S-CIT
HWFISR23DWF-IS-S-DEG Header A 0010STUDENT DEGREE/CERTIFICATE NXH WF23FEDDWF-FE-S-DEG Reference: WF-2223-FEDERAL.WF-FE-S-DEG
HWFISR23DWF-IS-S-DL-NUM Header A 0200STUDENT DRIVER LICENSE NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-S-DL-NUM
HWFISR23DWF-IS-S-DL-STATE Header A 0020STUDENT DRIVER LICENSE STATE NXH WWSYSVRDWF-HELP-RES Reference: WF-2223-FEDERAL.WF-FE-S-DL-NUM
HWFISR23DWF-IS-S-DLW Header A 0010STUDENT DISLOCATED WORKER NXH WF23FEDDWF-FE-S-DLW Reference: WF-2223-FEDERAL.WF-FE-S-DLW
HWFISR23DWF-IS-S-DRUG Header A 0010STUDENT DRUG CONVICTION NXH WF23FEDDWF-FE-S-DRUG Reference: WF-2223-FEDERAL.WF-FE-S-DRUG
HWFISR23DWF-IS-S-FAM-COL Header A 0010STUDENT FAMILY IN COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-S-FAM-COL
HWFISR23DWF-IS-S-FAM-SIZE Header A 0020STUDENT FAMILY SIZE NN Reference: WF-2223-FEDERAL.WF-FE-S-FAM-SIZE
HWFISR23DWF-IS-S-FED-TAX Header A 0070STUDENT FEDERAL TAX NN Reference: WF-2223-FEDERAL.WF-FE-S-FED-TAX
HWFISR23DWF-IS-S-FILE-STAT Header A 0010STUDENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT
HWFISR23DWF-IS-S-FILER Header A 0010STUDENT TAX FILER NXH WF23FEDDWF-FE-S-FILER Reference: WF-2223-FEDERAL.WF-FE-S-FILER
HWFISR23DWF-IS-S-FORM Header A 0010STUDENT TAX FORM NXH WF23FEDDWF-FE-S-FORM Reference: WF-2223-FEDERAL.WF-FE-S-FILER
HWFISR23DWF-IS-S-HS-CITY Header A 0280STUDENT HIGH SCHOOL CITY NN Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFISR23DWF-IS-S-HS-GED Header A 0010STUDENT HS DIPLOMA/EQUIVALENT NXH WF23FEDDWF-FE-S-HS-GED Reference: WF-2223-FEDERAL.WF-FE-S-HS-GED
HWFISR23DWF-IS-S-HS-NAME Header A 0500STUDENT HIGH SCHOOL NAME NN Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFISR23DWF-IS-S-HS-STATE Header A 0020STUDENT HIGH SCHOOL STATE NXH WWSYSVRDWF-HELP-RES Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFISR23DWF-IS-S-INT Header A 0010STUDENT INTEREST-LOANS/WORK NXH WF23FEDDWF-FE-S-INT Reference: WF-2223-FEDERAL.WF-FE-S-INT
HWFISR23DWF-IS-S-INV Header A 0070STUDENT INVESTMENT ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-S-INV
HWFISR23DWF-IS-S-MALE Header A 0010STUDENT MALE NXH WF23FEDDWF-FE-S-MALE Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
HWFISR23DWF-IS-S-MAR Header A 0010STUDENT MARITAL STATUS NXH WF23FEDDWF-FE-S-MAR Reference: WF-2223-FEDERAL.WF-FE-S-MAR
HWFISR23DWF-IS-S-MAR-DATE Header A 0060STUDENT MARITAL STATUS DATE NN Reference: WF-2223-FEDERAL.WF-FE-S-MAR
HWFISR23DWF-IS-S-MT-LUNCH Header A 0010STUDENT MEANS-TESTED LUNCH PGM NXH WF23FEDDWF-FE-S-MT-LUNCH Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-MT-SNAP Header A 0010STUDENT MEANS-TESTED SUPP NUTR NXH WF23FEDDWF-FE-S-MT-SNAP Reference: WF23FEDD.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-MT-SSI Header A 0010STUDENT MEANS-TESTED SSI NXH WF23FEDDWF-FE-S-MT-SSI Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-MT-TANF Header A 0010STUDENT MEANS-TESTED TANF NXH WF23FEDDWF-FE-S-MT-TANF Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-MT-WIC Header A 0010STUDENT MEANS-TESTED WIC NXH WF23FEDDWF-FE-S-MT-WIC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-RES Header A 0020STUDENT STATE OF RESIDENCE NXH WWSYSVRDWF-HELP-RES Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFISR23DWF-IS-S-RES-5YR Header A 0010STUDENT FIVE-YEAR RESIDENCE NXH WF23FEDDWF-FE-S-RES-5YR Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFISR23DWF-IS-S-RES-DATE Header A 0080STUDENT STATE RESIDENCE DATE NN Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFISR23DWF-IS-S-SCHED1 Header A 0010STUDENT FILED SCHEDULE 1 QUEST NXH WF23FEDDWF-FE-S-SCHED1
HWFISR23DWF-IS-S-SP-INC Header A 0070SPOUSE WORK INCOME NN Reference: WF-2223-FEDERAL.WF-FE-S-ST-INC
HWFISR23DWF-IS-S-ST-INC Header A 0070STUDENT WORK INCOME NN Reference: WF-2223-FEDERAL.WF-FE-S-ST-INC
HWFISR23DWF-IS-S-TEST-ACTV Header A 0010STUDENT ACTIVE DUTY TEST NXH WF23FEDDWF-FE-S-TEST-ACTV Reference: WF-2223-FEDERAL.WF-FE-S-TEST-ACTV
HWFISR23DWF-IS-S-TEST-CHL Header A 0010STUDENT CHILD DEPENDENTS TEST NXH WF23FEDDWF-FE-S-TEST-CHL Reference: WF-2223-FEDERAL.WF-FE-S-TEST-CHL
HWFISR23DWF-IS-S-TEST-DEP Header A 0010STUDENT OTHER DEPENDENTS TEST NXH WF23FEDDWF-FE-S-TEST-DEP Reference: WF-2223-FEDERAL.WF-FE-S-TEST-DEP
HWFISR23DWF-IS-S-TEST-DOB Header A 0010STUDENT DATE OF BIRTH TEST NXH WF23FEDDWF-FE-S-TEST-DOB Reference: WF-2223-FEDERAL.WF-FE-S-TEST-DOB
HWFISR23DWF-IS-S-TEST-EMAN Header A 0010STUDENT EMANCIPATED MINOR TEST NXH WF23FEDDWF-FE-S-TEST-EMAN Reference: WF-2223-FEDERAL.WF-FE-S-TEST-EMAN
HWFISR23DWF-IS-S-TEST-GRAD Header A 0010STUDENT GRADUATE TEST NXH WF23FEDDWF-FE-S-TEST-GRAD Reference: WF-2223-FEDERAL.WF-FE-S-TEST-GRAD
HWFISR23DWF-IS-S-TEST-GUAR Header A 0010STUDENT GUARDIANSHIP TEST NXH WF23FEDDWF-FE-S-TEST-GUAR Reference: WF-2223-FEDERAL.WF-FE-S-TEST-GUAR
HWFISR23DWF-IS-S-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST NXH WF23FEDDWF-FE-S-TEST-HMLS Reference: WF-2223-FEDERAL.WF-FE-S-TEST-HMLS
HWFISR23DWF-IS-S-TEST-MAR Header A 0010STUDENT MARITAL TEST NXH WF23FEDDWF-FE-S-TEST-MAR Reference: WF-2223-FEDERAL.WF-FE-S-TEST-MAR
HWFISR23DWF-IS-S-TEST-ORPH Header A 0010STUDENT ORPHAN/WARD TEST NXH WF23FEDDWF-FE-S-TEST-ORPH Reference: WF-2223-FEDERAL.WF-FE-S-TEST-ORPH
HWFISR23DWF-IS-S-TEST-UYHU Header A 0010STUDENT UNACC YOUTH (HUD) TEST NXH WF23FEDDWF-FE-S-TEST-UYHU Reference: WF-2223-FEDERAL.WF-FE-S-TEST-UYHU
HWFISR23DWF-IS-S-TEST-UYSD Header A 0010STUDENT UNACC YOUTH (SDL) TEST NXH WF23FEDDWF-FE-S-TEST-UYSD Reference: WF-2223-FEDERAL.WF-FE-S-TEST-UYSD
HWFISR23DWF-IS-S-TEST-VET Header A 0010STUDENT VETERAN TEST NXH WF23FEDDWF-FE-S-TEST-VET Reference: WF-2223-FEDERAL.WF-FE-S-TEST-VET
HWFISR23DWF-IS-S-U-CSUP Header A 0070STUDENT UTX CHILD SUPPORT RCVD NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-DST-PEN Header A 0070STUDENT UNTXD PENS/DIST NN
HWFISR23DWF-IS-S-U-INT Header A 0070STUDENT UTX INTEREST INCOME NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-IRA Header A 0070STUDENT UTX IRA PAYMENTS NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-LIV Header A 0070STUDENT UTX LIVING ALLOWANCES NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-MONEY Header A 0070STUDENT UTX MONEY RECEIVED NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-OTHER Header A 0070STUDENT UTX OTHER UNTAXED INC NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-PEN Header A 0070STUDENT UTX PENSION PAYMENTS NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-VET Header A 0070STUDENT UTX VET NON-ED BENEFIT NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-YR-COL Header A 0010STUDENT YEAR IN COLLEGE NXH WF23FEDDWF-FE-S-YR-COL Reference: WF-2223-FEDERAL.WF-FE-S-YR-COL
HWFISR23DWF-IS-SSN Header A 0090STUDENT SOCIAL SECURITY NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-SSN
HWFISR23DWF-ISIR Header 0000ISIR INFORMATION GN The Institutional Student Information Record (ISIR) is transmitted to the institution by the Central Processing System (CPS).
HWFISR23DWF-ISIR-KEY Header A 0110ISIR KEY KN The ISIR key is comprised of FAO and the student'sFINANCIER ID. This key is used in all ISIR file accesss.
HWFISR23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFISR23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFISR23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFISR23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFISR23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WFMCA23D
==========================================
HWFMCA23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUH WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFMCA23DWF-FE-C-REJ1 Header 0000FINANCIAL AID OFFICE KUH WWSYSVRDWF-FAO
HWFMCA23DWF-MC-F9-ASM1 Header A 0040ASSUMPTION HXH Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1001 0000 DOB Test = Yes Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1002 0000 DOB Test = No Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1003 0000 DOB Test = No Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1004 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1005 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1006 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1007 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1008 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1009 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1010 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1011 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1012 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1013 0000 Student has no deps Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1014 0000 Student not homeless Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2001 0000 Parents married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2002 0000 Parents not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2003 0000 Parent #fam is 3 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2004 0000 Parent #fam is 2 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2005 0000 Parent #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2006 0000 Parent #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2007 0000 Parent #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2009 0000 Parent #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2010 0000 Par #col is #fam - 2 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2011 0000 Par AGI is inc sum Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2013 0000 Father inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2014 0000 Parent is tax filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2015 0000 Parent is tax filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2016 0000 Parent is tax filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2017 0000 Parent is non filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2018 0000 Parent is non filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2019 0000 Parent fed tax is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2020 0000 Father inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2021 0000 Mother inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2022 0000 Father inc positive Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2023 0000 Mother inc positive Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2026 0000 Parent AFI is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2028 0000 Parent A T Exc blank Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2029 0000 Student elig non-cit Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2030 0000 Student is citizen Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2031 0000 Student is unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2032 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2033 0000 Student is unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2034 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2035 0000 Student is unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2036 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2037 0000 Student is unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2038 0000 Student #fam is 2 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2039 0000 Student #fam is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2040 0000 Student #fam is 2 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2041 0000 Student #fam is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2042 0000 Student #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2043 0000 Student #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2045 0000 Student A T Exc blank Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2046 0000 Student #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2047 0000 Student unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2048 0000 Spouse income is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2049 0000 Stu AGI is inc sum Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2051 0000 Student inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2052 0000 Student is filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2053 0000 Student is filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2054 0000 Student is filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2055 0000 Student is non filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2056 0000 Student is non filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2057 0000 Student fedtax is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2058 0000 Student inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2059 0000 Student inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2060 0000 Student inc positive Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2061 0000 Spouse inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2062 0000 Spouse inc positive Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2065 0000 Student AFI is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
HWFMCA23DWF-MC-F9-ASM10 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM2 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM3 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM4 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM5 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM6 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM7 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM8 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM9 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-DEP Header A 0010STUDENT DEPENDENCY STATUS 'T'XXXXXXXXXXX HFH WWSYSVRDWF-CAL-DEP Reference: WW-SYSVARS.WF-CAL-DEP
HWFMCA23DWF-MC-F9-DUR Header N 0020ENROLLMENT DURATION Z9 HN Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-F9-FISAP Header PS0080FISAP INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FISAP
HWFMCA23DWF-MC-F9-METH Header A 0010CALCULATION METHODOLOGY 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-METH Reference: WW-SYSVARS.WF-CAL-METH
HWFMCA23DWF-MC-F9-P-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-F9-P-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-F9-P-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-F9-P-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-F9-P-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-F9-P-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-F9-P-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-F9-P-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-F9-P-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-F9-P-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-F9-P-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-F9-P-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-F9-P-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-F9-P-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-F9-P-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-F9-P-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-F9-P-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-F9-P-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-F9-P-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-F9-P-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-F9-P-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-F9-P-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-F9-P-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-F9-P-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-F9-P-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-F9-P-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-F9-P-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-F9-REJ1 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reject codes are produced when errors are found inediting information reported on the financial aid application or in computing expected contributionsfrom that information. For the ISIR calculation, reject codes are reported from CPS-computed information in the FINANCIER ISIR file. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWFMCA23DWF-MC-F9-REJ2 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ3 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ4 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ5 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ6 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ7 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-S-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-F9-S-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-F9-S-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-F9-S-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-F9-S-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-F9-S-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-F9-S-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-F9-S-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-F9-S-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-F9-S-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-F9-S-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-F9-S-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-F9-S-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-F9-S-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-F9-S-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-F9-S-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-F9-S-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-F9-S-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-F9-S-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-F9-S-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-F9-S-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-F9-S-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-F9-S-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-F9-S-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-F9-S-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-F9-S-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-F9-S-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-FM-ASM1 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM10 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM2 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM3 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM4 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM5 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM6 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM7 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM8 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM9 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-DEP Header A 0010STUDENT DEPENDENCY STATUS 'T'XXXXXXXXXXX HFH WWSYSVRDWF-CAL-DEP Reference: WW-SYSVARS.WF-CAL-DEP
HWFMCA23DWF-MC-FM-DUR Header N 0020ENROLLMENT DURATION Z9 HN Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-FM-DUR-T Header A 0020ENROLLMENT DURATION 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-DUR Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-FM-FISAP Header PS0080FISAP INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FISAP
HWFMCA23DWF-MC-FM-METH Header A 0010CALCULATION METHODOLOGY 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-METH Reference: WW-SYSVARS.WF-CAL-METH
HWFMCA23DWF-MC-FM-P-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-FM-P-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-FM-P-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-FM-P-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-FM-P-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-FM-P-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-FM-P-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-FM-P-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-FM-P-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-FM-P-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-FM-P-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-FM-P-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-FM-P-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-FM-P-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-FM-P-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-FM-P-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-FM-P-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-FM-P-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-FM-P-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-FM-P-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-FM-P-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-FM-P-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-FM-P-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-FM-P-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-FM-P-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-FM-P-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-FM-P-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-FM-REJ1 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ2 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ3 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ4 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ5 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ6 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ7 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-S-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-FM-S-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-FM-S-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-FM-S-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-FM-S-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-FM-S-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-FM-S-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-FM-S-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-FM-S-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-FM-S-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-FM-S-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-FM-S-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-FM-S-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-FM-S-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-FM-S-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-FM-S-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-FM-S-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-FM-S-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-FM-S-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-FM-S-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-FM-S-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-FM-S-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-FM-S-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-FM-S-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-FM-S-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-FM-S-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-FM-S-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-IM-ASM1 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM10 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM2 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM3 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM4 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM5 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM6 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM7 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM8 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM9 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-DEP Header A 0010STUDENT DEPENDENCY STATUS 'T'XXXXXXXXXXX HFH WWSYSVRDWF-CAL-DEP Reference: WW-SYSVARS.WF-CAL-DEP
HWFMCA23DWF-MC-IM-DUR Header N 0020ENROLLMENT DURATION Z9 HN Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-IM-DUR-T Header A 0020ENROLLMENT DURATION 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-DUR Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-IM-FISAP Header PS0080FISAP INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IM-METH Header A 0010CALCULATION METHODOLOGY 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-METH Reference: WW-SYSVARS.WF-CAL-METH
HWFMCA23DWF-MC-IM-P-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IM-P-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-IM-P-ANAL Header A 0010ANALYSIS TYPE T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-IM-P-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-IM-P-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-IM-P-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-IM-P-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-IM-P-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-IM-P-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-IM-P-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-IM-P-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-IM-P-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-IM-P-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-IM-P-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-IM-P-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-IM-P-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-IM-P-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-IM-P-HE Header PS0080HOME EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-HE
HWFMCA23DWF-MC-IM-P-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-IM-P-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-IM-P-IRA Header PS0080IRA/KEOGH ACCOUNTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IRA
HWFMCA23DWF-MC-IM-P-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-IM-P-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-IM-P-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-IM-P-MDA Header PS0080MEDICAL/DENTAL ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-MDA
HWFMCA23DWF-MC-IM-P-NC Header P 0032WF-CAL-NC ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-IM-P-NW Header PS0080WF-CAL-NW ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-IM-P-OA Header PS0080WF-CAL-OA ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OA
HWFMCA23DWF-MC-IM-P-OAA Header PS0080WF-CAL-OAA ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OAA
HWFMCA23DWF-MC-IM-P-OAS Header PS0080WF-CAL-OAS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OAS
HWFMCA23DWF-MC-IM-P-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-IM-P-TA Header PS0080TUITION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TA
HWFMCA23DWF-MC-IM-P-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-IM-P-TRST Header PS0080TRUST ACCOUNTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TRST
HWFMCA23DWF-MC-IM-P-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-IM-REJ1 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ2 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ3 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ4 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ5 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ6 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ7 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-S-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IM-S-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-IM-S-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-IM-S-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-IM-S-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-IM-S-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-IM-S-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-IM-S-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-IM-S-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-IM-S-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-IM-S-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-IM-S-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-IM-S-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-IM-S-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-IM-S-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-IM-S-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-IM-S-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-IM-S-HE Header PS0080HOME EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-HE
HWFMCA23DWF-MC-IM-S-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-IM-S-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-IM-S-IRA Header PS0080IRA/KEOGH ACCOUNTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IRA
HWFMCA23DWF-MC-IM-S-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-IM-S-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-IM-S-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-IM-S-MDA Header PS0080MEDICAL/DENTAL ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-MDA
HWFMCA23DWF-MC-IM-S-NC Header P 0032WF-CAL-NC ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-IM-S-NW Header PS0080WF-CAL-NW ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-IM-S-OA Header PS0080WF-CAL-OA ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OA
HWFMCA23DWF-MC-IM-S-OAA Header PS0080WF-CAL-OAA ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OAA
HWFMCA23DWF-MC-IM-S-OAS Header PS0080WF-CAL-OAS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OAS
HWFMCA23DWF-MC-IM-S-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-IM-S-TA Header PS0080TUITION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TA
HWFMCA23DWF-MC-IM-S-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-IM-S-TRST Header PS0080TRUST ACCOUNTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TRST
HWFMCA23DWF-MC-IM-S-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-IS-DEP Header A 0010STUDENT DEPENDENCY STATUS 'T'XXXXXXXXXXX HFH WWSYSVRDWF-CAL-DEP Reference: WW-SYSVARS.WF-CAL-DEP
HWFMCA23DWF-MC-IS-FISAP Header PS0080FISAP INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FISAP
HWFMCA23DWF-MC-IS-P-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IS-P-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-IS-P-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-IS-P-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-IS-P-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-IS-P-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-IS-P-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-IS-P-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-IS-P-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-IS-P-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-IS-P-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-IS-P-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-IS-P-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-IS-P-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-IS-P-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-IS-P-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-IS-P-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-IS-REJ1 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ2 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ3 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ4 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ5 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ6 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ7 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-S-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IS-S-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-IS-S-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-IS-S-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-IS-S-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-IS-S-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-IS-S-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-IS-S-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-IS-S-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-IS-S-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-IS-S-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-IS-S-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-IS-S-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-IS-S-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-IS-S-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-IS-S-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-IS-S-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MCAL-F9 Header 0000INAS FM 9-MONTH SUMMARY GN
HWFMCA23DWF-MCAL-F9-PARENT Header 0000INAS FM 9-MONTH PARENT GN
HWFMCA23DWF-MCAL-F9-STUDENT Header 0000INAS FM 9-MONTH STUDENT GN
HWFMCA23DWF-MCAL-FM Header 0000INAS FM ENR-ADJUSTED SUMMARY GN
HWFMCA23DWF-MCAL-FM-PARENT Header 0000INAS FM ENR-ADJUSTED PARENT GN
HWFMCA23DWF-MCAL-FM-STUDENT Header 0000INAS FM ENR-ADJUSTED STUDENT GN
HWFMCA23DWF-MCAL-IM Header 0000INAS IM ENR-ADJUSTED SUMMARY GN
HWFMCA23DWF-MCAL-IM-PARENT Header 0000INAS IM ENR-ADJUSTED PARENT GN
HWFMCA23DWF-MCAL-IM-STUDENT Header 0000INAS IM ENR-ADJUSTED STUDENT GN
HWFMCA23DWF-MCAL-ISIR Header 0000ISIR FM 9-MONTH SUMMARY GN
HWFMCA23DWF-MCAL-ISIR-PARENT Header 0000ISIR FM 9-MONTH PARENT GN
HWFMCA23DWF-MCAL-ISIR-STUDENTHeader 0000ISIR FM 9-MONTH STUDENT GN
HWFMCA23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFMCA23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
==========================================
= WFNSL23D
==========================================
HWFNSL23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFNSL23DWF-NS-BANKRUPT Header A 0010ACTIVE BANKRUPTCY NXH Active bankruptcy status may affect the student's ability to borrow under federal financial aid programs.
VWFNSL23DWF-NS-BANKRUPT N 0000 Not in act bankrptcy WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
VWFNSL23DWF-NS-BANKRUPT Y 0000 In active bankruptcy WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-BANKRUPT-CHG Header A 0010ACTIVE BANKRUPTCY CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-C-ENR-PATTERN Header A 0010ENROLLMENT PATTERN FLAG NXH Highlights a student with an enrollment history that may require attention.
VWFNSL23DWF-NS-C-ENR-PATTERN 1 0000 For FSA use only Highlights a student with an enrollment history that may require attention.
VWFNSL23DWF-NS-C-ENR-PATTERN 2 0000 Possible problem Highlights a student with an enrollment history that may require attention.
VWFNSL23DWF-NS-C-ENR-PATTERN 3 0000 School must resolve Highlights a student with an enrollment history that may require attention.
VWFNSL23DWF-NS-C-ENR-PATTERN N 0000 No problem Highlights a student with an enrollment history that may require attention.
HWFNSL23DWF-NS-C-LEU Header A 0070PELL LIFETIME ELIG USED % NN The percentage of Pell lifetime limit that has been disbursed to the student. The value accrues at the rate of 100% per year of fully disbursed scheduled award; the limit is 600% (12 semesters' worth).
HWFNSL23DWF-NS-C-LEU-FLAG Header A 0010PELL LIFETIME ELIG USED FLAG NXH Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
VWFNSL23DWF-NS-C-LEU-FLAG C 0000 Close to Pell limit Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
VWFNSL23DWF-NS-C-LEU-FLAG E 0000 At/exceed Pell limit Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
VWFNSL23DWF-NS-C-LEU-FLAG H 0000 High Pell percent Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
VWFNSL23DWF-NS-C-LEU-FLAG N 0000 No problem Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
HWFNSL23DWF-NS-C-SUB-LE-FLAG Header A 0010SUB USAGE LIM APPLIES FLAG NXH Marks the applicant as being monitored for length of time receiving subsidized Direct loans. A student can receive subsidized loans for no more than 150% of the length of the academic program in which the student is enrolled.
VWFNSL23DWF-NS-C-SUB-LE-FLAG N 0000 No Marks the applicant as being monitored for length of time receiving subsidized Direct loans. A student can receive subsidized loans for no more than 150% of the length of the academic program in which the student is enrolled. For the ISIR calculation, reject codes are reported from CPS-computed information in the FINANCIER ISIR file. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWFNSL23DWF-NS-C-SUB-LE-FLAG Y 0000 Yes Marks the applicant as being monitored for length of time receiving subsidized Direct loans. A student can receive subsidized loans for no more than 150% of the length of the academic program in which the student is enrolled. For the ISIR calculation, reject codes are reported from CPS-computed information in the FINANCIER ISIR file. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWFNSL23DWF-NS-C-SUB-LE-USED Header A 0060SUB LOAN ELIGIBILITY USED NXH The total time (measured in academic years) over which the student has received subsidized Direct loans. A student can receive subsidized loans forno more than 150% of the length of the academic program in which the student is enrolled. The Subsidized Eligibility Used is loaded from thestudent's ISIR and is updated when COD-calulated values are returned in Direct loan response files.
HWFNSL23DWF-NS-C-SUB-USAGE-PDHeader A 0060SUB LOAN USAGE PERIOD N The total time (measured in academic years) over which the student has received subsidized Direct loans. A student can receive subsidized loans forno more than 150% of the length of the academic program in which the student is enrolled. The Subsidized Eligibility Used is loaded from thestudent's ISIR and is updated when COD-calulated values are returned in Direct loan response files.
HWFNSL23DWF-NS-CMB-LIMIT-GR Header A 0010SUB+UNSUB DL/FFEL LIMIT (GR) NXH WFNSL23DWF-NS-SUB-LIMIT-UG Reference: WF-NS-CMB-LIMIT-UG
HWFNSL23DWF-NS-CMB-LIMIT-UG Header A 0010SUB+UNSUB DL/FFEL LIMIT (UG) NXH WFNSL23DWF-NS-SUB-LIMIT-UG The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-CMB-OUT Header A 0060OUTSTANDING SUB+UNSUB DL/FFEL NXH WFNSL23DWF-NS-SUB-OUT The outstanding principal balance may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-CMB-PEND Header A 0060PENDING SUB+UNSUB DL/FFEL DSB NXH WFNSL23DWF-NS-SUB-OUT The pending disbursements may affect the student'seligibility for further Stafford loans.
HWFNSL23DWF-NS-CMB-TOTAL Header A 0060SUB+UNSUB DL/FFEL TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-CON-OUT Header A 0060OUTSTANDING CONSOLIDTD DL/FFEL NXH WFNSL23DWF-NS-SUB-OUT The outstanding principal balance may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-CON-TOTAL Header A 0060CONSOLIDATED DL/FFEL TOTAL NXH The total loan amount may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-DL-MPN Header A 0010DIRECT LOAN MPN STATUS NXH The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
VWFNSL23DWF-NS-DL-MPN A 0000 Active The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
VWFNSL23DWF-NS-DL-MPN C 0000 Closed The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
VWFNSL23DWF-NS-DL-MPN I 0000 Inactive The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
VWFNSL23DWF-NS-DL-MPN N 0000 No MPN on file The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
HWFNSL23DWF-NS-DLG-MPN Header A 0010DIRECT GRAD PLUS MPN STATUS NXH WFNSL23DWF-NS-DLP-MPN The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Graduate PLUS Master Promissory Note.
HWFNSL23DWF-NS-DLP-MPN Header A 0010DIRECT PLUS LOAN MPN STATUS NXH The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN A 0000 Active The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN C 0000 Closed The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN E 0000 Accepted/Inactive The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN I 0000 Inactive The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN N 0000 No MPN on file The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
HWFNSL23DWF-NS-IAAS-OVP Header A 0010IAAS GRANT OVERPAYMENT NXH WFNSL23DWF-NS-PELL-OVP The Iraq and Afghanistan Service (IAAS) Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-IAAS-OVP-CTC Header A 0080IAAS GRANT OVERPAYMT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC Reference: WF-NS-IAAS-OVP
HWFNSL23DWF-NS-L01-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Each loan's original total amount is carried in the student's record.
HWFNSL23DWF-NS-L01-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Each loan's begin and end dates are recorded.
HWFNSL23DWF-NS-L01-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH The student's decision regarding capitalization ofthe interest that accrues on a loan is carried in the student's record.
VWFNSL23DWF-NS-L01-CAP N 0000 Int not capitalized The student's decision regarding capitalization ofthe interest that accrues on a loan is carried in the student's record.
VWFNSL23DWF-NS-L01-CAP Y 0000 Interest capitalized The student's decision regarding capitalization ofthe interest that accrues on a loan is carried in the student's record.
HWFNSL23DWF-NS-L01-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG The loan's change flag indicates a change in some aspect of the loan information since the last transmission of NSLDS information.
HWFNSL23DWF-NS-L01-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Each loan carries a contact and associated contacttype.
HWFNSL23DWF-NS-L01-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L01-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Each loan's last disbursement amount is carried inthe student's record. The last disbursement is associated with the last disbursement date.
HWFNSL23DWF-NS-L01-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L01-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L01-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT The guarantee agency associated with each loan is carried in the student's record.
HWFNSL23DWF-NS-L01-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT The student's grade level at the time of each loanis noted.
HWFNSL23DWF-NS-L01-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH Each loan's outstanding balance is carried in the student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-OUT N/A 0000 Not applicable Each loan's outstanding balance is carried in the student's record. The outstanding balance is associated with the effective date of its determination.
HWFNSL23DWF-NS-L01-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L01-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH Each loan is identified by a loan program.
VWFNSL23DWF-NS-L01-PROG CH 0000 FFEL Cons Health Lns Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG CL 0000 FFEL Consolidated Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG CO 0000 FFEL Cons Other Lns Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG CS 0000 FFEL Cons Sub Lns Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG CU 0000 FFEL Cons Unsub Lns Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D0 0000 Direct Sub-SULA Elig Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D1 0000 Direct Subsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D2 0000 Direct Unsubsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D3 0000 Direct Grad PLUS Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D4 0000 Direct PLUS Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D5 0000 Direct Cons Unsub Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D6 0000 Direct Cons Sub Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D7 0000 Direct Cons PLUS Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D8 0000 Direct TEACH Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D9 0000 Direct Cons Sub-SULA Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG DU 0000 Nationl Defense Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG EU 0000 Perkins Exp Lending Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG FI 0000 Fed Ins Student Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG GB 0000 Graduate PLUS Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG IC 0000 Income Contngnt Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG NU 0000 Natl Direct Stu Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG PL 0000 FFEL PLUS Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG PU 0000 Federal Perkins Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG RF 0000 FFEL Refinanced Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG SF 0000 FFEL Subsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG SL 0000 Supplemental Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG SN 0000 FFEL Non-Subsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG SU 0000 FFEL Unsubsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
HWFNSL23DWF-NS-L01-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT The institution originally associated with each loan is carried in the student's record.
HWFNSL23DWF-NS-L01-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH 01 12 Each loan is assigned a sequence number.
HWFNSL23DWF-NS-L01-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA AL 0000 Abandoned Loan Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA BC 0000 Bankrupt,Discharged Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA BK 0000 Bankrupt,Active Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA CA 0000 Cancelled Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA CS 0000 Closed Sch Discharge Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DA 0000 Deferred Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DB 0000 Defltd,Bnkrpt,Active Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DC 0000 Defltd,Compromise Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DD 0000 Defltd,Death Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DE 0000 Death Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DF 0000 Defltd,Unresolved Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DI 0000 Disability Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DK 0000 Defltd,Bnkrpt,Disch Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DL 0000 Defltd,In litigation Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DN 0000 Defltd,Paid via Cons Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DO 0000 Defltd,Bnkrpt,Act,Ot Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DP 0000 Defltd,Paid in full Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DR 0000 Defltd,Incl Roll-up Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DS 0000 Defltd,Disabled Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DT 0000 Defltd,Collectn term Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DU 0000 Defltd,Unresolved Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DW 0000 Defltd,Writeoff/Comp Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DX 0000 Defltd,6 consec pmts Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DZ 0000 Defltd,After 6 Pmts Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FB 0000 Forbearance Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FC 0000 False Cert Discharge Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FD 0000 Fraud,Defaulted Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FR 0000 Fraud Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FX 0000 Fraud,Resolved Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA IA 0000 Loan Originated Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA ID 0000 In school/grace pd Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA IG 0000 In Grace Period Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA IM 0000 In Military Grace Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA IP 0000 In Post-Defrmt Grace Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA OD 0000 Defltd,Bnkrpt disch Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PC 0000 Paid via consol loan Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PD 0000 Permanently disabled Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PF 0000 Paid in full Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PM 0000 Presumed Paid Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PN 0000 Paid via Consol Loan Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PX 0000 Ident Theft,Dischrgd Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PZ 0000 PLUS Loan,Died Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA RF 0000 Refinanced Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA RP 0000 In repayment Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UA 0000 Temp Unins-No Deflt Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UB 0000 Temp Unins-Deflt Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UC 0000 Perm Unins-No Deflt Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UD 0000 Perm Unins-Deflt Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UI 0000 Uninsured/Unreimbrsd Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA XD 0000 Defltd,Satis,6 Pmts Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
HWFNSL23DWF-NS-L01-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L01-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX Among the NSLDS information summarizing the overall state of the student's outstanding loans. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-SUBSIDY L 0000 Lost subsidy Among the NSLDS information summarizing the overall state of the student's outstanding loans. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-SUBSIDY N 0000 N/A or no change Among the NSLDS information summarizing the overall state of the student's outstanding loans. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-SUBSIDY R 0000 Reinstated subsidy Among the NSLDS information summarizing the overall state of the student's outstanding loans. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
HWFNSL23DWF-NS-L01-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L01-TYPE Header A 0010LOAN TYPE NXH Each loan is flagged as being in default, or a recent loan.
VWFNSL23DWF-NS-L01-TYPE D 0000 Defaulted loan Each loan is flagged as being in default, or a recent loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-TYPE R 0000 Recent loan Each loan is flagged as being in default, or a recent loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-TYPE T 0000 Discharged loan Each loan is flagged as being in default, or a recent loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
HWFNSL23DWF-NS-L01-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan.
VWFNSL23DWF-NS-L01-XUNS B 0000 PLUS denial and HPL An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-XUNS H 0000 Not extended unsub An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-XUNS N 0000 PLUS denial and HPL An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-XUNS P 0000 PLUS denial An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
HWFNSL23DWF-NS-L02-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L02-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L02-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L02-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L02-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L02-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L02-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L02-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L02-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L02-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L02-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L02-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L02-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L02-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L02-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L02-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L02-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L02-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L02-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L02-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L02-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L02-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-L03-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L03-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L03-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L03-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L03-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L03-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L03-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L03-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L03-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L03-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L03-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L03-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L03-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L03-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L03-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L03-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L03-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L03-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L03-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L03-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L03-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L03-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-L04-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L04-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L04-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L04-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L04-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L04-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L04-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L04-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L04-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L04-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L04-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L04-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L04-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L04-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L04-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L04-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L04-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L04-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L04-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L04-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L04-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L04-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-L05-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L05-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L05-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L05-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L05-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L05-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L05-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L05-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L05-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L05-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L05-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L05-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L05-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L05-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L05-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L05-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L05-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L05-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L05-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L05-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L05-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L05-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-L06-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L06-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L06-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L06-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L06-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L06-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L06-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L06-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L06-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L06-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L06-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L06-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L06-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L06-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L06-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L06-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L06-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L06-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L06-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L06-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L06-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L06-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-LOAN-ADTNL Header A 0010ADDITIONAL LOAN INFORMATION NXH WFNSL23DWF-NS-PELL-ADTNL The NSLDS information transmitted is limited to three Pell Grant payments, three ACG payments, three SMART Grant payments, three TEACH Grant payments, and six loans. The availability of additional information in the National Student Loan Data System (NSLDS) for the student is noted.
HWFNSL23DWF-NS-LOAN-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Changes in the student's status (bankruptcy, loan default status, etc.) since the last transmission of NSLDS information are noted in a variety of change flags.
HWFNSL23DWF-NS-LOAN-DEF Header A 0010DEFAULTED LOAN FLAG NXH The inclusion in the student's record of defaultedloans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DEF N 0000 No defaulted loans The inclusion in the student's record of defaultedloans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DEF Y 0000 Defaulted loan(s) The inclusion in the student's record of defaultedloans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
HWFNSL23DWF-NS-LOAN-DEF-CHG Header A 0010DEFAULTED LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-LOAN-DIS Header A 0010DISCHARGED LOAN FLAG NXH Reference: WF-NS-LOAN-DEF
VWFNSL23DWF-NS-LOAN-DIS C 0000 Conditional Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS D 0000 Death Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS M 0000 Multiple Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS N 0000 None Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS P 0000 Permanent Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS R 0000 Reaffirmed Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
HWFNSL23DWF-NS-LOAN-DIS-CHG Header A 0010DISCHARGED LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-LOAN-FRD Header A 0010FRAUD LOAN FLAG NXH Reference: WF-NS-LOAN-DEF
VWFNSL23DWF-NS-LOAN-FRD N 0000 No fraud loans Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-FRD Y 0000 Fraud loan(s) Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
HWFNSL23DWF-NS-LOAN-FRD-CHG Header A 0010FRAUD LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-LOAN-REP Header A 0010SATISFACTORY REPAYMENT FLAG NXH Reference: WF-NS-LOAN-DEF
VWFNSL23DWF-NS-LOAN-REP N 0000 No satis repmt loans Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-REP Y 0000 Loan(s) in sat repmt Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
HWFNSL23DWF-NS-LOAN-REP-CHG Header A 0010SATISFACTORY REPMT CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-OVPMT-CHG Header A 0010OVERPAYMENTS CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Changes in the student's overpayment status (in a number of federal programs) since the last NSLDS data transmission are noted.
HWFNSL23DWF-NS-P1-ADDL-ELIG Header A 0010PELL ADDITIONAL ELIGIBILITY NXH The student's eligibility for a second Pell Grant in the same award year is recorded in the grant payment record.
VWFNSL23DWF-NS-P1-ADDL-ELIG N 0000 No The student's eligibility for a second Pell Grant in the same award year is recorded in the grant payment record.
VWFNSL23DWF-NS-P1-ADDL-ELIG Y 0000 Yes The student's eligibility for a second Pell Grant in the same award year is recorded in the grant payment record.
HWFNSL23DWF-NS-P1-AWARD Header A 0060PELL AWARD XXX,XXX NN The amount of the student's grant award (the scheduled award, adjusted for enrollment level and duration) is recorded.
HWFNSL23DWF-NS-P1-DATE Header A 0080PELL MOST RECENT UPDATE XXXXXXXXXX NXH The date of the most recent update is carried in each grant payment record.
VWFNSL23DWF-NS-P1-DATE N/A 0000 Not applicable The date of the most recent update is carried in each grant payment record. and duration) is recorded.
HWFNSL23DWF-NS-P1-EFC Header A 0060PELL FAMILY CONTRIBUTION XXX,XXX NN The EFC and federal verification status associatedwith the recorded federal transaction are capturedin the Pell Grant payment record.
HWFNSL23DWF-NS-P1-PAID Header A 0060PELL AMOUNT PAID XXX,XXX NN The amount of the grant paid to date is recorded in each grant payment record.
HWFNSL23DWF-NS-P1-SCH-AWD Header A 0060PELL SCHEDULED AWARD XXX,XXX NN The amount of the Pell Grant scheduled award and the percentage of that eligibility used are recorded.
HWFNSL23DWF-NS-P1-SCH-PCT Header A 0070PELL PERCENT SCH AWARD USED XXX.XX% NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P1-SCHOOL Header A 0080PELL SCHOOL CODE NN The institution reporting the grant payment is recorded with the payment.
HWFNSL23DWF-NS-P1-SEQ Header A 0020PELL SEQUENCE NUMBER NXH 1 3 Each grant payment is assigned a sequence number.
HWFNSL23DWF-NS-P1-TRAN Header A 0020PELL FEDERAL TRANSACTION NN The federal transaction associated with the grant payment is recorded.
HWFNSL23DWF-NS-P1-VER Header A 0030PELL VERIFICATION FLAG NXH Reference: WF-NS-P1-EFC
VWFNSL23DWF-NS-P1-VER N/A 0000 Not applicable Reference: WF-NS-P1-EFC
VWFNSL23DWF-NS-P1-VER S 0000 Selected/will not be Reference: WF-NS-P1-EFC
VWFNSL23DWF-NS-P1-VER V 0000 Verified Reference: WF-NS-P1-EFC
VWFNSL23DWF-NS-P1-VER W 0000 Selected/not yet ver Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-P2-ADDL-ELIG Header A 0010PELL ADDITIONAL ELIGIBILITY NXH WFNSL23DWF-NS-P1-ADDL-ELIG Reference: WF-NS-P1-ADDL-ELIG
HWFNSL23DWF-NS-P2-AWARD Header A 0060PELL AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-P2-DATE Header A 0080PELL MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-P2-EFC Header A 0060PELL FAMILY CONTRIBUTION XXX,XXX NN Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-P2-PAID Header A 0060PELL AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-P2-SCH-AWD Header A 0060PELL SCHEDULED AWARD XXX,XXX NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P2-SCH-PCT Header A 0070PELL PERCENT SCH AWARD USED XXX.XX% NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P2-SCHOOL Header A 0080PELL SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-P2-SEQ Header A 0020PELL SEQUENCE NUMBER NXH WFNSL23DWF-NS-P1-SEQ Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-P2-TRAN Header A 0020PELL FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-P2-VER Header A 0030PELL VERIFICATION FLAG NXH WFNSL23DWF-NS-P1-VER Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-P3-ADDL-ELIG Header A 0010PELL ADDITIONAL ELIGIBILITY NXH WFNSL23DWF-NS-P1-ADDL-ELIG Reference: WF-NS-P1-ADDL-ELIG
HWFNSL23DWF-NS-P3-AWARD Header A 0060PELL AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-P3-DATE Header A 0080PELL MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-P3-EFC Header A 0060PELL FAMILY CONTRIBUTION XXX,XXX NN Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-P3-PAID Header A 0060PELL AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-P3-SCH-AWD Header A 0060PELL SCHEDULED AWARD XXX,XXX NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P3-SCH-PCT Header A 0070PELL PERCENT SCH AWARD USED XXX.XX% NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P3-SCHOOL Header A 0080PELL SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-P3-SEQ Header A 0020PELL SEQUENCE NUMBER NXH WFNSL23DWF-NS-P1-SEQ Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-P3-TRAN Header A 0020PELL FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-P3-VER Header A 0030PELL VERIFICATION FLAG NXH WFNSL23DWF-NS-P1-VER Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-PELL-ADTNL Header A 0010ADDITIONAL PELL INFORMATION NXH Reference: WF-NS-LOAN-ADTNL
VWFNSL23DWF-NS-PELL-ADTNL N 0000 Additional detail Reference: WF-NS-LOAN-ADTNL
VWFNSL23DWF-NS-PELL-ADTNL Y 0000 No additional detail Reference: WF-NS-LOAN-ADTNL
HWFNSL23DWF-NS-PELL-CHG Header A 0010PELL GRANT CHANGE FLAG NXH Reference: WF-NS-LOAN-CHG
VWFNSL23DWF-NS-PELL-CHG # 0000 Change Reference: WF-NS-LOAN-CHG
VWFNSL23DWF-NS-PELL-CHG N 0000 No change Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-PELL-OVP Header A 0010PELL GRANT OVERPAYMENT NXH The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP D 0000 Overpayment deferred The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP F 0000 Fraud The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP N 0000 No overpayment The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP S 0000 Satis repmt arranged The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP W 0000 Overpayment waived The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP Y 0000 Overpayment The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-PELL-OVP-CTC Header A 0080PELL GRANT OVERPAYMENT CONTACT NXH Reference: WF-NS-PELL-OVP
VWFNSL23DWF-NS-PELL-OVP-CTC N/A 0000 Not applicable Reference: WF-NS-PELL-OVP the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP-CTC Y 0000 Multiple contacts Reference: WF-NS-PELL-OVP the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-PERK-CHG Header A 0010PERKINS LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-PERK-CUR Header A 0060CURRENT YEAR PERKINS LOAN NXH WFNSL23DWF-NS-SUB-OUT The current year loan amount may affect the student's eligibility for further Perkins loans.
HWFNSL23DWF-NS-PERK-OVP Header A 0010PERKINS LOAN OVERPAYMENT NXH WFNSL23DWF-NS-PELL-OVP The Perkins loan overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-PERK-OVP-CTC Header A 0080PERKINS LOAN OVERPAYMT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC Reference: WF-NS-PERK-OVP
HWFNSL23DWF-NS-PERK-TOTAL Header A 0060PERKINS LOAN TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further Perkins loans.
HWFNSL23DWF-NS-SEOG-OVP Header A 0010SEOG GRANT OVERPAYMENT NXH WFNSL23DWF-NS-PELL-OVP The SEOG Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-SEOG-OVP-CTC Header A 0080SEOG GRANT OVERPAYMENT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC Reference: WF-NS-SEOG-OVP
HWFNSL23DWF-NS-SUB-LIMIT Header 0000SEOG GRANT OVERPAYMENT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC
HWFNSL23DWF-NS-SUB-LIMIT-GR Header A 0010SUBSIDIZED DL/FFEL LIMIT (GR) NXH WFNSL23DWF-NS-SUB-LIMIT-UG Reference: WF-NS-SUB-LIMIT-UG
HWFNSL23DWF-NS-SUB-LIMIT-UG Header A 0010SUBSIDIZED DL/FFEL LIMIT (UG) NXH The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-LIMIT-UG C 0000 Close to limit The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-LIMIT-UG E 0000 Exceeded limit The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-LIMIT-UG N 0000 No problem The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-LIMIT-UG R 0000 Exc limit,affrmd dbt The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
HWFNSL23DWF-NS-SUB-OUT Header A 0060OUTSTANDING SUBSIDIZED DL/FFEL NXH The outstanding principal balance may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-OUT N/A 0000 Not applicable The outstanding principal balance may affect the student's eligibility for further subsidized Stafford loans.
HWFNSL23DWF-NS-SUB-PEND Header A 0060PENDING SUBSIDIZED DL/FFEL DSB NXH WFNSL23DWF-NS-SUB-OUT The pending disbursements may affect the student'seligibility for further subsidized Stafford loans.
HWFNSL23DWF-NS-SUB-TOTAL Header A 0060SUBSIDIZED DL/FFEL TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further subsidized Stafford loans.
HWFNSL23DWF-NS-T1-AWARD Header A 0060TEACH AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-T1-AWDYEAR Header A 0040TEACH AWARD YEAR NN The award year during which the federal grant was disbursed is recorded in the grant payment record.
HWFNSL23DWF-NS-T1-CONV Header A 0010TEACH CONVERSION FLAG NXH The TEACH Grant may have been converted to an unsubsidized Direct Loan.
VWFNSL23DWF-NS-T1-CONV N 0000 TEACH not converted The TEACH Grant may have been converted to an unsubsidized Direct Loan.
VWFNSL23DWF-NS-T1-CONV Y 0000 TEACH cnvrtd to loan The TEACH Grant may have been converted to an unsubsidized Direct Loan.
HWFNSL23DWF-NS-T1-DATE Header A 0080TEACH MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-T1-LEVEL Header A 0010TEACH ACADEMIC LEVEL NXH The award year during which the federal grant was disbursed is recorded in the grant payment record.
HWFNSL23DWF-NS-T1-PAID Header A 0060TEACH AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-T1-SCH-AWD Header A 0060TEACH SCHEDULED AWARD XXX,XXX NN The amount of the TEACH Grant scheduled award is recorded.
HWFNSL23DWF-NS-T1-SCHOOL Header A 0080TEACH SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-T1-SEQ Header A 0020TEACH SEQUENCE NUMBER NXH 1 3 Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-T1-SEQCODE Header A 0030TEACH GRANT SEQUENCE CODE NN The grant sequence code is part of the grant ID, assigned sequentially in order to distinguish between multiple grants that may be awarded when a student progresses to a new class level during an aid year.
HWFNSL23DWF-NS-T1-TRAN Header A 0020TEACH FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-T2-AWARD Header A 0060TEACH AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-T2-AWDYEAR Header A 0040TEACH AWARD YEAR NN Reference: WF-NS-T1-AWDYEAR
HWFNSL23DWF-NS-T2-CONV Header A 0010TEACH CONVERSION FLAG NXH WFNSL23DWF-NS-T1-CONV Reference: WF-NS-T1-CONV
HWFNSL23DWF-NS-T2-DATE Header A 0080TEACH MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-T2-LEVEL Header A 0010TEACH ACADEMIC LEVEL NXH Reference: WF-NS-T1-LEVEL
HWFNSL23DWF-NS-T2-PAID Header A 0060TEACH AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-T2-SCH-AWD Header A 0060TEACH SCHEDULED AWARD XXX,XXX NN Reference: WF-NS-T1-SCH-AWD
HWFNSL23DWF-NS-T2-SCHOOL Header A 0080TEACH SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-T2-SEQ Header A 0020TEACH SEQUENCE NUMBER NXH 1 3 Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-T2-SEQCODE Header A 0030TEACH GRANT SEQUENCE CODE NN Reference: WF-NS-T1-SEQCODE
HWFNSL23DWF-NS-T2-TRAN Header A 0020TEACH FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-T3-AWARD Header A 0060TEACH AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-T3-AWDYEAR Header A 0040TEACH AWARD YEAR NN Reference: WF-NS-T1-AWDYEAR
HWFNSL23DWF-NS-T3-CONV Header A 0010TEACH CONVERSION FLAG NXH WFNSL23DWF-NS-T1-CONV Reference: WF-NS-T1-CONV
HWFNSL23DWF-NS-T3-DATE Header A 0080TEACH MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-T3-LEVEL Header A 0010TEACH ACADEMIC LEVEL NXH Reference: WF-NS-T1-LEVEL
HWFNSL23DWF-NS-T3-PAID Header A 0060TEACH AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-T3-SCH-AWD Header A 0060TEACH SCHEDULED AWARD XXX,XXX NN Reference: WF-NS-T1-SCH-AWD
HWFNSL23DWF-NS-T3-SCHOOL Header A 0080TEACH SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-T3-SEQ Header A 0020TEACH SEQUENCE NUMBER NXH 1 3 Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-T3-SEQCODE Header A 0030TEACH GRANT SEQUENCE CODE NN Reference: WF-NS-T1-SEQCODE
HWFNSL23DWF-NS-T3-TRAN Header A 0020TEACH FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-TCH-ADTNL Header A 0010ADDITIONAL TEACH INFORMATION NXH WFNSL23DWF-NS-PELL-ADTNL Reference: WF-NS-LOAN-ADTNL
HWFNSL23DWF-NS-TCH-CHG Header A 0010TEACH CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-TCH-CONV Header A 0010TEACH CONVERSION FLAG NXH When a student with TEACH Grants discontinues pursuit of coursework leading to a teaching career, the TEACH Grants are converted to Direct loans.
VWFNSL23DWF-NS-TCH-CONV N 0000 TEACH Grants remain When a student with TEACH Grants discontinues pursuit of coursework leading to a teaching career, the TEACH Grants are converted to Direct loans. an aid year.
VWFNSL23DWF-NS-TCH-CONV Y 0000 TEACH cnvrtd to loan When a student with TEACH Grants discontinues pursuit of coursework leading to a teaching career, the TEACH Grants are converted to Direct loans. an aid year.
HWFNSL23DWF-NS-TCH-CONV-CHG Header A 0010TEACH CONVERSION CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-TCH-OUT Header A 0060OUTSTANDING CONVERTED TEACH NXH WFNSL23DWF-NS-SUB-OUT The outstanding principal balance may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-TCH-OVP Header A 0010TEACH OVERPAYMENT NXH WFNSL23DWF-NS-PELL-OVP The TEACH overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-TCH-OVP-CTC Header A 0080TEACH OVERPAYMT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC Reference: WF-NS-TCH-OVP
HWFNSL23DWF-NS-TCH-TOTAL Header A 0060CONVERTED TEACH TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-TCH-TOTAL-GR Header A 0060CONVERTED TEACH TOTAL (GR) NXH WFNSL23DWF-NS-SUB-OUT Reference: WF-NS-TCH-TOTAL eligibility for further Stafford loans.
HWFNSL23DWF-NS-TCH-TOTAL-UG Header A 0060CONVERTED TEACH TOTAL (UG) NXH WFNSL23DWF-NS-SUB-OUT Reference: WF-NS-TCH-TOTAL eligibility for further Stafford loans.
HWFNSL23DWF-NS-UNS-OUT Header A 0060OUTSTANDING UNSUBSIDZD DL/FFEL NXH WFNSL23DWF-NS-SUB-OUT The outstanding principal balance may affect the student's eligibility for further unsubsidized Stafford loans.
HWFNSL23DWF-NS-UNS-PEND Header A 0060PENDING UNSUBSIDZD DL/FFEL DSB NXH WFNSL23DWF-NS-SUB-OUT The pending disbursements may affect the student'seligibility for further unsubsidized Stafford loans.
HWFNSL23DWF-NS-UNS-TOTAL Header A 0060UNSUBSIDIZED DL/FFEL TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further unsubsidized Stafford loans.
HWFNSL23DWF-NSLDS Header 0000NSLDS INFORMATION GN National Student Loan Data System (NSLDS) information is transmitted from the Central Processing System (CPS) in the Institutional Student Information Report (ISIR) record.
HWFNSL23DWF-NSLDS-KEY Header A 0110NSLDS KEY KN The NSLDS key is comprised of FAO and the student's FINANCIER ID. This key is used in all NSLDS file accesss.
HWFNSL23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFNSL23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFNSL23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFNSL23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFNSL23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WFVER23D
==========================================
HWFVER23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFVER23DWF-VE-ID-VER-RSLTS Header A 0010IDENTITY VERIFICATION RESULTS Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group.
VWFVER23DWF-VE-ID-VER-RSLTS 1 0000 Completed in person Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 2 0000 Completed w/ notary Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 3 0000 Issues w/ identity Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 4 0000 Issues w/ HS comp Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 5 0000 No response / locate Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 6 0000 Issues w/ Id/HS comp Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
HWFVER23DWF-VE-INS-DATE Header D 0000INSTITUTIONAL VERIF DATE MM/DD/YYYY FN Reference: WF-VE-INS-REQD
HWFVER23DWF-VE-INS-REQD Header A 0010INSTITUTIONAL VERIF REQUIRED UUE For a school that uses an institutional verifica- tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
VWFVER23DWF-VE-INS-REQD 1 0000 Verif Group 1 For a school that uses an institutional verifica- tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
VWFVER23DWF-VE-INS-REQD 4 0000 Verif Group 4 For a school that uses an institutional verifica- tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
VWFVER23DWF-VE-INS-REQD 5 0000 Verif Group 5 For a school that uses an institutional verifica- tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
HWFVER23DWF-VE-INS-STAT Header A 0010INSTITUTIONAL VERIF STATUS UUE Reference: WF-VE-INS-REQD
VWFVER23DWF-VE-INS-STAT F 0000 Fail Reference: WF-VE-INS-REQD tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
VWFVER23DWF-VE-INS-STAT P 0000 Pass Reference: WF-VE-INS-REQD tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
HWFVER23DWF-VE-P-A-COOP Header P 0070PARENT AFI CO-OP EARNINGS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-A-CPAY Header P 0070PARENT AFI COMBAT PAY Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-A-CSPD Header P 0070PARENT AFI CHILD SUPPORT PAID Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-A-EDCR Header P 0070PARENT AFI EDUCATION CREDITS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-A-GRNT Header P 0070PARENT AFI GRANTS/SCHOLARSHIPSZ,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-A-WORK Header P 0070PARENT AFI NEED-BASED WORK Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-AGI Header PS0070PARENT ADJUSTED GROSS INCOME Z,ZZZ,ZZ9- UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-BUS-FRM Header P 0070PARENT BUSINESS/FARM ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-AST Include: WF-2223-FEDERAL.WF-FE-P-BUS-FRM
HWFVER23DWF-VE-P-CASH Header P 0070PARENT CASH ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-AST Include: WF-2223-FEDERAL.WF-FE-P-CASH
HWFVER23DWF-VE-P-DLW Header A 0010PARENT DISLOCATED WORKER UFE WFFED23DWF-FE-S-DLW Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-DLW
HWFVER23DWF-VE-P-FAM-COL Header P 0010PARENT FAMILY IN COLLEGE 9 UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-FAM-SIZE Header P 0020PARENT FAMILY SIZE Z9 UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-FED-TAX Header P 0070PARENT FEDERAL TAX Z,ZZZ,ZZ9 UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-FILE-STAT Header A 0010PARENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT
HWFVER23DWF-VE-P-FILER Header A 0010PARENT TAX FILER UFE WFFED23DWF-FE-S-FILER Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-FILER
HWFVER23DWF-VE-P-FORM Header A 0010PARENT TAX FORM UFE WFFED23DWF-FE-S-FORM Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-FILER
HWFVER23DWF-VE-P-INV Header P 0070PARENT INVESTMENT ASSETS ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-AST Include: WF-2223-FEDERAL.WF-FE-P-INV
HWFVER23DWF-VE-P-MAR Header A 0010PARENT MARITAL STATUS UFE WFFED23DWF-FE-P-MAR Include: WF-VERIFY-PAR-ATT Include: WF-2223-FEDERAL.WF-FE-P-MAR
HWFVER23DWF-VE-P-MT-LUNCH Header A 0010PARENT MEANS-TESTED LUNCH PGM UFE WFFED23DWF-FE-S-MT-LUNCH Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFVER23DWF-VE-P-MT-SNAP Header A 0010PARENT MEANS-TESTED SUPP NUTR UFE WFFED23DWF-FE-S-MT-SNAP Include: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-MT-SSI Header A 0010PARENT MEANS-TESTED SSI UFE WFFED23DWF-FE-S-MT-SSI Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFVER23DWF-VE-P-MT-TANF Header A 0010PARENT MEANS-TESTED TANF UFE WFFED23DWF-FE-S-MT-TANF Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFVER23DWF-VE-P-MT-WIC Header A 0010PARENT MEANS-TESTED WIC UFE WFFED23DWF-FE-S-MT-WIC Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFVER23DWF-VE-P-P1-INC Header PS0070PARENT 1 WORK INCOME Z,ZZZ,ZZ9- UN Include: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-P2-INC Header PS0070PARENT 2 WORK INCOME Z,ZZZ,ZZ9- UN Include: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-RES Header A 0020PARENT STATE OF RESIDENCE UFE WWSYSVRDWF-HELP-RES Include: WF-VERIFY-PAR-ATT Include: WF-2223-FEDERAL.WF-FE-P-RES
HWFVER23DWF-VE-P-SCHED1 Header A 0010PARENT SCHEDULE 1 FILED QUEST UFE WFFED23DWF-FE-S-SCHED1
HWFVER23DWF-VE-P-U-CSUP Header P 0070PARENT UTX CHILD SUPPORT RCVD Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-DST-PEN Header P 0070PARENT UNTXD PEN/DIST Z,ZZZ,ZZ9 UN
HWFVER23DWF-VE-P-U-INT Header P 0070PARENT UTX INTEREST INCOME Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-IRA Header P 0070PARENT UTX IRA PAYMENTS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-LIV Header P 0070PARENT UTX LIVING ALLOWANCES Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-OTHER Header P 0070PARENT UTX OTHER UNTAXED INC Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-PEN Header P 0070PARENT UTX PENSION PAYMENTS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-VET Header P 0070PARENT UTX VET NON-ED BENEFIT Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-UNTAXED Header P 0080PARENT TOTAL UNTAXED INCOME ZZ,ZZZ,ZZ9 UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-S-A-COOP Header P 0070STUDENT AFI CO-OP EARNINGS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-A-CPAY Header P 0070STUDENT AFI COMBAT PAY Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-A-CSPD Header P 0070STUDENT AFI CHILD SUPPORT PAIDZ,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-A-EDCR Header P 0070STUDENT AFI EDUCATION CREDITS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-A-GRNT Header P 0070STUDENT AFI GRANTS/SCHOLARSHPSZ,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-A-WORK Header P 0070STUDENT AFI NEED-BASED WORK Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-AGI Header PS0070STUDENT ADJUSTED GROSS INCOME Z,ZZZ,ZZ9- UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-BUS-FRM Header P 0070STUDENT BUSINESS/FARM ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-AST Include: WF-2223-FEDERAL.WF-FE-S-BUS-FRM
HWFVER23DWF-VE-S-CASH Header P 0070STUDENT CASH ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-AST Include: WF-2223-FEDERAL.WF-FE-S-CASH
HWFVER23DWF-VE-S-CIT Header A 0010STUDENT CITIZENSHIP STATUS UFE WFFED23DWF-FE-S-CIT Include: WF-VERIFY-STU-ATT Include: WF-2223-FEDERAL.WF-FE-S-CIT
HWFVER23DWF-VE-S-DLW Header A 0010STUDENT DISLOCATED WORKER UFE WFFED23DWF-FE-S-DLW Include: WF-VERIFY-STU-ATT Include: WF-2223-FEDERAL.WF-FE-S-DLW
HWFVER23DWF-VE-S-FAM-COL Header P 0010STUDENT FAMILY IN COLLEGE 9 UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-FAM-SIZE Header P 0020STUDENT FAMILY SIZE Z9 UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-FED-TAX Header P 0070STUDENT FEDERAL TAX Z,ZZZ,ZZ9 UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-FILE-STAT Header A 0010STUDENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT
HWFVER23DWF-VE-S-FILER Header A 0010STUDENT TAX FILER UFE WFFED23DWF-FE-S-FILER Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-FILER
HWFVER23DWF-VE-S-FORM Header A 0010STUDENT TAX FORM UFE WFFED23DWF-FE-S-FORM Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-FILER
HWFVER23DWF-VE-S-HS-COMP Header A 0010HIGH SCHOOL COMPLETION CONFIRM U Include: WF-VERIFY-STU-REQ
VWFVER23DWF-VE-S-HS-COMP Y 0000 HS Completn confirmd Include: WF-VERIFY-STU-REQ Include: WF-2223-FEDERAL.WF-FE-S-FILER
HWFVER23DWF-VE-S-INV Header P 0070STUDENT INVESTMENT ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-AST Include: WF-2223-FEDERAL.WF-FE-S-INV
HWFVER23DWF-VE-S-MAR Header A 0010STUDENT MARITAL STATUS UFE WFFED23DWF-FE-S-MAR Include: WF-VERIFY-STU-ATT Include: WF-2223-FEDERAL.WF-FE-S-MAR
HWFVER23DWF-VE-S-MT-LUNCH Header A 0010STUDENT MEANS-TESTED LUNCH PGM UFE WFFED23DWF-FE-S-MT-LUNCH Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFVER23DWF-VE-S-MT-SNAP Header A 0010STUDENT MEANS-TESTED SUPP NUTR UFE WFFED23DWF-FE-S-MT-SNAP Include: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-MT-SSI Header A 0010STUDENT MEANS-TESTED SSI UFE WFFED23DWF-FE-S-MT-SSI Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFVER23DWF-VE-S-MT-TANF Header A 0010STUDENT MEANS-TESTED TANF UFE WFFED23DWF-FE-S-MT-TANF Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFVER23DWF-VE-S-MT-WIC Header A 0010STUDENT MEANS-TESTED WIC UFE WFFED23DWF-FE-S-MT-WIC Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFVER23DWF-VE-S-RES Header A 0020STUDENT STATE OF RESIDENCE UFE WWSYSVRDWF-HELP-RES Include: WF-VERIFY-STU-ATT Include: WF-2223-FEDERAL.WF-FE-S-RES
HWFVER23DWF-VE-S-SCHED1 Header A 0010STUDENT FILED SCHEDULE 1 QUEST UFE WFFED23DWF-FE-S-SCHED1
HWFVER23DWF-VE-S-SEP Header A 0010STATEMT OF ED PURPOSE CONFIRM U Include: WF-VERIFY-STU-REQ
VWFVER23DWF-VE-S-SEP Y 0000 Ed Purpose confirmed Include: WF-VERIFY-STU-REQ Include: WF-2223-FEDERAL.WF-FE-S-RES
HWFVER23DWF-VE-S-SP-INC Header PS0070SPOUSE WORK INCOME Z,ZZZ,ZZ9- UN Include: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-ST-INC Header PS0070STUDENT WORK INCOME Z,ZZZ,ZZ9- UN Include: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-TEST-ACTV Header A 0010STUDENT ACTIVE DUTY TEST UFE WFFED23DWF-FE-S-TEST-ACTV Include: WF-VERIFY-STU-ATT The student's active duty status is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-CHL Header A 0010STUDENT CHILD DEPENDENTS TEST UFE WFFED23DWF-FE-S-TEST-CHL Include: WF-VERIFY-STU-ATT Whether the student has dependent children is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-DEP Header A 0010STUDENT OTHER DEPENDENTS TEST UFE WFFED23DWF-FE-S-TEST-DEP Include: WF-VERIFY-STU-ATT Whether the student has dependents other than a spouse or children is one of the factors used in determiningdependency status.
HWFVER23DWF-VE-S-TEST-DOB Header A 0010STUDENT DATE OF BIRTH TEST UFE WFFED23DWF-FE-S-TEST-DOB Include: WF-VERIFY-STU-ATT The student's date of birth is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-EMAN Header A 0010STUDENT EMANCIPATED MINOR TEST UFE WFFED23DWF-FE-S-TEST-EMAN Include: WF-VERIFY-STU-ATT Whether the student has been legally designated anemancipated minor is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-GRAD Header A 0010STUDENT GRADUATE TEST UFE WFFED23DWF-FE-S-TEST-GRAD Include: WF-VERIFY-STU-ATT Whether the student is in a graduate-level academic program is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-GUAR Header A 0010STUDENT GUARDIANSHIP TEST UFE WFFED23DWF-FE-S-TEST-GUAR Include: WF-VERIFY-STU-ATT Whether the student is in legal guardianship is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST UFE WFFED23DWF-FE-S-TEST-HMLS Include: WF-VERIFY-STU-ATT The student's designation as homeless or as self-supporting and at risk of homelessness is one of the factors used in determining dependencystatus.
HWFVER23DWF-VE-S-TEST-MAR Header A 0010STUDENT MARITAL TEST UFE WFFED23DWF-FE-S-TEST-MAR Include: WF-VERIFY-STU-ATT The student's marital status is one of the factorsused in determining dependency status.
HWFVER23DWF-VE-S-TEST-ORPH Header A 0010STUDENT ORPHAN/WARD TEST UFE WFFED23DWF-FE-S-TEST-ORPH Include: WF-VERIFY-STU-ATT Whether the student is an orphan, in foster care, or a ward of the courts is one of the factors usedin determining dependency status.
HWFVER23DWF-VE-S-TEST-UYHU Header A 0010STUDENT UNACC YOUTH (HUD) TEST UFE WFFED23DWF-FE-S-TEST-UYHU Include: WF-VERIFY-STU-ATT Whether the student has been identified as an unaccompanied youth is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-UYSD Header A 0010STUDENT UNACC YOUTH (SDL) TEST UFE WFFED23DWF-FE-S-TEST-UYSD Include: WF-VERIFY-STU-ATT Whether the student has been identified as an unaccompanied youth is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-VET Header A 0010STUDENT VETERAN TEST UFE WFFED23DWF-FE-S-TEST-VET Include: WF-VERIFY-STU-ATT The student's veteran status is one of the factorsused in determining dependency status.
HWFVER23DWF-VE-S-TM-SNAP Header 0000STUDENT VETERAN TEST UFE WFFED23DWF-FE-S-TEST-VET
HWFVER23DWF-VE-S-U-CSUP Header P 0070STUDENT UTX CHILD SUPPORT RCVDZ,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-DST-PEN Header P 0070STUDENT UNTXD PENS/DIST Z,ZZZ,ZZ9 UN
HWFVER23DWF-VE-S-U-INT Header P 0070STUDENT UTX INTEREST INCOME Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-IRA Header P 0070STUDENT UTX IRA PAYMENTS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-LIV Header P 0070STUDENT UTX LIVING ALLOWANCES Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-MONEY Header P 0070STUDENT UTX MONEY RECEIVED Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-OTHER Header P 0070STUDENT UTX OTHER UNTAXED INC Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-PEN Header P 0070STUDENT UTX PENSION PAYMENTS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-VET Header P 0070STUDENT UTX VET NON-ED BENEFITZ,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-UNTAXED Header P 0080STUDENT TOTAL UNTAXED INCOME ZZ,ZZZ,ZZ9 UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-VER Header A 0010VERIFICATION STATUS CFE The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
VWFVER23DWF-VE-VER F 0000 Fail; mismatch The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
VWFVER23DWF-VE-VER N 0000 Not yet verified The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
VWFVER23DWF-VE-VER P 0000 Pass; exact match The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
VWFVER23DWF-VE-VER T 0000 Pass; by tolerance The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
HWFVER23DWF-VE-VER-DATE Header D 0000VERIFICATION DATE MM/DD/YYYY FN The date that verification was last attempted documents the verification process.
HWFVER23DWF-VE-VER-FED Header A 0010FEDERAL VERIFICATION STATUS CXE The selection method used and whether verificationhas been completed must be reported as part of thefederal Pell Grant reporting process. In addition, federal funds may not be distributed to federally-selected but unverified students.
VWFVER23DWF-VE-VER-FED S 0000 Selected/will not be The selection method used and whether verificationhas been completed must be reported as part of thefederal Pell Grant reporting process. In addition, federal funds may not be distributed to federally-selected but unverified students.
VWFVER23DWF-VE-VER-FED V 0000 Verified The selection method used and whether verificationhas been completed must be reported as part of thefederal Pell Grant reporting process. In addition, federal funds may not be distributed to federally-selected but unverified students.
VWFVER23DWF-VE-VER-FED W 0000 Selected/not yet ver The selection method used and whether verificationhas been completed must be reported as part of thefederal Pell Grant reporting process. In addition, federal funds may not be distributed to federally-selected but unverified students.
HWFVER23DWF-VE-VER-INS Header A 0010INS SELECTION FOR VERIFICATION UUE The institution may choose to submit students to the federal verification process even if they werenot selected for verification by the Central Processing System (CPS).
VWFVER23DWF-VE-VER-INS N 0000 Not selected The institution may choose to submit students to the federal verification process even if they werenot selected for verification by the Central Processing System (CPS). federally-selected but unverified students.
VWFVER23DWF-VE-VER-INS S 0000 Selected The institution may choose to submit students to the federal verification process even if they werenot selected for verification by the Central Processing System (CPS). federally-selected but unverified students.
HWFVER23DWF-VE-VER-REVER Header A 0010RE-VERIFICATION CCE If the student is verified using an automated process, re-verification will be performed automatically whenever another federal record is processed in the ADD Load. Standard FINANCIER defaults this field to request automatic re-verification if the student was verified by the automated calculation process, andto require manual re-verification if the student was manually verified.
VWFVER23DWF-VE-VER-REVER A 0000 Automatic re-verif If the student is verified using an automated process, re-verification will be performed automatically whenever another federal record is processed in the ADD Load. Standard FINANCIER defaults this field to request automatic re-verification if the student was verified by the automated calculation process, andto require manual re-verification if the student was manually verified.
VWFVER23DWF-VE-VER-REVER M 0000 Manual re-verif If the student is verified using an automated process, re-verification will be performed automatically whenever another federal record is processed in the ADD Load. Standard FINANCIER defaults this field to request automatic re-verification if the student was verified by the automated calculation process, andto require manual re-verification if the student was manually verified.
HWFVER23DWF-VE-VER-TRAN Header A 0020VERIFICATION TRANSACTION FN The information used in calculating the student's need that leads to the disbursement package must be the same information considered in the verification process. The federal transaction documents the "version" of the need analysis information that has been verified.
HWFVER23DWF-VE-VET-DATE Header D 0000VET BENEFITS VERIF DATE MM/DD/YYYY FN Reference: WF-VE-VET-STAT
HWFVER23DWF-VE-VET-REQD Header A 0010VET BENEFITS VERIF REQUIRED 'T'XXXXXXXXXXXXXXXXXXXX UUE Students receiving veteran's educational benefits may be selected for certification of the duration and amount of those benefits. Selection for this certification process may be made for any of a variety of reasons.
VWFVER23DWF-VE-VET-REQD N 0000 Not selected Students receiving veteran's educational benefits may be selected for certification of the duration and amount of those benefits. Selection for this certification process may be made for any of a variety of reasons.
VWFVER23DWF-VE-VET-REQD S 0000 Selected Students receiving veteran's educational benefits may be selected for certification of the duration and amount of those benefits. Selection for this certification process may be made for any of a variety of reasons.
HWFVER23DWF-VE-VET-STAT Header A 0010VET BENEFITS VERIF STATUS UUE For students receiving veteran's benefits, the duration and amount of those benefits may be certified by comparing the benefits reported by the student on the federal financial aid application (FAFSA) with those reported to the school by the Veterans' Administration. The veteran's benefits verification status and its associated date document that this certification has been performed.
VWFVER23DWF-VE-VET-STAT F 0000 Fail For students receiving veteran's benefits, the duration and amount of those benefits may be certified by comparing the benefits reported by the student on the federal financial aid application (FAFSA) with those reported to the school by the Veterans' Administration. The veteran's benefits verification status and its associated date document that this certification has been performed.
VWFVER23DWF-VE-VET-STAT P 0000 Pass For students receiving veteran's benefits, the duration and amount of those benefits may be certified by comparing the benefits reported by the student on the federal financial aid application (FAFSA) with those reported to the school by the Veterans' Administration. The veteran's benefits verification status and its associated date document that this certification has been performed.
HWFVER23DWF-VERIFY-CONTROL Header 0000VERIFICATION CONTROLS GN Pass
HWFVER23DWF-VERIFY-KEY Header 0000VERIFICATION KEY KN The Verification key is comprised of FAO and the student's FINANCIER ID. This key is used in all Verification file accesss.
HWFVER23DWF-VERIFY-PAR-AST Header 0000PARENT VERIFICATION - ASSETS GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional parent asset information as part of theinstitutional verification procedure.
HWFVER23DWF-VERIFY-PAR-ATT Header 0000PARENT VERIFICATION - ATTRIBS GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional parent attribute information as part ofthe institutional verification procedure.
HWFVER23DWF-VERIFY-PAR-INC Header 0000PARENT VERIFICATION - INCOME GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional parent income information as part of the institutional verification procedure.
HWFVER23DWF-VERIFY-PAR-REQ Header 0000PARENT VERIFICATION - FED REQ GN For a dependent student selected for verification,the information that must be collected from inde- pendent sources (typically the parents' signed tax return) to compare with information submitted on the financial aid application. Specific items required for verification depend onthe CPS evaluation of the student's application and the current year's regulations. Mandated fields typically include information such as fam- ily size, number of family memebers in college, adjusted gross income, federal tax paid and un- taxed income; other fields may be required as well.
HWFVER23DWF-VERIFY-STU-AST Header 0000STUDENT VERIFICATION - ASSETS GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional student asset information as part of the institutional verification procedure.
HWFVER23DWF-VERIFY-STU-ATT Header 0000STUDENT VERIFICATION - ATTRIBS GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional student attribute information as part of the institutional verification procedure.
HWFVER23DWF-VERIFY-STU-INC Header 0000STUDENT VERIFICATION - INCOME GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional student income information as part of the institutional verification procedure.
HWFVER23DWF-VERIFY-STU-REQ Header 0000STUDENT VERIFICATION - FED REQ GN For a student selected for verification, the information that must be collected from indepen- dent sources (typically the student's signed tax return) to compare with information submitted on the financial aid application. Specific items required for verification depend onthe CPS evaluation of the student's application and the current year's regulations. Mandated fields typically include information such as fam- ily size, number of family memebers in college, adjusted gross income, federal tax paid and un- taxed income; other fields may be required as well.
HWFVER23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFVER23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFVER23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFVER23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFVER23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WWSHELPD
==========================================
HWWSHELPDWF-WFA23OVM Header 0000ADD/FINANCIER COMPARISON The ADD/FINANCIER Comparison displays financial information from the imported federal application along with corresponding values as currently stored in FINANCIER for the student. Summary information is presented first; student income and asset data then alternates with parent data. Press PF7 or PF8 to move from page to page.
HWWSHELPDWF-WFA23PAM Header 0000ADD/FINANCIER COMPARISON Reference: WF-WFA23OVM
HWWSHELPDWF-WFA23STM Header 0000ADD/FINANCIER COMPARISON Reference: WF-WFA23OVM
HWWSHELPDWF-WFCPI23M Header 0000CPS COMMUNICATIONS Use the CPS Communications screen to: - View a summary of CPS decisions regarding dependency status, verification selection, Pell eligibility, etc. - Request a first ISIR. Type Y in the Institution change field and supply the student's federal ID and DRN and your college code. - Override an NSLDS loan default setting when you know the default condition to be resolved. Type Y in the Loan Default Override field. - View student and parent identification informa- tion from the current ISIR. Press PF9 from the expansion field after the FedID label.
HWWSHELPDWF-WFF2301M Header 0000FEDERAL DATA (COMPRESSED) Use the Compressed Federal Data screen to examine or correct critical FAFSA data and to see need analysis results. The 4-page display includes need-analysis-related fields and calculation options (page 1), Untaxed Income and Additional Info detail (page 2), supporting data (page 3), and calculated EFCs (page 4). If you change calculation data, contributions are recalculated automatically. Corrections are stored for later export. You can expand the New and Rej correctionflags to see correction detail. For a trial calculation (no updates stored), use the Trial option (page 1). To "lock" a federal record against future update by the ADD Load, use the Lock option (page 1).
HWWSHELPDWF-WFF2302M Header 0000FEDERAL DATA (COMPRESSED) Reference: WF-WFF2301M
HWWSHELPDWF-WFF2303M Header 0000FEDERAL DATA (COMPRESSED) Reference: WF-WFF2301M
HWWSHELPDWF-WFF231AM Header 0000FEDERAL DATA (FAFSA FORMAT) Use the Federal Data, FAFSA Format screen to view the contents of a student's federal application. The screen contains multiple "pages" that correspond to the paper form. If you change need-analysis-related data, corrections are stored for later export processing. The final page contains calculation options, including the Lock option, which enables you to protect a federal record against future update by the ADD Load process.
HWWSHELPDWF-WFF231BM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF232AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF233AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF233BM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF234AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF235AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF235BM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF236AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF23CAM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFFGR23M Header 0000FEDERAL GRANT REPORTING Use the Federal Grant Reporting screen to see an overview of the student's Federal Grants (Pell andTEACH). Press EXPAND at any of the grant program headings to see detail information for that program.
HWWSHELPDWF-WFM23P1M Header 0000PARENT CALCULATIONS The Parent Calculations window displays the income and asset figures used to calculate the parent contribution on the ISIR (column 1) and for the NA methodologies in use. Use the PF7/PF8 keys to page through the detail.
HWWSHELPDWF-WFM23P2M Header 0000PARENT CALCULATIONS Reference: WF-WFM23P1M
HWWSHELPDWF-WFM23P3M Header 0000PARENT CALCULATIONS Reference: WF-WFM23P1M
HWWSHELPDWF-WFM23RAM Header 0000REJECTS/ASSUMPTIONS The Rejects/Assumptions window displays the reject and assumption codes in effect for the CPS-calculated EFC (on the ISIR, column 1) and the FINANCIER-calculated EFCs. A difference between the codes generated will help diagnose a discrepancy between the CPS- calculated and FINANCIER EFCs, and should help determine whether corrections are needed.
HWWSHELPDWF-WFM23S1M Header 0000STUDENT CALCULATIONS The Student Calculations window displays the income and asset figures used to calculate the student contribution on the ISIR (column 1) and for the NA methodologies in use. Use the PF7/PF8 keys to page through the detail.
HWWSHELPDWF-WFM23S2M Header 0000STUDENT CALCULATIONS Reference: WF-WFM23S1M
HWWSHELPDWF-WFM23S3M Header 0000STUDENT CALCULATIONS Reference: WF-WFM23S1M
HWWSHELPDWF-WFMCL23M Header 0000NEED ANALYSIS CALCULATIONS Use this screen to review the results of need analysis calculations. The screen displays expected parent and student contributions as calculated for the ISIR (column 1), for Pell grantpurposes (using a 9-month duration; column 2), andby the federal methodology (column 3) and institutional methodology (if used, column 4). This screen comprises the final page of the Compressed Federal Data and Compressed CSS Data screens and is also accessible from the Appl menu as the CSS/Federal Comparison or Need Analysis Calculations screen. Calculation detail is available if you have accessed the screen by menu:expand the Parents or Student heading with PF9.
HWWSHELPDWF-WFN23AGM Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23L1M Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23L2M Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23PGM Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23SGM Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23TGM Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFNSD23M Header 0000NSLDS Use the NSLDS screen to view information from the National Student Loan Data System for Title IV aidapplicants. The information enters FINANCIER from the student's ISIR. Pell payment and loan detail history are available by expansion, using the PF9 key.
HWWSHELPDWF-WFPEL23M Header 0000PELL GRANT REPORTING Use the Pell Grant Reporting screen to review a student's Pell award disbursements as currently recorded and as reported to COD. The Current column shows information as currently recorded in FINANCIER. The COD Accepted column shows the information most recently acknowledged by COD, as entered by the Pell Payment Import program (WFFLAIMB). The In Process column shows information that has been reported to COD but not yet acknowledged; values are entered by the Federal Grant Export program (WFFLREXB). You can set the Orig and Disb fields to retransmitor hold an origination or disbursement record.
HWWSHELPDWF-WFTCH23M Header 0000SMART GRANT REPORTING Use the TEACH Reporting window to review a student's TEACH Grant attributes and disbursementsas currently recorded and as reported to COD. The Current column shows information as currently recorded in FINANCIER. The COD Accepted column shows the information most recently acknowledged by COD, as entered by the Federal Grant Import program (WFFLAIMB). The In Process column shows information that has been reported to COD but not yet acknowledged; values are entered by the Federal Grant Export program (WFFLREXB). You can set the Orig and Disb fields to retransmitor hold an origination or disbursement record.
HWWSHELPDWF-WFV23PCM Header 0000VERIFICATION The window displays Parent Additional Financial Information and Untaxed Income detail. If the Untaxed Income (needed for federal verification) should be calculated from detail information, enter the values here. You may also enter values as needed for institutional verification.
HWWSHELPDWF-WFV23PVM Header 0000PARENT UNTAXED INCOME H The window displays Parent Untaxed Income detail. As required for the student's verification group, use the verification fields in the top portion of the window to enter verified untaxed income com- ponent amounts. Current federal data from the most recently loaded ISIR is displayed in the lower portion of the window.
HWWSHELPDWF-WFV23SCM Header 0000VERIFICATION The window displays Student Additional Financial Information and Untaxed Income detail. If the Untaxed Income (needed for federal verification) should be calculated from detail information, enter the values here. You may also enter values as needed for institutional verification.
HWWSHELPDWF-WFV23SVM Header 0000STUDENT UNTAXED INCOME H The window displays Student Untaxed Income detail. As required for the student's verification group, use the verification fields in the top portion of the window to enter verified untaxed income com- ponent amounts. Current federal data from the most recently loaded ISIR is displayed in the lower portion of the window.
HWWSHELPDWF-WFVET23M Header 0000VETERAN CERTIFICATION Use the Veteran Certification screen to verify a student's veteran status. The screen displays theamount of veteran's benefits from the ISIR. You can compare the amount reported by the Veteran's Administration and enter changes as needed. A change in amount generates a correction record forsubsequent export processing. As the screen does not generate an award record, benefits must be "awarded" independently; if necessary, use an Award screen to include veteran's benefits in the student's aid package.
HWWSHELPDWF-WFVRF23M Header 0000VERIFICATION Use the Verification screen to enter data for federal verification, in the fields that correspond to the student's Verification Tracking group. Fields not pertinent to the group are protected. To enter Untaxed Income detail, expand (via PF9) the STUDENT or PARENTS heading. To verify a student, press PF5 after typing in theverification data. If the student passes, the Status is set to P and the Reverification flag to A (allowing re-evaluation by automated processes).If you set the status manually to P the system sets the Reverification flag to M (manual evaluation only).
C:\Users\skylight120\Dropbox\WolffPack\intranet_access\Releases\2205-01\new\dc220501.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
==========================================
= WF23FEDD
==========================================
HWF23FEDDWF-AD-C-SSN Header 0000
HWF23FEDDWF-FE-A-COL1 Header A 0060APPLICATION COLLEGE NN The student may request that financial aid application information be sent to up to six colleges. The institution's college code contained in the federal application record received from the Central Processing System (CPS) must be used in submitting corrections back to the CPS.
HWF23FEDDWF-FE-A-COL10 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL2 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL3 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL4 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL5 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL6 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL7 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL8 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-COL9 Header A 0060APPLICATION COLLEGE NN Reference: WF-FE-A-COL1
HWF23FEDDWF-FE-A-HSG1 Header A 0010APPLICATION COLLEGE HOUSING NXH The student's expected housing status is collectedfor each college listed on the federal financial aid application.
VWF23FEDDWF-FE-A-HSG1 1 0000 Campus housing The student's expected housing status is collectedfor each college listed on the federal financial aid application. The institution's college code contained in the federal application record received from the Central Processing System (CPS) must be used in submitting corrections back to the CPS.
VWF23FEDDWF-FE-A-HSG1 2 0000 With parents The student's expected housing status is collectedfor each college listed on the federal financial aid application. The institution's college code contained in the federal application record received from the Central Processing System (CPS) must be used in submitting corrections back to the CPS.
VWF23FEDDWF-FE-A-HSG1 3 0000 Off-campus The student's expected housing status is collectedfor each college listed on the federal financial aid application. The institution's college code contained in the federal application record received from the Central Processing System (CPS) must be used in submitting corrections back to the CPS.
HWF23FEDDWF-FE-A-HSG10 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG2 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG3 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG4 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG5 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG6 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG7 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG8 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-HSG9 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-FE-A-HSG1
HWF23FEDDWF-FE-A-PREP-EIN Header A 0090APPLICATION PREPARER EIN NN Reference: WF-FE-A-PREP-SGN
HWF23FEDDWF-FE-A-PREP-SGN Header A 0010APPLICATION PREPARER SIGNATURE NXH If the federal financial aid application is completed by someone other than the student, the preparer's social security number or employer identification number and the preparer's signaturemust be recorded on the application.
VWF23FEDDWF-FE-A-PREP-SGN 1 0000 Signature present If the federal financial aid application is completed by someone other than the student, the preparer's social security number or employer identification number and the preparer's signaturemust be recorded on the application.
HWF23FEDDWF-FE-A-PREP-SSN Header A 0090APPLICATION PREPARER SSN NN Reference: WF-FE-A-PREP-SGN
HWF23FEDDWF-FE-A-SGN Header A 0010APPLICATION SIGNATURE NXH The federal financial aid application must be signed by the student and, if the student is dependent, by the parent. It must be signed within the appropriate dates for the financial aidyear. This field may not be corrected to blank.
VWF23FEDDWF-FE-A-SGN A 0000 Applicant only The federal financial aid application must be signed by the student and, if the student is dependent, by the parent. It must be signed within the appropriate dates for the financial aidyear. This field may not be corrected to blank.
VWF23FEDDWF-FE-A-SGN B 0000 Applicant and parent The federal financial aid application must be signed by the student and, if the student is dependent, by the parent. It must be signed within the appropriate dates for the financial aidyear. This field may not be corrected to blank.
VWF23FEDDWF-FE-A-SGN P 0000 Parent only The federal financial aid application must be signed by the student and, if the student is dependent, by the parent. It must be signed within the appropriate dates for the financial aidyear. This field may not be corrected to blank.
HWF23FEDDWF-FE-A-SGN-DATE Header A 0080APPLICATION SIGNATURE DATE NN Reference: WF-FE-A-SGN
HWF23FEDDWF-FE-A-SSREG Header A 0010SELECTIVE SERVICE REGISTRATION NXH If the student is male, and of the appropriate age, selective service registration is required inorder to maintain eligibility for federal aid eligibility. The student may authorize the schoolto initiate Selective Service registration on his behalf.
VWF23FEDDWF-FE-A-SSREG 1 0000 Registration request If the student is male, and of the appropriate age, selective service registration is required inorder to maintain eligibility for federal aid eligibility. The student may authorize the schoolto initiate Selective Service registration on his behalf. This field may not be corrected to blank.
HWF23FEDDWF-FE-AD-CITY Header A 0160STUDENT ADDRESS CITY NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-AD-PHONE Header A 0100STUDENT TELEPHONE NUMBER NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-AD-STATE Header A 0020STUDENT ADDRESS STATE NXH WWSTDNTDWW-ST-AD1-STATE Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-AD-STRT Header A 0350STUDENT ADDRESS STREET LINE NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-AD-ZIP Header A 0050STUDENT ADDRESS ZIP CODE NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-C-ADDR-CHG Header A 0010ADDRESS CHANGE FLAG NXH The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information.
VWF23FEDDWF-FE-C-ADDR-CHG 1 0000 Student mailing addr The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information. This field may not be corrected to blank. submitting corrections back to the CPS.
VWF23FEDDWF-FE-C-ADDR-CHG 2 0000 Student e-mail addr The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information. This field may not be corrected to blank. submitting corrections back to the CPS.
VWF23FEDDWF-FE-C-ADDR-CHG 3 0000 Parent e-mail addr The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information. This field may not be corrected to blank. submitting corrections back to the CPS.
VWF23FEDDWF-FE-C-ADDR-CHG 4 0000 More than one change The change flag indicates whether the current ISIR reflects changes in the student's and/or parents' address information. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-ASSUMPTION Header 0000CPS ASSUMPTIONS HN If there are errors or questionable information onthe federal financial aid application, the CentralProcessing System (CPS) may make assumptions aboutthe items in question.
HWF23FEDDWF-FE-C-ATHRSH-PAR Header A 0010PARENT ASSETS EXCEED THRESHOLD NXH WF23FEDDWF-FE-C-ATHRSH-STU The CPS may determine that the parents' assets exceed the threshold for eligibility for a Simple Needs Test.
HWF23FEDDWF-FE-C-ATHRSH-STU Header A 0010STUDENT ASSETS EXCEED THRSHOLD NXH The CPS may determine that the student's assets exceed the threshold for eligibility for a Simple Needs Test.
VWF23FEDDWF-FE-C-ATHRSH-STU N 0000 Do not exceed The CPS may determine that the student's assets exceed the threshold for eligibility for a Simple Needs Test. This field may not be corrected to blank. submitting corrections back to the CPS.
VWF23FEDDWF-FE-C-ATHRSH-STU Y 0000 Exceed threshold The CPS may determine that the student's assets exceed the threshold for eligibility for a Simple Needs Test. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-AUTO-ZERO Header A 0010AUTOMATIC ZERO EFC NXH If an independent student's income or a dependent student's parents' income falls below the threshold, the effective family contribution (EFC)automatically will be set to $0.
VWF23FEDDWF-FE-C-AUTO-ZERO Y 0000 Automatic zero case If an independent student's income or a dependent student's parents' income falls below the threshold, the effective family contribution (EFC)automatically will be set to $0. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-BATCH-YR Header A 0010BATCH YEAR NXH The batch year is the last digit of the fiscal year covered by the federal application. It is inserted into each ISIR record transmitted from the Central Processing System (CPS).
HWF23FEDDWF-FE-C-CFLAG Header A 0010SAR C FLAG NXH In some cases, a "C" is printed next to the EFC on Part 1 of the Student Aid Report (SAR) or electronic ISIR to indicate a problem with the student's application.
VWF23FEDDWF-FE-C-CFLAG Y 0000 C flag set In some cases, a "C" is printed next to the EFC on Part 1 of the Student Aid Report (SAR) or electronic ISIR to indicate a problem with the student's application. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-CFLAG-CHG Header A 0010SAR C CHANGE FLAG NXH The change flag indicates whether the current ISIRcontains a change in the SAR C flag.
VWF23FEDDWF-FE-C-CFLAG-CHG Y 0000 SAR C flag changed The change flag indicates whether the current ISIRcontains a change in the SAR C flag. This field may not be corrected to blank. submitting corrections back to the CPS.
HWF23FEDDWF-FE-C-COM01 Header A 0030COMMENT CODE NXH Error conditions, information, and further instructions are conveyed to the student through comment codes on a Student Aid Report (SAR) or electronic ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
HWF23FEDDWF-FE-C-COM02 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM03 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM04 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM05 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM06 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM07 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM08 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM09 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM10 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM11 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM12 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM13 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM14 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM15 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM16 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM17 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM18 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM19 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COM20 Header A 0030COMMENT CODE NXH WF23FEDDWF-FE-C-COM01 Reference: WF-FE-C-COM01
HWF23FEDDWF-FE-C-COMPUTE Header A 0030CPS COMPUTE BATCH NUMBER NN Records are submitted to the Central Processing System (CPS) Compute process in batches.
HWF23FEDDWF-FE-C-COR-FLAG Header A 1950CORRECTION FLAGS NXH The ISIR record contains an array of flags indicating which items on the federal financial aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR.
VWF23FEDDWF-FE-C-COR-FLAG 0 0000 No correction The ISIR record contains an array of flags indicating which items on the federal financial aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
VWF23FEDDWF-FE-C-COR-FLAG 1 0000 Field corrected The ISIR record contains an array of flags indicating which items on the federal financial aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
VWF23FEDDWF-FE-C-COR-FLAG 2 0000 Corrected prev tran The ISIR record contains an array of flags indicating which items on the federal financial aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
HWF23FEDDWF-FE-C-COR-INIT Header A 0010CORRECTION SOURCE NXH If the ISIR results from a correction, it containsan indication of the initiator of the correction.
VWF23FEDDWF-FE-C-COR-INIT A 0000 Applicant If the ISIR results from a correction, it containsan indication of the initiator of the correction. aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
VWF23FEDDWF-FE-C-COR-INIT D 0000 CPS If the ISIR results from a correction, it containsan indication of the initiator of the correction. aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
VWF23FEDDWF-FE-C-COR-INIT S 0000 School If the ISIR results from a correction, it containsan indication of the initiator of the correction. aid application have undergone correction since the submission of the original application. Thesefields are marked with "#" on the printed ISIR. Some of these comment codes convey information about data base matches performed by the Central Processing System (CPS) as a part of the editing and processing of the student's federal financial aid application.
HWF23FEDDWF-FE-C-COR-TRAN Header A 0020CORRECTION TRANSACTION NN If an Institutional Student Information Report (ISIR) is produced in response to a submitted correction, the transaction number of the record corrected is reported to the institution.
HWF23FEDDWF-FE-C-DEP Header A 0010DEPENDENCY STATUS NXH As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
VWF23FEDDWF-FE-C-DEP D 0000 Dependent As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
VWF23FEDDWF-FE-C-DEP I 0000 Independent As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
VWF23FEDDWF-FE-C-DEP X 0000 Dependent/rejected As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
VWF23FEDDWF-FE-C-DEP Y 0000 Independent/rejected As a part of the application editing and processing performed by the Central Processing System (CPS), the student's dependency status is determined.
HWF23FEDDWF-FE-C-EFC-CHG Header A 0010EFC CHANGE FLAG NXH If the ISIR is not the first sent containing a valid EFC, then the direction of change of the EFC(increase or decrease) is indicated in the ISIR record.
VWF23FEDDWF-FE-C-EFC-CHG 1 0000 EFC increase If the ISIR is not the first sent containing a valid EFC, then the direction of change of the EFC(increase or decrease) is indicated in the ISIR record.
VWF23FEDDWF-FE-C-EFC-CHG 2 0000 EFC decrease If the ISIR is not the first sent containing a valid EFC, then the direction of change of the EFC(increase or decrease) is indicated in the ISIR record.
HWF23FEDDWF-FE-C-ELEC-INST Header A 0010ELEC INSTITUTION INDICATOR NXH 0 9 The electronic institution indicator identifies which of the application colleges is the recipientof the electronic transaction.
HWF23FEDDWF-FE-C-ETI Header A 0010ELEC TRANSACTION INDICATOR NXH The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 0 0000 School gen,daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 1 0000 Other gen, daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 2 0000 School gen,requested The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 3 0000 Other gen, requested The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 4 0000 Sch gen pushed,daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 5 0000 Oth gen pushed,daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 6 0000 Sch gen pushed,req'd The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 7 0000 Oth gen pushed,req'd The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 8 0000 Oth gen sysgen,daily The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI 9 0000 Oth gen sysgen,req'd The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
VWF23FEDDWF-FE-C-ETI A 0000 ACG data update only The ETI indicates the initiator of the current ISIR record and the reason it was sent to the institution.
HWF23FEDDWF-FE-C-ETI-DEST Header A 0070ETI DESTINATION ID NN The ETI Destination ID of the institution receiving the ISIR is included in the ISIR record.
HWF23FEDDWF-FE-C-FC1 Header A 0060PRIMARY FC NN As a part of the application editing and processing performed by the Central Processing System (CPS), a primary family contribution (FC) is computed. In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-FC1-AAI Header A 0080ADJUSTED AVAILABLE INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-AI Header A 0080AVAILABLE INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-APA Header A 0090ASSET PROTECTION ALLOWANCE NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-ATI Header A 0070ALLOWANCES AGAINST INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-CAI Header A 0070CONTRIB FROM AVAILABLE INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-DNW Header A 0090DISCRETIONARY NET WORTH NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-EA Header A 0070EMPLOYMENT ALLOWANCE NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-FISAP Header A 0080PRIMARY FC FISAP INCOME NN As a part of the application editing and processing performed by the Central Processing System (CPS), a total income for use in categorizing the student on the year-end FISAP report is computed. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
HWF23FEDDWF-FE-C-FC1-FRMULA Header A 0010PRIMARY FC FORMULA NXH The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility.
VWF23FEDDWF-FE-C-FC1-FRMULA 1 0000 Full/Dependent The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 2 0000 Full/Indep wo deps The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 3 0000 Full/Indep with deps The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 4 0000 Simp/Dependent The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 5 0000 Simp/Indep wo deps The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
VWF23FEDDWF-FE-C-FC1-FRMULA 6 0000 Simp/Indep with deps The CPS-calculated formula reflects the student's status (dependent, independent without dependents,or independent with dependents) and the analysis (regular or simple) used to calculate federal financial aid eligibility. For students whose data corrections are consistently reported to the CPS, this CPS-calculated figure would be appropriate for use in actual FISAP reporting. For all other students, a locally-calculated FISAP income must be employed.
HWF23FEDDWF-FE-C-FC1-IPA Header A 0070INCOME PROTECTION ALLOWANCE NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M01 Header A 00601-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M02 Header A 00602-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M03 Header A 00603-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M04 Header A 00604-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M05 Header A 00605-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M06 Header A 00606-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M07 Header A 00607-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M08 Header A 00608-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M10 Header A 006010-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M11 Header A 006011-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-M12 Header A 006012-MONTH PRIMARY FC NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-NW Header A 0090NET WORTH NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-PC Header A 0070PARENT CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-PCA Header A 0070CONTRIBUTION FROM ASSETS NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SATI Header A 0070STUDENT ALWNCES AGAINST INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SCA Header A 0070STUDENT ASSET CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SDNW Header A 0090STUDENT DISCRETIONARY NET WRTH NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SIC Header A 0070STUDENT INCOME CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-SIGREJ Header A 0060PRIMARY FC (SIGNATURE REJECT) NN Include: WF-FE-C-FC1 Normally, when there are reject conditions (makingthe ISIR "not official"), no family contribution is computed. However, when all data is provided EXCEPT valid signatures, a family contribution is computed and reported on the ISIR.
HWF23FEDDWF-FE-C-FC1-STI Header A 0080STUDENT TOTAL INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-STX Header A 0070STATE TAX ALLOWANCE NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-TI Header A 0080TOTAL INCOME NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-TPC Header A 0070TOTAL PARENT CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC1-TSC Header A 0070TOTAL STUDENT CONTRIBUTION NN Reference: WF-FE-C-FC1
HWF23FEDDWF-FE-C-FC2 Header A 0060SECONDARY FC NN As a part of the application editing and processing performed by the Central Processing System (CPS), a secondary family contribution (FC)may be computed. In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-GRAD Header A 0010GRADUATE STATUS NXH As a part of the editing and processing of the federal financial aid application, the Central Processing System (CPS) determines whether the student is a graduate student.
VWF23FEDDWF-FE-C-GRAD Y 0000 Graduate As a part of the editing and processing of the federal financial aid application, the Central Processing System (CPS) determines whether the student is a graduate student. In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-HIL-FLAG Header A 1950HIGHLIGHT FLAGS NXH The ISIR record contains an array of flags indicating which items on the federal financial aid application have been assigned assumed values by the Central Processing System (CPS).
VWF23FEDDWF-FE-C-HIL-FLAG 0 0000 No highlight The ISIR record contains an array of flags indicating which items on the federal financial aid application have been assigned assumed values by the Central Processing System (CPS). In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-HIL-FLAG 1 0000 Field highlight The ISIR record contains an array of flags indicating which items on the federal financial aid application have been assigned assumed values by the Central Processing System (CPS). In addition to a standard 9-month FC, the CPS supplies FCs appropriate for other enrollment periods. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-IRS-AGI-PAR Header A 0010PARENT IRS AGI DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent AGI value on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA onthe web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-AGI-STU Header A 0010STUDENT IRS AGI DATA FLAG NXH The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification.
VWF23FEDDWF-FE-C-IRS-AGI-STU 0 0000 IRS data not used The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-AGI-STU 1 0000 Data transfer/no chg The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-AGI-STU 2 0000 Data transfer/chg'd The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-AGI-STU 3 0000 IRSReq 02-04,07 chgd The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-AGI-STU 4 0000 IRSReq 02-04,07 prev The status of the student AGI value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (AGI was retrieved from the tax return and not subsequently changed),the AGI does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-IRS-DSP-PAR Header A 0010PARENT IRS DISPLAY FLAG X Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not.
VWF23FEDDWF-FE-C-IRS-DSP-PAR A 0000 Spec circ/no par ?s Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR B 0000 IRS DRT displayed Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR C 0000 Tax ret not complete Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR D 0000 Mar dt >= 01/2021 Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR E 0000 SSN begins with 666 Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR F 0000 All zeroes in SSN Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR G 0000 No valid SSN Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR J 0000 PRican/foreign ret Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR K 0000 Marr, filed sep Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR L 0000 Marr, head of house Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR M 0000 Mar/tax ret stat dif Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-PAR N 0000 Unmarr, live togethr Whether the parent was able to use the IRS Data Retrieval tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-IRS-DSP-STU Header A 0010STUDENT IRS DISPLAY FLAG X Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not.
VWF23FEDDWF-FE-C-IRS-DSP-STU A 0000 Stu,no inc/assets Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU B 0000 IRS DRT displayed Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU C 0000 Tax ret not complete Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU D 0000 Mar dt >= 01/2021 Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU E 0000 SSN begins with 666 Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU J 0000 PRican/foreign ret Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU K 0000 Married, filed sep Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU L 0000 Mar, head of house Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRS-DSP-STU M 0000 Mar/tax ret stat dif Whether the student was able to use the IRS Data Retrieval Tool, and if not, why not. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-IRS-DSTP-PARHeader A 0010PAR IRS UNTXD PEN/DIST FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU
HWF23FEDDWF-FE-C-IRS-EDCR-PARHeader A 0010PAR IRS ED CREDITS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent Education Credits value on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate finacial data when completing a FAFSA on the Web. If the value is 1 (retrieved from the tax return and not subsequently changed),the Education Credits field does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-EDCR-STUHeader A 0010STU IRS ED CREDITS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student Education Credits value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is l (retrieved from the tax return and not subsequently changed),the Education Credits field does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-FIT-PAR Header A 0010PARENT IRS FIT DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent FIT value (federal incometax paid) on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate financial data whencompleting a FAFSA on the web. If the value is 1 (FIT was retrieved from the tax return and not subsequently changed), the FIT does not need to beverified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-FIT-STU Header A 0010STUDENT IRS FIT DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student's FIT value (federal income tax paid) on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-FLST-PARHeader A 0010PAR IRS FILE STATUS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent Tax Return Filing Status value on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web.
HWF23FEDDWF-FE-C-IRS-FLST-STUHeader A 0010STU IRS FILE STATUS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student Tax Return Filing Statusvalue on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web.
HWF23FEDDWF-FE-C-IRS-INT-PAR Header A 0010PAR IRS INTEREST INC DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent Interest Income value on the FAFSA, as compared to the parent's tax return,for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSAon the Web. If the value is 1 (retrieved from thetax return and not subsequently changed), the Interest Income does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-INT-STU Header A 0010STU IRS INTEREST INC DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student Interest Income value onthe FAFASA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (retrieved from the tax return and not subsequently changed),the Interest Income does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-IRA-PAR Header A 0010PAR IRS IRA PAYMENTS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent IRA Payments value on theFAFSA, as compared to the parent's tax return, forapplicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (retrieved from thetax return and not subsequently changed), the IRA Payments field does not need to be verified ifthe student is selected for verification.
HWF23FEDDWF-FE-C-IRS-IRA-STU Header A 0010STU IRS IRA PAYMENTS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student IRA Payments value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web. If the value is 1 (retrieved from the tax return and not subsequently changed),the IRA Payments field does not need to be verified if the student is selected for verification.
HWF23FEDDWF-FE-C-IRS-RET-PAR Header A 0010PAR IRS RETURN TYPE DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent Type of Tax Return value on the FAFSA, as compared to the parent's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the Web.
HWF23FEDDWF-FE-C-IRS-RET-STU Header A 0010STU IRS RETURN TYPE DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student Type of Tax Return valueon the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the web.
HWF23FEDDWF-FE-C-IRS-SCD1-PARHeader A 0010PAR IRS FILED SCHED 1 DATA FLG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent filed schedule 1 value onthe FAFSA, as compared to the parent's tax return,for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA onthe web. If the value is 1 (filed schedule 1 was retrieved from the tax return and not subsequentlychanged), the Sched 1 answer does not need to be verified if the parent is selected for verification.
HWF23FEDDWF-FE-C-IRS-SCD1-STUHeader A 0010STU IRS FILED SCHED 1 DATA FLG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student filed schedule 1 value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the web. If the value is 1 (Filed schedule 1 was retrieved from the tax return and not subsequently changed), the Sched 1 answer doesnot need to be verified if the student is selectedfor verification.
HWF23FEDDWF-FE-C-IRSREQ-PAR Header A 0020PARENT IRS DATA REQUEST NXH WF23FEDDWF-FE-C-IRSREQ-STU Upon request by the parent, financial information may be transferred from the IRS into the FAFSA on the Web (FOTW) application.
HWF23FEDDWF-FE-C-IRSREQ-STU Header A 0020STUDENT IRS DATA REQUEST NXH Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application.
VWF23FEDDWF-FE-C-IRSREQ-STU 00 0000 Ineligible Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 01 0000 Data used/no xfer Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 02 0000 Data xfer w/o change Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 03 0000 Data xfer/changed Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 04 0000 Data xfer/subs chg Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 05 0000 Data not used/no xfer Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 06 0000 Data chg/ineligible r Upon request by the student, financial informationmay be transferred from the IRS into the FAFSA on the Web (FOTW) application. IRS Retrieval tool to populate financial data whencompleting a FAFSA on the Web. If the value is 1 (FIT retrieved from the tax return and not subse- quently changed), the FIT does not need to be verified if the student is selected for verification. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-IRSREQ-STU 07 0000 Data xfer/amended r
HWF23FEDDWF-FE-C-MATCH Header A 0010CPS MATCH FLAGS HN As part of the processing of a student's federal financial aid application, the Central Processing System (CPS) performs matches with a variety of files administered by a variety of agencies. The results of some of those matches are reported directly by the CPS to the institution; others arereflected in comments printed on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-CIT Header A 0010SSA CITIZENSHIP MATCH NXH Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-CIT * 0000 Foreign Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT A 0000 US citizen Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT B 0000 Legal/work elig Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT C 0000 Legal/work inelig Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT D 0000 Other Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT E 0000 Alien/work auth Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT F 0000 Conditnly legalized Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-CIT N 0000 Unable to verify Include: WF-FE-C-MATCH The Social Security Administration verification ofcitizenship is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-DHS Header A 0010DHS MATCH NXH Include: WF-FE-C-MATCH The Department of Homeland Security verification ofeligible non-citizen status is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-DHS N 0000 Citshp not confirmed Include: WF-FE-C-MATCH The Department of Homeland Security verification ofeligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS Y 0000 Citiznship confirmed Include: WF-FE-C-MATCH The Department of Homeland Security verification ofeligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-DHS2 Header A 0010DHS SECONDARY MATCH NXH Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-DHS2 C 0000 Pending DHS process Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS2 N 0000 Citshp not confirmed Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS2 P 0000 Pending sec DHS proc Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS2 X 0000 Not enough info Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-DHS2 Y 0000 Citiznship confirmed Include: WF-FE-C-MATCH The Department of Homeland Security secondary verification of eligible non-citizen status is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-DOD Header A 0010DOD MATCH NXH Include: WF-FE-C-MATCH The Department of Defense verification of a parent's death while serving in the Armed Servicesin Afghanistan or Iraq during the current conflicts is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-DOD Y 0000 Parent qual deceased Include: WF-FE-C-MATCH The Department of Defense verification of a parent's death while serving in the Armed Servicesin Afghanistan or Iraq during the current conflicts is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-HS Header A 0010HIGH SCHOOL MATCH NXH Include: WF-FE-C-MATCH The verification of the student's graduation high school is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-HS Y 0000 HS not confirmed Include: WF-FE-C-MATCH The verification of the student's graduation high school is reported directly as a CPS match flag. in Afghanistan or Iraq during the current conflicts is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-NSL Header A 0010NSLDS MATCH NXH Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-NSL 1 0000 Eligible for TIV aid Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 2 0000 Default Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 3 0000 Overpayment Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 4 0000 Default/Overpayment Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 7 0000 Match/no data Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-NSL 8 0000 Transaction not sent Include: WF-FE-C-MATCH The Department of Education verification of loan default and/or grant repayment status in the National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-P1 Header A 0010PARENT 1 SOCIAL SECURITY MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN CPS match flag indicating the results of verifyingthe parent's SSN, name and date of birth with the Social Security Administration.
HWF23FEDDWF-FE-C-MATCH-P2 Header A 0010PARENT 2 SOCIAL SECURITY MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN Reference: WF-FE-C-MATCH-P1
HWF23FEDDWF-FE-C-MATCH-SS Header A 0010SELECTIVE SERVICE MATCH NXH Include: WF-FE-C-MATCH The Selective Service verification of registrationstatus is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-SS N 0000 Reg status not conf Include: WF-FE-C-MATCH The Selective Service verification of registrationstatus is reported directly as a CPS match flag. National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SS T 0000 Temporarily exempt Include: WF-FE-C-MATCH The Selective Service verification of registrationstatus is reported directly as a CPS match flag. National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SS Y 0000 Reg status confirmed Include: WF-FE-C-MATCH The Selective Service verification of registrationstatus is reported directly as a CPS match flag. National Student Loan Data System is reported directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-SSN Header A 0010STUDENT SOCIAL SECURITY MATCH NXH Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag.
VWF23FEDDWF-FE-C-MATCH-SSN 1 0000 No match Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 2 0000 SSN/name match Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 3 0000 SSN only match Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 4 0000 SSN/name/DOB match Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 5 0000 SSN/name/DOB/death I Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 6 0000 SSN not verified Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-SSN 8 0000 Record not sent Include: WF-FE-C-MATCH The Social Security Administration verification ofthe student's SSN, name, and date of birth is reported directly as a CPS match flag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MATCH-VA Header A 0010VETERANS ADMINISTRATION MATCH NXH Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag.
VWF23FEDDWF-FE-C-MATCH-VA 1 0000 Vet status confirmed Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-VA 2 0000 Record found/inelig Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-VA 3 0000 Record not found Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-VA 4 0000 Active duty Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-MATCH-VA 8 0000 Record not sent Include: WF-FE-C-MATCH The Veterans' Administration verification of veteran status is reported directly as a CPS matchflag. directly as a CPS match flag. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-MULT-INST Header A 0100MULTIPLE INSTITUTION FLAG NXH WF23FEDDWF-FE-C-ETI The ISIR record may contain multiple institution codes associated with the same destination point.
HWF23FEDDWF-FE-C-NSLDS-PS1 Header A 0020NSLDS POST-SCREENING REASON NXH If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records.
VWF23FEDDWF-FE-C-NSLDS-PS1 01 0000 Default added If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 02 0000 Overpayment added If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 03 0000 Default resolved If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 04 0000 Overpayment resolved If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 05 0000 MPN status change If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 06 0000 Loan into discharge If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 07 0000 Loan outof discharge If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 08 0000 Closed school If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 09 0000 Exceeded sub limit If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 10 0000 Exceeded comb limit If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 11 0000 Exc sub limit rsolvd If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 12 0000 Exc cmb limit rsolvd If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 13 0000 For FSA use only If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 14 0000 Active bankruptcy If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 15 0000 PLUS MPN status chg If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 16 0000 GPLUS MPN status chg If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 17 0000 Fraud convic added If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 18 0000 Fraud convic resolve If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 19 0000 TEACH convert->loan If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 20 0000 Met or exc Pell LEU If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 21 0000 No longer at/exc LEU If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 22 0000 Close to Pell LEU If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 23 0000 No longer close->LEU If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 24 0000 Enrol status change If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 25 0000 Sub Usg lim applies If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 26 0000 Subsidy stat chgd If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 27 0000 Sub usg per decrease If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-NSLDS-PS1 99 0000 Other If the student's eligibility for federal financialaid changes after the initial application is matched against the NSLDS database, the change will be documented on subsequent ISIR records. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-NSLDS-PS2 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-FE-C-NSLDS-PS1
HWF23FEDDWF-FE-C-NSLDS-PS3 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-FE-C-NSLDS-PS1
HWF23FEDDWF-FE-C-NSLDS-TRAN Header A 0020NSLDS TRANSACTION NN NSLDS information may or may not be updated with each ISIR transmitted to the institution. The most recent transaction containing updated NSLDS information is identified in the ISIR record.
HWF23FEDDWF-FE-C-ORIG-DATE Header A 0080APPLICATION RECEIVED DATE NN The date that the original federal financial aid application was received by its processor is oftenused in establishing priorities in packaging.
HWF23FEDDWF-FE-C-ORIG-SRCE Header A 0010ORIGINAL APPLICATION SOURCE NXH The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record.
VWF23FEDDWF-FE-C-ORIG-SRCE 1 0000 Electronic The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 2 0000 Web Student The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 3 0000 Web FAA The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 4 0000 Paper The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 6 0000 FSAIC The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-SRCE 7 0000 FAFSA4caster The initial application's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-ORIG-TYPE Header A 0010ORIGINAL APPLICATION TYPE NXH Reference: WF-FE-C-ORIG-SRCE
VWF23FEDDWF-FE-C-ORIG-TYPE A 0000 Application Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE B 0000 Application Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE E 0000 EZ FAFSA Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE F 0000 EZ FAFSA Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE G 0000 EZ FAFSA renewal Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE H 0000 EZ FAFSA rnw Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE J 0000 Corr application Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE K 0000 Corr app Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE R 0000 Renewal application Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE T 0000 Renewal app Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE U 0000 PDF Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-ORIG-TYPE V 0000 PDF Spanish Reference: WF-FE-C-ORIG-SRCE A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-PELL-ELIG Header A 0010PELL ELIGIBILITY NXH As a part of the editing and processing of the federal financial aid application, the Central Processing System (CPS) determines whether the student is eligible for a Pell Grant.
VWF23FEDDWF-FE-C-PELL-ELIG Y 0000 Eligible for Pell As a part of the editing and processing of the federal financial aid application, the Central Processing System (CPS) determines whether the student is eligible for a Pell Grant. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-PROC-DATE Header A 0080TRANSACTION PROCESSING DATE NN The processing date of each application or application change submitted to the Central Processing System (CPS) determines the order in which transaction numbers are assigned.
HWF23FEDDWF-FE-C-PUSHED Header A 0010ISIR PUSHED FLAG NXH The "pushed" flag indicates that the current ISIR was automatically sent to the institution.
VWF23FEDDWF-FE-C-PUSHED Y 0000 Automatically sent The "pushed" flag indicates that the current ISIR was automatically sent to the institution. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-REC-TYPE Header A 0010PROCESSED RECORD TYPE NXH A variety of document submissions can result in generation of an ISIR record.
VWF23FEDDWF-FE-C-REC-TYPE C 0000 Correction app A variety of document submissions can result in generation of an ISIR record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
VWF23FEDDWF-FE-C-REC-TYPE H 0000 Correction A variety of document submissions can result in generation of an ISIR record. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-REJ-CHG Header A 0010REJECT STATUS CHANGE FLAG NXH The change flag indicates whether the current ISIRcontains a change in reject status.
VWF23FEDDWF-FE-C-REJ-CHG Y 0000 Reject status changd The change flag indicates whether the current ISIRcontains a change in reject status. A number of intermediate calculations are computedby the CPS and reported on the SAR or ISIR.
HWF23FEDDWF-FE-C-REJ1 Header A 0020REJECT REASON NXH As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 1 0000 No SNT/Assets blank As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 10 0000 Mar/fam size missing As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 11 0000 Mar/inc inconsistent As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 12 0000 Par tax paid >or=AGI As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 13 0000 Student missing name As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 14 0000 Student unsigned app As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 15 0000 Parent unsigned app As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 16 0000 Stu unsigned web app As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 17 0000 Unknown/inelig citiz As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 18 0000 Stu SSA SSN not fnd As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 19 0000 Student on DOJ hold As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 2 0000 All income fld blank As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 20 0000 Ind/Par non-fil/inc As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 21 0000 Stu mar dat>app date As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 23 0000 ED eligibility hold As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 24 0000 NSLDS Fraud Loan set As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 3 0000 Stu tax paid >or=AGI As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 4 0000 Stu mar dat>sign dat As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 5 0000 Missing/invalid DOB As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 6 0000 Fa SSA SSN not found As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 7 0000 Mo SSA SSN not found As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 8 0000 Stu SSA dt of death As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 9 0000 Par SSN/DOB/nm missg As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 A 0000 Stu DOB in question As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 B 0000 Stu age in question As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 C 0000 Ind/Par tax pd> %AGI As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 D 0000 Stu SSA match/nm not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 E 0000 Fa SSA match/nm not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 F 0000 Mo SSA match/nm not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 G 0000 Dep stu tax pd> %AGI As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 J 0000 Tax filer/no fa SSN As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 K 0000 Tax filer/no mo SSN As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 N 0000 Student partial name As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 R 0000 Stu SSA match/DB not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 S 0000 Fa SSA match/DOB not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 T 0000 Mo SSA match/DOB not As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-REJ1 W 0000 Fam size in question As a part of the application editing and processing performed by the Central Processing System (CPS), errors and questionable information are documented via reject reasons. Until the errors are corrected and the questionable data verified or corrected, federal funds may not be disbursed to the student. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-REJ2 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ3 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ4 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ5 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ6 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REJ7 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-FE-C-REJ1
HWF23FEDDWF-FE-C-REPROC-RSN Header A 0020REPROCESSING REASON NXH 01 99 If an ISIR is generated because of CPS activity (rather than in response to a correction or specifrequest) the reason for the reprocessed applicatiois identified.
HWF23FEDDWF-FE-C-SIMP-NEEDS Header A 0010SIMPLIFIED NEEDS TEST NXH Depending on the information submitted on the federal financial aid application, the applicant may meet the requirements for a simplified need analysis.
VWF23FEDDWF-FE-C-SIMP-NEEDS N 0000 Simp Nds Tst not met Depending on the information submitted on the federal financial aid application, the applicant may meet the requirements for a simplified need analysis. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SIMP-NEEDS Y 0000 Simp Needs Test met Depending on the information submitted on the federal financial aid application, the applicant may meet the requirements for a simplified need analysis. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-SP-CIRC Header A 0010SPECIAL CIRCUMSTANCE NXH Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances.
VWF23FEDDWF-FE-C-SP-CIRC 1 0000 Dep w/o parent data Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SP-CIRC 2 0000 Corr to parent data Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SP-CIRC 3 0000 Unaccomp'ed homeless Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SP-CIRC 4 0000 Dependent unsub only Depending on the information submitted on the federal financial aid application, the applicationmay be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-SSN-DUP Header A 0010DUPLICATE SSN NXH If another student is using the same SSN, the ISIRcontains a warning flag.
VWF23FEDDWF-FE-C-SSN-DUP Y 0000 Non-unique SSN If another student is using the same SSN, the ISIRcontains a warning flag. may be flagged as involving special circumstances. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-SSN-NM-CHG Header A 0010NAME/SSN CHANGE FLAG NXH The change flag indicates whether the current ISIR reflects changes in the student's social security number and/or last name.
VWF23FEDDWF-FE-C-SSN-NM-CHG B 0000 SSN and name change The change flag indicates whether the current ISIR reflects changes in the student's social security number and/or last name. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SSN-NM-CHG N 0000 Name change The change flag indicates whether the current ISIR reflects changes in the student's social security number and/or last name. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-SSN-NM-CHG S 0000 SSN change The change flag indicates whether the current ISIR reflects changes in the student's social security number and/or last name. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-TRAN-DATE Header A 0080TRANSACTION RECEIVED DATE NN The date that the current transaction was receivedby its processor is reported to the institution.
HWF23FEDDWF-FE-C-TRAN-SRCE Header A 0010TRANSACTION SOURCE NXH The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record.
VWF23FEDDWF-FE-C-TRAN-SRCE 1 0000 Electronic The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 2 0000 Web Student The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 3 0000 Web FAA The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 4 0000 Paper The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 5 0000 CPS The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 6 0000 FSAIC The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 7 0000 FAFSA4caster The transaction's source and type are reported to the institutions that receive the Institutional Student Information Report (ISIR) record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-SRCE 8 0000 myStudentAid app
HWF23FEDDWF-FE-C-TRAN-TYPE Header A 0010TRANSACTION TYPE NXH Reference: WF-FE-C-TRAN-SRCE
VWF23FEDDWF-FE-C-TRAN-TYPE A 0000 Application Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE B 0000 Application Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE C 0000 Correction Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE D 0000 Drug hold release Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE E 0000 EZ FAFSA Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE F 0000 EZ FAFSA Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE G 0000 EZ FAFSA renewal Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE H 0000 EZ FAFSA rnw Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE J 0000 Corr application Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE K 0000 Corr app Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE L 0000 Identity hold releas Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE M 0000 DHS secondary conf Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE N 0000 NSLDS post-screening Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE P 0000 Reprocessing Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE Q 0000 Correction Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE R 0000 Renewal application Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE S 0000 Signature page Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE T 0000 Renewal app Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE U 0000 PDF Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE V 0000 PDF Spanish Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE W 0000 SSA death file match Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE X 0000 DOD match Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-TRAN-TYPE Y 0000 Identity Verif Reference: WF-FE-C-TRAN-SRCE For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER Header A 0010VERIFICATION SELECTION NXH As a part of the application editing and processing performed by the Central Processing System (CPS), the student may be selected for institutional verification.
VWF23FEDDWF-FE-C-VER * 0000 Subsequent selected As a part of the application editing and processing performed by the Central Processing System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER N 0000 Not selected As a part of the application editing and processing performed by the Central Processing System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER Y 0000 Selected As a part of the application editing and processing performed by the Central Processing System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-CHG Header A 0010VERIFICATION STATUS CHNGE FLAG NXH The change flag indicates whether the current ISIRcontains a change in verification selection.
VWF23FEDDWF-FE-C-VER-CHG C 0000 Ver Track Grp changd The change flag indicates whether the current ISIRcontains a change in verification selection. System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-CHG Y 0000 Verif selectn changd The change flag indicates whether the current ISIRcontains a change in verification selection. System (CPS), the student may be selected for institutional verification. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-DHS Header A 0130DHS VERIFICATION NUMBER NN A verification number is returned from the Department of Homeland Security when a student's DHS status is confirmed.
HWF23FEDDWF-FE-C-VER-DOD Header A 0080DOD VERIFICATION DATE NN A verification date of death is returned from the Department of Defense when a student's DOD match status is confirmed.
HWF23FEDDWF-FE-C-VER-FLAG Header A 1950FAFSA DATA VERIFY FLAGS NXH The ISIR record contains an array of flags indicating which items on the federal financial aid application have been corrected to the values they already held (thereby overriding assumptions that may have been made about their correct values.
VWF23FEDDWF-FE-C-VER-FLAG 0 0000 Not corr to same val The ISIR record contains an array of flags indicating which items on the federal financial aid application have been corrected to the values they already held (thereby overriding assumptions that may have been made about their correct values. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-FLAG 1 0000 Fld corr to same val The ISIR record contains an array of flags indicating which items on the federal financial aid application have been corrected to the values they already held (thereby overriding assumptions that may have been made about their correct values. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-FLAG 2 0000 Asked to be verified The ISIR record contains an array of flags indicating which items on the federal financial aid application have been corrected to the values they already held (thereby overriding assumptions that may have been made about their correct values. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-HS Header A 0120HIGH SCHOOL VERIFICATION CODE NXH The high school identifying code is returned when the student's high school name, city, and state are verified against a file of valid high schools.
HWF23FEDDWF-FE-C-VER-NSL Header A 0010NSLDS MATCH RESULTS NXH The results of attempted matching against the NSLDdata base are reported in the ISIR record.
VWF23FEDDWF-FE-C-VER-NSL 1 0000 Record match/data The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-NSL 2 0000 SSN match only The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-NSL 3 0000 No match The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-NSL 4 0000 Record match/no data The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-NSL 5 0000 Real-time not sent The results of attempted matching against the NSLDdata base are reported in the ISIR record. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-SS Header A 0010SEL SERV REG VERIFICATION NXH The Selective Service Registration response to a request for registration is reported back via the CPS.
VWF23FEDDWF-FE-C-VER-SS N 0000 Reg status not conf The Selective Service Registration response to a request for registration is reported back via the CPS. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-SS T 0000 Temporarily exempt The Selective Service Registration response to a request for registration is reported back via the CPS. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-SS Y 0000 Reg status confirmed The Selective Service Registration response to a request for registration is reported back via the CPS. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-C-VER-TRACK Header A 0040VERIFICATION TRACKING FLAG NXH Additional information pertaining to the student's federal selection for verification, suchas the verification group to which the student is assigned. The verification group indicates which data need to be confirmed.
VWF23FEDDWF-FE-C-VER-TRACK V1 0000 Std Verif Group Additional information pertaining to the student's federal selection for verification, suchas the verification group to which the student is assigned. The verification group indicates which data need to be confirmed. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-TRACK V4 0000 Custom Verif Group Additional information pertaining to the student's federal selection for verification, suchas the verification group to which the student is assigned. The verification group indicates which data need to be confirmed. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-C-VER-TRACK V5 0000 Aggregate Verif Grp Additional information pertaining to the student's federal selection for verification, suchas the verification group to which the student is assigned. The verification group indicates which data need to be confirmed. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAP-AFI-TOTAL Header A 0080PARENT AFI TOTAL (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-AGI Header A 0070PARENT ADJ GROSS INCOME (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-ATHRSH Header A 0010PARENT ASSET EXC THRSHLD (ASM) NXH WF23FEDDWF-FE-CAS-ATHRSH Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-FAM-COL Header A 0010PARENT FAMILY IN COLLEGE (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-FAM-SIZE Header A 0020PARENT FAMILY SIZE (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-FED-TAX Header A 0060PARENT FEDERAL TAX (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-FILER Header A 0010PARENT TAX FILER (ASM) NXH WF23FEDDWF-FE-CAS-FILER Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAP-MAR Header A 0010PARENT MARITAL STATUS (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAP-MAR 1 0000 Assume married Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAP-MAR 2 0000 Assume unmarried Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAP-P1-INC Header A 0060PARENT 1 WORK INCOME (ASM) NN Assume unmarried
HWF23FEDDWF-FE-CAP-P1-SSN Header A 0010PARENT 1 SSN (ASM) NN Assume unmarried
VWF23FEDDWF-FE-CAP-P1-SSN Y 0000 Assumed SSN Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAP-P2-INC Header A 0070PARENT 2 WORK INCOME (ASM) NN Assumed SSN
HWF23FEDDWF-FE-CAP-P2-SSN Header A 0010PARENT 2 SSN (ASM) NN WF23FEDDWF-FE-CAP-P1-SSN
HWF23FEDDWF-FE-CAS-AFI-TOTAL Header A 0080STUDENT AFI TOTAL (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-AGI Header A 0070STUDENT ADJ GROSS INCOME (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-ATHRSH Header A 0010STUDENT ASSET EXC THRSHD (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-ATHRSH Y 0000 Assumed blank Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-CIT Header A 0010STUDENT CITIZ STATUS (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-CIT 1 0000 Assume US citizen Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-CIT 2 0000 Assume elig non-cit Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-FAM-COL Header A 0010STUDENT FAM IN COLLEGE (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-FAM-SIZE Header A 0020STUDENT FAMILY SIZE (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-FED-TAX Header A 0070STUDENT FEDERAL TAX (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-FILER Header A 0010STUDENT TAX FILER (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-FILER 1 0000 Assume tax filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-FILER 2 0000 Assume tax filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-FILER 3 0000 Assume tax filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-FILER 4 0000 Assume non-filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-FILER 5 0000 Assume non-filer Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-MAR Header A 0010STUDENT MARITAL STATUS (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-MAR 1 0000 Assume single Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-MAR 2 0000 Assume married Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-SP-INC Header A 0070SPOUSE WORK INCOME (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-ST-INC Header A 0070STUDENT WORK INCOME (ASM) NN Reference: WF-FE-C-ASSUMPTION
HWF23FEDDWF-FE-CAS-TEST-CHL Header A 0010STUDENT CHILD DEPS TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-CHL 1 0000 Assume dependents Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-TEST-CHL 2 0000 Assume no dependents Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-DEP Header A 0010STUDENT OTHER DEPS TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-DEP 2 0000 Assume no dependents Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-DOB Header A 0010STUDENT DT OF BIRTH TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-DOB 1 0000 Assume DOB<1/1/1996 Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-TEST-DOB 2 0000 Assume DOB>12/31/95 Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-HMLS 2 0000 Assume not at risk Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-MAR Header A 0010STUDENT MARITAL TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-MAR 1 0000 Assume married Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-CAS-TEST-MAR 2 0000 Assume unmarried Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-UYHU Header A 0010STUDENT UNACC (HUD) TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-UYHU 2 0000 Assume not homeless Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CAS-TEST-UYSD Header A 0010STUDENT UNACC (SDL) TEST (ASM) NXH Reference: WF-FE-C-ASSUMPTION
VWF23FEDDWF-FE-CAS-TEST-UYSD 2 0000 Assume not homeless Reference: WF-FE-C-ASSUMPTION For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-CCP-AFI-TOTAL Header A 0080PARENT TOTAL AFI (CALC) NN Reference: WF-FE-CCS-AFI-TOTAL
HWF23FEDDWF-FE-CCP-UTX-TOTAL Header A 0080PARENT TOTAL UTX (CALC) NN Reference: WF-FE-CCS-AFI-TOTAL
HWF23FEDDWF-FE-CCS-AFI-TOTAL Header A 0080STUDENT TOTAL AFI (CALC) NN The parents' and student's total AFI and Untaxed Income are calculated by the CPS and included in the Institutional Student Information Report (ISIR) record.
HWF23FEDDWF-FE-CCS-UTX-TOTAL Header A 0080STUDENT TOTAL UTX (CALC) NN Reference: WF-FE-CCS-AFI-TOTAL Income are calculated by the CPS and included in the Institutional Student Information Report (ISIR) record.
HWF23FEDDWF-FE-DOB Header A 0080STUDENT DATE OF BIRTH NN The student's birthdate is used in verifying the age test for dependency status.
HWF23FEDDWF-FE-EMAIL Header A 0500STUDENT E-MAIL ADDRESS NN The student's e-mail address may be used as contact information for the student.
HWF23FEDDWF-FE-F-ASM1-OVR Header A 0010ASSUMPTION 1 OVERRIDE NXH Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 1: Parents' number in college assumed to be 1.
VWF23FEDDWF-FE-F-ASM1-OVR 1 0000 Assumption override Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 1: Parents' number in college assumed to be 1. which data need to be confirmed. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-F-ASM2-OVR Header A 0010ASSUMPTION 2 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 2: Parents' AGI assumed equal to the sum of parent 1 and parent 2 income earned from work.
HWF23FEDDWF-FE-F-ASM3-OVR Header A 0010ASSUMPTION 3 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 3: Student's number in college assumed to be 1.
HWF23FEDDWF-FE-F-ASM4-OVR Header A 0010ASSUMPTION 4 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 4: Student's AGI assumed to be equal tothe sum of the student's and spouse's income earned from work.
HWF23FEDDWF-FE-F-ASM5-OVR Header A 0010ASSUMPTION 5 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 5: Parents' income from Additional Financial Information assumed to be zero.
HWF23FEDDWF-FE-F-ASM6-OVR Header A 0010ASSUMPTION 6 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Include: WWSYSVRD.WF-HELP-ASM-OVR Assumption 6: Student's income from Additional Financial Information assumed to be zero.
HWF23FEDDWF-FE-F-COLLEGE Header A 0060FAA COLLEGE NN If an ISIR is produced in response to an institution-submitted correction or duplicate request, the ISIR record contains the institution number contained on the transaction submitted.
HWF23FEDDWF-FE-F-DEP-OVR Header A 0010DEPENDENCY OVERRIDE NXH If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator.
VWF23FEDDWF-FE-F-DEP-OVR 1 0000 Dependency override If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-F-DEP-OVR 2 0000 Override cancelled If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-F-DEP-OVR 3 0000 Override failed If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-F-DEP-OVR 4 0000 Homeless youth det If the Central Processing System (CPS) determines that the student is dependent, this dependency status may be overridden by request of the financial aid administrator. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-F-PROF-JUDG Header A 0010PROFESSIONAL JUDGMENT NXH The financial aid administrator may inform the Central Processing System (CPS) that professional judgment has been used to arrive at an adjusted expected family contribution (EFC).
VWF23FEDDWF-FE-F-PROF-JUDG 1 0000 Prof judgment The financial aid administrator may inform the Central Processing System (CPS) that professional judgment has been used to arrive at an adjusted expected family contribution (EFC). For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWF23FEDDWF-FE-F-PROF-JUDG 2 0000 Prof judgment failed The financial aid administrator may inform the Central Processing System (CPS) that professional judgment has been used to arrive at an adjusted expected family contribution (EFC). For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-F-REJ12-OVR Header A 0010REJECT 12 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject 12: Parents' Taxes Paid is greater than zero and equal to or greater than AGI.
HWF23FEDDWF-FE-F-REJ20-OVR Header A 0010REJECT 20 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject 20: A non-tax filer is reporting an income above the IRS filing requirement.
HWF23FEDDWF-FE-F-REJ21-OVR Header A 0010REJECT 21 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject 21: Student's corrected Marital Status Dateis between the application receipt date and the transaction receipt date.
HWF23FEDDWF-FE-F-REJ3-OVR Header A 0010REJECT 3 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject 3: Student's Taxes Paid is greater than zero and equal to or greater than AGI.
HWF23FEDDWF-FE-F-REJA-OVR Header A 0010REJECT A OVERRIDE NXH Include: WWSYSVRD.WF-HELP-REJ-OVR Reject A: Date of birth year equals 1900 through 1947.
VWF23FEDDWF-FE-F-REJA-OVR 1 0000 Reject override Include: WWSYSVRD.WF-HELP-REJ-OVR Reject A: Date of birth year equals 1900 through 1947. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWF23FEDDWF-FE-F-REJB-OVR Header A 0010REJECT B OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject B: Independent student and date of birth is 09/01/2006 or greater, and date of birth is not equal to or greater than current year.
HWF23FEDDWF-FE-F-REJC-OVR Header A 0010REJECT C OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject C: Taxes Paid is greater than zero and greater than or equal to a fixed percentage of theAGI, but not equal to or greater than AGI. (Parent or Independent Student)
HWF23FEDDWF-FE-F-REJG-OVR Header A 0010REJECT G OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject G: Taxes Paid is greater than zero, and greater than or equal to a fixed percentage of theAGI, but not equal to or greater than AGI. (Dependent Student)
HWF23FEDDWF-FE-F-REJJ-OVR Header A 0010REJECT J OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject J: Parent 1's SSN contains all zeroes and reported as a tax filer.
HWF23FEDDWF-FE-F-REJK-OVR Header A 0010REJECT K OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject K: Parent 2's SSN contains all zeroes and reported as a tax filer.
HWF23FEDDWF-FE-F-REJN-OVR Header A 0010REJECT N OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject N: Missing first or last name.
HWF23FEDDWF-FE-F-REJW-OVR Header A 0010REJECT W OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Include: WWSYSVRD.WF-HELP-REJ-OVR Reject W: Unusually high number of family members.
HWF23FEDDWF-FE-FED-ID Header A 0130FEDERAL ID NN The Federal ID uniquely identifies the current application in the Central Processing System (CPS)data base. The first part of the Federal ID contains the student's social security number from the originalfederal financial aid application. The second part contains the first two characters of the student's last name from that application. The third part contains the sequential transactionnumber assigned to the current copy of the federalapplication.
HWF23FEDDWF-FE-FED-ID1 Header A 0090FEDERAL ID (SSN) NN Reference: WF-FE-FED-ID
HWF23FEDDWF-FE-FED-ID2 Header A 0020FEDERAL ID (LAST NAME) NN Reference: WF-FE-FED-ID
HWF23FEDDWF-FE-FED-ID3 Header A 0020FEDERAL ID (TRANSACTION) NN Reference: WF-FE-FED-ID
HWF23FEDDWF-FE-IRS-C-DSP-PAR Header 0000FEDERAL ID (TRANSACTION) NN
HWF23FEDDWF-FE-L-NSLDS1 Header A 2500NSLDS INFORMATION NN Information from the National Student Loan Data System (NSLDS) is sent to the institution to consider in making decisions regarding further loans to the student.
HWF23FEDDWF-FE-L-NSLDS2 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS3 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS4 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS5 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS6 Header A 2500NSLDS INFORMATION NN Reference: WF-FE-L-NSLDS1
HWF23FEDDWF-FE-L-NSLDS7 Header A 0080NSLDS INFORMATION NN
HWF23FEDDWF-FE-NM-FIRST Header A 0120STUDENT FIRST NAME NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-NM-LAST Header A 0160STUDENT LAST NAME NN The student's name and address are printed on the Student Aid Report (SAR) and included in the electronic ISIR transmitted to the institution.
HWF23FEDDWF-FE-NM-MI Header A 0010STUDENT MIDDLE INITIAL NN Reference: WF-FE-NM-LAST
HWF23FEDDWF-FE-P-A-COOP Header A 0070PARENT AFI CO-OP EARNINGS NN Reference: WF-FE-P-A-EDCR
HWF23FEDDWF-FE-P-A-CPAY Header A 0070PARENT AFI COMBAT PAY NN Reference: WF-FE-P-A-EDCR
HWF23FEDDWF-FE-P-A-CSPD Header A 0070PARENT AFI CHILD SUPPORT PAID NN Reference: WF-FE-P-A-EDCR
HWF23FEDDWF-FE-P-A-EDCR Header A 0070PARENT AFI EDUCATION CREDITS NN The parent's additional financial information components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-P-A-GRNT Header A 0070PARENT AFI GRANTS/SCHOLARSHIPS NN Reference: WF-FE-P-A-EDCR components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-P-A-WORK Header A 0070PARENT AFI NEED-BASED WORK NN Reference: WF-FE-P-A-EDCR components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-P-AGI Header A 0070PARENT ADJUSTED GROSS INCOME NN The parents' adjusted gross income is combined with untaxed income in the calculation of parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-BUS-FRM Header A 0070PARENT BUSINESS/FARM ASSETS NN The net worth of the parents' business(es) and investment farm(s) is combined with other available assets in the calculation of parent contribution (PC).
HWF23FEDDWF-FE-P-CASH Header A 0070PARENT CASH ASSETS NN The cash present in the parents' checking and savings accounts is considered as an available asset and is used in calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-DLW Header A 0010PARENT DISLOCATED WORKER NXH WF23FEDDWF-FE-S-DLW The parents' status as dislocated workers is considered in determining the formula to be used in calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-EMAIL Header A 0500PARENT E-MAIL ADDRESS NN The parents' e-mail address may be used as contactinformation for the parents.
HWF23FEDDWF-FE-P-FAM-COL Header A 0010PARENT FAMILY IN COLLEGE NN The number of the parents' family members attending college is considered in calculating theparent contribution (PC).
HWF23FEDDWF-FE-P-FAM-SIZE Header A 0020PARENT FAMILY SIZE NN The parents' family size is considered in calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-FED-TAX Header A 0060PARENT FEDERAL TAX NN The parents' federal tax paid is treated as an adjustment to income in the calculation of parent contribution (PC). An assumed value may be calculated if the parents' federal tax is not reported on the financial aid application. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-FILE-STAT Header A 0010PARENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT If the parent is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-FILER Header A 0010PARENT TAX FILER NXH WF23FEDDWF-FE-S-FILER Whether the parents have already filed or plan to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating parent contribution (PC).
HWF23FEDDWF-FE-P-FORM Header A 0010PARENT TAX FORM NXH WF23FEDDWF-FE-S-FORM Reference: WF-FE-P-FILER
HWF23FEDDWF-FE-P-INV Header A 0070PARENT INVESTMENT ASSETS NN The net worth of the parents' non-home real estateand other investments is combined with other available assets in the calculation of parent contribution (PC).
HWF23FEDDWF-FE-P-MAR Header A 0010PARENT MARITAL STATUS NXH The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 1 0000 Married/remarried The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 2 0000 Never married The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 3 0000 Divorded/Separated The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 4 0000 Widowed The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
VWF23FEDDWF-FE-P-MAR 5 0000 Unmarr,live together The parents' marital status is considered in calculating the parent contribution (PC). The effective date documents the parents' marital status.
HWF23FEDDWF-FE-P-MAR-DATE Header A 0060PARENT MARITAL STATUS DATE NN Reference: WF-FE-P-MAR
HWF23FEDDWF-FE-P-MT-LUNCH Header A 0010PARENT MEANS-TESTED LUNCH PGM NXH WF23FEDDWF-FE-S-MT-LUNCH Reference: WF-FE-P-MT-SSI
HWF23FEDDWF-FE-P-MT-SNAP Header A 0010PARENT MEANS-TESTED SUPP NUTR NXH WF23FEDDWF-FE-S-MT-SNAP Reference: WF-FE-P-MT-SSI
HWF23FEDDWF-FE-P-MT-SSI Header A 0010PARENT MEANS-TESTED SSI NXH WF23FEDDWF-FE-S-MT-SSI The parent's receipt of means-tested benefits (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the parent contribution (PC).
HWF23FEDDWF-FE-P-MT-TANF Header A 0010PARENT MEANS-TESTED TANF NXH WF23FEDDWF-FE-S-MT-TANF Reference: WF-FE-P-MT-SSI
HWF23FEDDWF-FE-P-MT-WIC Header A 0010PARENT MEANS-TESTED WIC NXH WF23FEDDWF-FE-S-MT-WIC Reference: WF-FE-P-MT-SSI
HWF23FEDDWF-FE-P-P1-DOB Header A 0080PARENT 1 BIRTHDATE NNH WF23FEDDWF-FE-S-MT-WIC
HWF23FEDDWF-FE-P-P1-FNAME Header A 0010PARENT 1 FIRST INITIAL NNH WF23FEDDWF-FE-S-MT-WIC
HWF23FEDDWF-FE-P-P1-INC Header A 0070PARENT 1 WORK INCOME NN The parent's income from work; used in calculatingFICA taxes, which are treated as an adjustment to income in the calculation of parent contribution (PC). Income from work may also be used to derivean assumed adjusted gross income for parents who are not tax filer.
HWF23FEDDWF-FE-P-P1-LEV Header A 0010PARENT 1 EDUCATIONAL LEVEL NXH WFFED23DWF-FE-P-P2-LEV The parent's highest grade level, as collected on the federal financial aid appllication. (This information is not used in calculating the student's eligibility for federal financial aid.)
HWF23FEDDWF-FE-P-P1-LNAME Header A 0160PARENT 1 LAST NAME NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P1-SSN Header A 0090PARENT 1 SSN NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P2-DOB Header A 0080PARENT 2 BIRTHDATE NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P2-FNAME Header A 0010PARENT 2 FIRST INITIAL NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P2-INC Header A 0070PARENT 2 WORK INCOME NN Reference: WF-FE-P-P1-INC
HWF23FEDDWF-FE-P-P2-LEV Header A 0010PARENT 2 EDUCATIONAL LEVEL NXH WFFED23DWF-FE-P-P2-LEV Reference: WF-FE-P-P1-LEV
HWF23FEDDWF-FE-P-P2-LNAME Header A 0160PARENT 2 LAST NAME NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-P2-SSN Header A 0090PARENT 2 SSN NNH WFFED23DWF-FE-P-P2-LEV
HWF23FEDDWF-FE-P-RES Header A 0020PARENT STATE OF RESIDENCE NXH WWSYSVRDWF-HELP-RES The parents' state of legal residence is used in calculating state taxes, which are treated as an allowance against income in the calculation of parent contribution (PC). The effective date of residence, or the parents' statement that they have held their current place of residence for at least five years, documents the parents' state of legal residence.
HWF23FEDDWF-FE-P-RES-5YR Header A 0010PARENT FIVE-YEAR RESIDENCE NXH WF23FEDDWF-FE-S-RES-5YR Reference: WF-FE-P-RES
HWF23FEDDWF-FE-P-RES-DATE Header A 0060PARENT STATE RESIDENCE DATE NN Reference: WF-FE-P-RES
HWF23FEDDWF-FE-P-SCHED1 Header A 0010PARENT FILED SCHED 1 QUEST NXH WF23FEDDWF-FE-S-SCHED1
HWF23FEDDWF-FE-P-U-CSUP Header A 0070PARENT UTX CHILD SUPPORT RCVD NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-DST-PEN Header A 0070PAR IRS UNTXD IRA DIST/PENS NN
HWF23FEDDWF-FE-P-U-INT Header A 0070PARENT UTX INTEREST INCOME NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-IRA Header A 0070PARENT UTX IRA PAYMENTS NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-LIV Header A 0070PARENT UTX LIVING ALLOWANCES NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-OTHER Header A 0070PARENT UTX OTHER UNTAXED INC NN Reference: WF-FE-P-U-PEN parents is used in calculating taxes, which are treated as an adjustment to income in calculation of the parent contribution (PC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-P-U-PEN Header A 0070PARENT UTX PENSION PAYMENTS NN The parent's untaxed income components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-P-U-VET Header A 0070PARENT UTX VET NON-ED BENEFIT NN Reference: WF-FE-P-U-PEN collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-A-COOP Header A 0070STUDENT AFI CO-OP EARNINGS NN Reference: WF-FE-S-A-EDCR collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-A-CPAY Header A 0070STUDENT AFI COMBAT PAY NN Reference: WF-FE-S-A-EDCR collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-A-CSPD Header A 0070STUDENT AFI CHILD SUPPORT PAID NN Reference: WF-FE-S-A-EDCR collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-A-EDCR Header A 0070STUDENT AFI EDUCATION CREDITS NN The student's additional financial information components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-S-A-GRNT Header A 0070STUDENT AFI GRANTS/SCHOLARSHPS NN Reference: WF-FE-S-A-EDCR components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-S-A-WORK Header A 0070STUDENT AFI NEED-BASED WORK NN Reference: WF-FE-S-A-EDCR components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are educational credits, child support paid, taxed earnings from need-based employment, taxed grant and scholarship aid, combat pay, and co-op earnings.
HWF23FEDDWF-FE-S-AGI Header A 0070STUDENT ADJUSTED GROSS INCOME NN The student's adjusted gross income (AGI) is combined with untaxed income in the calculation of student contribution (SC). A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-ALIEN Header A 0090STUDENT ALIEN REGISTRATION NN The alien registration number documents the citizenship status of aid-eligible non-citizens.
HWF23FEDDWF-FE-S-BACH-DEG Header A 0010STUDENT BACHELOR'S DEGREE NXH The earning of a bachelor degree affects the student's eligibility for some types of financial aid.
VWF23FEDDWF-FE-S-BACH-DEG 1 0000 Bach deg by 7/1/2022 The earning of a bachelor degree affects the student's eligibility for some types of financial aid. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-BACH-DEG 2 0000 No bach by 7/1/2022 The earning of a bachelor degree affects the student's eligibility for some types of financial aid. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-BUS-FRM Header A 0070STUDENT BUSINESS/FARM ASSETS NN The net worth of the student's business(es) and investment farm(s) is combined with other available assets in the calculation of student contribution (SC).
HWF23FEDDWF-FE-S-CASH Header A 0070STUDENT CASH ASSETS NN The cash present in the student's checking and savings accounts is considered as an available asset and is used in calculating the student contribution (SC).
HWF23FEDDWF-FE-S-CIT Header A 0010STUDENT CITIZENSHIP STATUS NXH The student's citizenship status is considered in determining eligibility for financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-CIT 1 0000 US citizen The student's citizenship status is considered in determining eligibility for financial aid. This field may not be corrected to blank. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-CIT 2 0000 Eligible non-citizen The student's citizenship status is considered in determining eligibility for financial aid. This field may not be corrected to blank. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-CIT 3 0000 Neither The student's citizenship status is considered in determining eligibility for financial aid. This field may not be corrected to blank. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-DEG Header A 0010STUDENT DEGREE/CERTIFICATE NXH The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-DEG 1 0000 1st Bachelor The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 2 0000 2nd Bachelor The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 3 0000 Associate (occ/tech) The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 4 0000 Associate (gen/tran) The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 5 0000 <2yr Cert (occ/tech) The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 6 0000 >2yr Cert (occ/tech) The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 7 0000 Non-deg Teaching Crd The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 8 0000 Grad/Profess Degree The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DEG 9 0000 Other/Undecided The student's expected degree/certificate is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid. must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-DL-NUM Header A 0200STUDENT DRIVER LICENSE NUMBER NN The student's driver's license and issuing state are collected on the federal financial aid application for use in administering student loan programs.
HWF23FEDDWF-FE-S-DL-STATE Header A 0020STUDENT DRIVER LICENSE STATE NXH WWSYSVRDWF-HELP-RES Reference: WF-FE-S-DL-NUM
HWF23FEDDWF-FE-S-DLW Header A 0010STUDENT DISLOCATED WORKER NXH The student's status as a dislocated worker is considered in determining the formula to be used in calculating the student contribution (SC).
VWF23FEDDWF-FE-S-DLW 1 0000 Dislocated worker The student's status as a dislocated worker is considered in determining the formula to be used in calculating the student contribution (SC). programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DLW 2 0000 Not dislocated The student's status as a dislocated worker is considered in determining the formula to be used in calculating the student contribution (SC). programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DLW 3 0000 Unknown The student's status as a dislocated worker is considered in determining the formula to be used in calculating the student contribution (SC). programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-DRUG Header A 0010STUDENT DRUG CONVICTION NXH The student's prior conviction for drug offenses may affect eligibility for some kinds of financialaid.
VWF23FEDDWF-FE-S-DRUG 1 0000 Eligible The student's prior conviction for drug offenses may affect eligibility for some kinds of financialaid. programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DRUG 2 0000 Part-year eligible The student's prior conviction for drug offenses may affect eligibility for some kinds of financialaid. programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
VWF23FEDDWF-FE-S-DRUG 3 0000 Not eligible/unknown The student's prior conviction for drug offenses may affect eligibility for some kinds of financialaid. programs. financial aid. must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-FAM-COL Header A 0010STUDENT FAMILY IN COLLEGE NN The number of the student's family members attending college is considered in calculating the student contribution (SC).
HWF23FEDDWF-FE-S-FAM-SIZE Header A 0020STUDENT FAMILY SIZE NN The student's family size is considered in calculating the student contribution (SC).
HWF23FEDDWF-FE-S-FED-TAX Header A 0070STUDENT FEDERAL TAX NN The student's federal tax paid is treated as an adjustment to income in the calculation of studentcontribution (SC). An assumed value may be calculated if the student's federal tax is not reported on the financial aid application. A federal correction changing this field to blank must be accompanied by a correction setting tax filer status to "will not file."
HWF23FEDDWF-FE-S-FILE-STAT Header A 0010STUDENT TAX RET FILE STAT NXH If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT H 0000 Head of Household 4 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT J 0000 Married-filed joint 2 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT M 0000 Married-filed sep 3 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT S 0000 Single 1 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT U 0000 Don't know 6 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-FILE-STAT W 0000 Qualifying Widow(er) 5 If the student is a tax filer, the filing status claimed: single, married with joint return, married with separate return, etc. Filing information is used in determining the methodology appropriate for calculating the student contribution (SC).
HWF23FEDDWF-FE-S-FILER Header A 0010STUDENT TAX FILER NXH Whether the student has already filed or plans to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FILER 1 0000 Filed Whether the student has already filed or plans to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FILER 2 0000 Expect to file Whether the student has already filed or plans to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FILER 3 0000 Will not file Whether the student has already filed or plans to file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
HWF23FEDDWF-FE-S-FORM Header A 0010STUDENT TAX FORM NXH Reference: WF-FE-S-FILER
VWF23FEDDWF-FE-S-FORM 1 0000 Long form (1040) Reference: WF-FE-S-FILER file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FORM 3 0000 Foreign form Reference: WF-FE-S-FILER file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
VWF23FEDDWF-FE-S-FORM 4 0000 Territorial form Reference: WF-FE-S-FILER file a tax form, the form filed or expected, and eligibility to use a short form are all consideredin determining the methodology appropriate for calculating student contribution (SC).
HWF23FEDDWF-FE-S-HS-CITY Header A 0280STUDENT HIGH SCHOOL CITY NN Reference: WF-FE-S-HS-NAME
HWF23FEDDWF-FE-S-HS-GED Header A 0010STUDENT HS DIPLOMA/EQUIVALENT NXH Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-HS-GED 1 0000 Diploma Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-HS-GED 2 0000 GED/State Certif Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-HS-GED 3 0000 Home schooled Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-HS-GED 4 0000 None of these Whether the student has earned a high school diploma or equivalent is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-HS-NAME Header A 0500STUDENT HIGH SCHOOL NAME NN The name, city, and state of the high school Where the student was granted a high school diploma is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-HS-STATE Header A 0020STUDENT HIGH SCHOOL STATE NXH WWSYSVRDWF-HELP-RES Reference: WF-FE-S-HS-NAME Where the student was granted a high school diploma is collected on the federal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-INT Header A 0010STUDENT INTEREST-LOANS/WORK NXH The student's interest in financial aid from student loan and work programs is collected on thefederal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-INT 1 0000 Yes The student's interest in financial aid from student loan and work programs is collected on thefederal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-INT 2 0000 No The student's interest in financial aid from student loan and work programs is collected on thefederal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-INT 3 0000 Don't know The student's interest in financial aid from student loan and work programs is collected on thefederal financial aid application. This information is not used in calculating the student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-INV Header A 0070STUDENT INVESTMENT ASSETS NN The net worth of the student's non-home real estate and other investments is combined with other available assets in the calculation of student contribution (SC).
HWF23FEDDWF-FE-S-IRS-AGI Header 0000STUDENT INVESTMENT ASSETS NN
HWF23FEDDWF-FE-S-MALE Header A 0010STUDENT MALE NXH Reference: WF-FE-A-SSREG
VWF23FEDDWF-FE-S-MALE 1 0000 Male Reference: WF-FE-A-SSREG estate and other investments is combined with other available assets in the calculation of student contribution (SC). student's eligibility for federal financial aid.
VWF23FEDDWF-FE-S-MALE 2 0000 Female Reference: WF-FE-A-SSREG estate and other investments is combined with other available assets in the calculation of student contribution (SC). student's eligibility for federal financial aid.
HWF23FEDDWF-FE-S-MAR Header A 0010STUDENT MARITAL STATUS NXH The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MAR 1 0000 Single The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MAR 2 0000 Married The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MAR 3 0000 Separated The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MAR 4 0000 Divorced/Widowed The student's marital status is considered in calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-MAR-DATE Header A 0060STUDENT MARITAL STATUS DATE NN Reference: WF-FE-S-MAR
HWF23FEDDWF-FE-S-MT-LUNCH Header A 0010STUDENT MEANS-TESTED LUNCH PGM NXH Reference: WF-FE-S-MT-SSI
VWF23FEDDWF-FE-S-MT-LUNCH 1 0000 Received lunch pgm Reference: WF-FE-S-MT-SSI calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MT-LUNCH 2 0000 Did not recv lunch Reference: WF-FE-S-MT-SSI calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-MT-SNAP Header A 0010STUDENT MEANS-TESTED SUPP NUTR NXH Reference: WF-FE-S-MT-SSI
VWF23FEDDWF-FE-S-MT-SNAP 1 0000 Received SNAP Reference: WF-FE-S-MT-SSI calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-MT-SNAP 2 0000 Did not receive SNAP Reference: WF-FE-S-MT-SSI calculating the student contribution (SC). The effective date documents the student's marital status. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-MT-SSI Header A 0010STUDENT MEANS-TESTED SSI NXH The student's receipt of means-tested benefits (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-MT-SSI 1 0000 Received SSI The student's receipt of means-tested benefits (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-MT-SSI 2 0000 Did not receive SSI The student's receipt of means-tested benefits (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
HWF23FEDDWF-FE-S-MT-TANF Header A 0010STUDENT MEANS-TESTED TANF NXH Reference: WF-FE-S-MT-SSI
VWF23FEDDWF-FE-S-MT-TANF 1 0000 Received TANF Reference: WF-FE-S-MT-SSI (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-MT-TANF 2 0000 Did not receive TANF Reference: WF-FE-S-MT-SSI (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
HWF23FEDDWF-FE-S-MT-WIC Header A 0010STUDENT MEANS-TESTED WIC NXH Reference: WF-FE-S-MT-SSI
VWF23FEDDWF-FE-S-MT-WIC 1 0000 Received WIC Reference: WF-FE-S-MT-SSI (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
VWF23FEDDWF-FE-S-MT-WIC 2 0000 Did not receive WIC Reference: WF-FE-S-MT-SSI (Supplemental Security Income, Supplemental Nutri-tion Assistance, free or reduced-price lunch, TANF, WIC) is considered in determining the methodology appropriate for calculating the student contribution (SC).
HWF23FEDDWF-FE-S-RES Header A 0020STUDENT STATE OF RESIDENCE NXH WWSYSVRDWF-HELP-RES The student's state of legal residence is used in calculating state taxes, which are treated as an allowance against income in the calculation of student contribution (SC). The effective date of residence, or the student's statement that he/she has held their current place of residence for at least five years, documents the student's state oflegal residence.
HWF23FEDDWF-FE-S-RES-5YR Header A 0010STUDENT FIVE-YEAR RESIDENCE NXH Reference: WF-FE-S-RES
VWF23FEDDWF-FE-S-RES-5YR 1 0000 Five-year residence Reference: WF-FE-S-RES calculating state taxes, which are treated as an allowance against income in the calculation of student contribution (SC). The effective date of residence, or the student's statement that he/she has held their current place of residence for at least five years, documents the student's state oflegal residence.
VWF23FEDDWF-FE-S-RES-5YR 2 0000 <Five-year residence Reference: WF-FE-S-RES calculating state taxes, which are treated as an allowance against income in the calculation of student contribution (SC). The effective date of residence, or the student's statement that he/she has held their current place of residence for at least five years, documents the student's state oflegal residence.
HWF23FEDDWF-FE-S-RES-DATE Header A 0060STUDENT STATE RESIDENCE DATE NN Reference: WF-FE-S-RES
HWF23FEDDWF-FE-S-SCHED1 Header A 0010STUDENT FILED SCHED 1 QUESTION NXH
VWF23FEDDWF-FE-S-SCHED1 1 0000 Did not file Sched 1
VWF23FEDDWF-FE-S-SCHED1 2 0000 Filed Schedule 1
VWF23FEDDWF-FE-S-SCHED1 3 0000 Unknown if Sched 1
HWF23FEDDWF-FE-S-SP-INC Header A 0070SPOUSE WORK INCOME NN Reference: WF-FE-S-ST-INC
HWF23FEDDWF-FE-S-ST-INC Header A 0070STUDENT WORK INCOME NN The student's and spouse's income from work are used in calculating FICA taxes, which are treated as an adjustment to income in the calculation of student contribution (SC). In addition, they may be used to derive an assumed adjusted gross incomeif the student is not a tax filer. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-ACTV Header A 0010STUDENT ACTIVE DUTY TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is on active duty in the US Armed Forces. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-ACTV 1 0000 Active duty There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is on active duty in the US Armed Forces. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-ACTV 2 0000 Not active duty There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is on active duty in the US Armed Forces. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-CHL Header A 0010STUDENT CHILD DEPENDENTS TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependent children. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-CHL 1 0000 Has child dependents There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependent children. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-CHL 2 0000 Has no dependents There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependent children. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-DEP Header A 0010STUDENT OTHER DEPENDENTS TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependents other thana spouse or children. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-DEP 1 0000 Has other dependents There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependents other thana spouse or children. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-DEP 2 0000 Has no dependents There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student has dependents other thana spouse or children. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-DOB Header A 0010STUDENT DATE OF BIRTH TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student will be 24 years of age before the calendar year in which the award year begins. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-DOB 1 0000 DOB before 1/1/1996 There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student will be 24 years of age before the calendar year in which the award year begins. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-DOB 2 0000 DOB after 12/31/1995 There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student will be 24 years of age before the calendar year in which the award year begins. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-EMAN Header A 0010STUDENT EMANCIPATED MINOR TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an emancipated minor. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-EMAN 1 0000 Emancipated minor There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an emancipated minor. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-EMAN 2 0000 Not emancipated There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an emancipated minor. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-GRAD Header A 0010STUDENT GRADUATE TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in a graduate-level academic program. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-GRAD 1 0000 Grad/Professional There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in a graduate-level academic program. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-GRAD 2 0000 Undergraduate There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in a graduate-level academic program. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-GUAR Header A 0010STUDENT GUARDIANSHIP TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in legal guardianship. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-GUAR 1 0000 In guardianship There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in legal guardianship. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-GUAR 2 0000 Not in guardianship There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is in legal guardianship. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-HMLS Header A 0010STUDENT HOMELESSNESS TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is homeless or self-supporting and at risk of becoming homeless. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-HMLS 1 0000 Homeless or at risk There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is homeless or self-supporting and at risk of becoming homeless. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-HMLS 2 0000 Not homeless There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is homeless or self-supporting and at risk of becoming homeless. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-MAR Header A 0010STUDENT MARITAL TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is married. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-MAR 1 0000 Married There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is married. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-MAR 2 0000 Not married There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is married. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-ORPH Header A 0010STUDENT ORPHAN/WARD TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an orphan, in foster care, or a ward of the court. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-ORPH 1 0000 Orphan/ward of court There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an orphan, in foster care, or a ward of the court. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-ORPH 2 0000 Not an orphan/ward There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an orphan, in foster care, or a ward of the court. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-UYHU Header A 0010STUDENT UNACC YOUTH (HUD) TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by an emergency shelter program financed by the US Department of Housing and UrbanDevelopment. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-UYHU 1 0000 Unaccomp youth (HUD) There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by an emergency shelter program financed by the US Department of Housing and UrbanDevelopment. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-UYHU 2 0000 Not unaccomp youth There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by an emergency shelter program financed by the US Department of Housing and UrbanDevelopment. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-UYSD Header A 0010STUDENT UNACC YOUTH (SDL) TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by the high school or school district homeless liaison. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-UYSD 1 0000 Unaccomp youth (Sch) There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by the high school or school district homeless liaison. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-UYSD 2 0000 Not unaccomp youth There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is an unaccompanied youthas determined by the high school or school district homeless liaison. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-TEST-VET Header A 0010STUDENT VETERAN TEST NXH There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is a veteran of the US Armed Forces. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-VET 1 0000 A veteran There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is a veteran of the US Armed Forces. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-TEST-VET 2 0000 Not a veteran There are thirteen factors used in determining a student's dependency status which, in turn, affects the calculation of financial need. One of the criteria for establishing independent status is if the student is a veteran of the US Armed Forces. This field may not be corrected to blank.
HWF23FEDDWF-FE-S-U-CSUP Header A 0070STUDENT UTX CHILD SUPPORT RCVD NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-DST-PEN Header A 0070STU IRS UNTXD IRA DIST/PENS NN
HWF23FEDDWF-FE-S-U-INT Header A 0070STUDENT UTX INTEREST INCOME NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-IRA Header A 0070STUDENT UTX IRA PAYMENTS NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-LIV Header A 0070STUDENT UTX LIVING ALLOWANCES NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-MONEY Header A 0070STUDENT UTX MONEY RECEIVED NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-OTHER Header A 0070STUDENT UTX OTHER UNTAXED INC NN Reference: WF-FE-S-U-PEN
HWF23FEDDWF-FE-S-U-PEN Header A 0070STUDENT UTX PENSION PAYMENTS NN The student's untaxed income components are collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-U-VET Header A 0070STUDENT UTX VET NON-ED BENEFIT NN Reference: WF-FE-S-U-PEN collected on the federal financial aid application, and are used in calculating the expected family contribution. Included are pension payments, IRA payments, child support received, untaxed interest income, IRA distributions, pensions, military/clergy living allowances, veteran's non-educational benefits, other untaxed income, and other money received.
HWF23FEDDWF-FE-S-YR-COL Header A 0010STUDENT YEAR IN COLLEGE NXH The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 0 0000 Freshman The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 1 0000 Freshman with prev The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 2 0000 Sophomore The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 3 0000 Junior The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 4 0000 Senior The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 5 0000 > 4th year undergrad The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 6 0000 1st year grad/prof The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
VWF23FEDDWF-FE-S-YR-COL 7 0000 > 1st year grad/prof The student's expected year in college is collected on the federal financial aid application. This information is not used in calculating the student's expected family contribution, but may be useful in determining eligibility for some financial aid. This field may not be corrected to blank.
HWF23FEDDWF-FE-SSN Header A 0090STUDENT SOCIAL SECURITY NUMBER NN The student's social security number is used by the Central Processing System (CPS) in performing matches with various government agency files.
HWF23FEDDWF-FE-U-CSUP Header 0000STUDENT SOCIAL SECURITY NUMBER NN
==========================================
= WFCPS23D
==========================================
HWFCPS23DWF-CP-A-DEP Header A 0010DEPENDENCY STATUS 'T'XXXXXXXXXXX NFH WWSYSVRDWF-CAL-DEP Reference: WF-2223-FEDERAL.WF-FE-C-DEP
HWFCPS23DWF-CP-A-FC1 Header P 0080PRIMARY FC ZZ,ZZZ,ZZ9 NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFCPS23DWF-CP-A-FC2 Header P 0080SECONDARY FC ZZ,ZZZ,ZZ9 NN Reference: WF-2223-FEDERAL.WF-FE-C-FC2
HWFCPS23DWF-CP-A-FISAP Header P 0080FISAP INCOME ZZ,ZZZ,ZZ9 NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1-FISAP
HWFCPS23DWF-CP-A-PANAL Header A 0010CALCULATION ANALYSIS 'T'XXXXXXX NXH WWSYSVRDWF-CAL-ANAL The parent calculation analysis is determined frominformation collected on the financial aid application and reported by the CPS as part of the calculation formula.
HWFCPS23DWF-CP-A-PC Header PS0070PARENT CONTRIBUTION Z,ZZZ,ZZ9- NN The parent contribution for the student is derivedfrom the parent total contribution and the number in college.
HWFCPS23DWF-CP-A-PCA Header PS0070PC FROM ASSETS Z,ZZZ,ZZ9- NN The parent contribution from assets is the portionof the parent contribution for the student attributable to asset sources. It is derived fromasset information reported on the financial aid application.
HWFCPS23DWF-CP-A-PCI Header PS0070PC FROM INCOME Z,ZZZ,ZZ9- NN The parent contribution from income is the portionof the parent contribution for the student that isattributable to income sources. It is derived from income and expense information reported on the financial aid application.
HWFCPS23DWF-CP-A-SANAL Header A 0010CALCULATION ANALYSIS 'T'XXXXXXX NXH WWSYSVRDWF-CAL-ANAL The student calculation analysis is determined from information collected on the financial aid application and reported by the CPS as part of the calculation formula.
HWFCPS23DWF-CP-A-SC Header PS0070STUDENT CONTRIBUTION Z,ZZZ,ZZ9- NN The student contribution for the student is derived from the student total contribution and the number in college.
HWFCPS23DWF-CP-A-SCA Header PS0070SC FROM ASSETS Z,ZZZ,ZZ9- NN The student contribution from assets is the portion of the student contribution for the student attributable to asset sources. It is derived from asset information reported on the financial aid application.
HWFCPS23DWF-CP-A-SCI Header PS0070SC FROM INCOME Z,ZZZ,ZZ9- NN The student contribution from income is the portion of the student contribution for the student that is attributable to income sources. It is derived from income and expense information reported on the financial aid application.
HWFCPS23DWF-CP-A-VER Header A 0010VERIFICATION SELECTION NXH WF23FEDDWF-FE-C-VER Reference: WF-2223-FEDERAL.WF-FE-C-VER
HWFCPS23DWF-CP-C-DEF-OVR Header A 0010LOAN DEFAULT OVERRIDE UFE The financial aid administrator may choose to override the NSLDS-reported loan default status for a student.
VWFCPS23DWF-CP-C-DEF-OVR Y 0000 Override dflt status The financial aid administrator may choose to override the NSLDS-reported loan default status for a student. It is derived from income and expense information reported on the financial aid application. eligibility for some financial aid. This field may not be corrected to blank. other untaxed income, and other money received. This field may not be corrected to blank.
HWFCPS23DWF-CP-COLLEGE Header A 0060APPLICATION COLLEGE UN Reference: WF-2223-FEDERAL.WF-FE-A-COLLEGE
HWFCPS23DWF-CP-DRN Header A 0040DRN UN The student's personal identification number for authorizing a "change of institution" request. To initiate a change of institution -- request an ISIR for an institution not currently specifiedon the ISIR -- set the Change of Institution fieldto Y and supply the student's DRN and the destination College code.
HWFCPS23DWF-CP-FED-ID Header A 0130FEDERAL ID XXXXXXXXX^XX^XX CN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFCPS23DWF-CP-FED-ID1 Header A 0090FEDERAL ID (SSN) CN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFCPS23DWF-CP-FED-ID2 Header A 0020FEDERAL ID (LAST NAME) CN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFCPS23DWF-CP-FED-ID3 Header A 0020FEDERAL ID (TRANSACTION) CN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFCPS23DWF-CP-RP-A-AWARD Header P 0052PELL ACK TOTAL AWARD ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-PELL-COD The accepted total award amount is included in thePell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-COST Header P 0050PELL ACK BUDGET ZZ,ZZ9 FN Include: WF-CPS-RPT-PELL-COD The accepted 9-month educational cost budget is included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-DISB Header P 0052PELL ACK TOTAL DISBMTS ZZ,ZZZ.99 FN Include: WF-CPS-RPT-PELL-COD The accepted total disbursements are included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-ENR-DATE Header D 0000PELL ACK ENROLLMENT DATE MM/DD/YYYY FN Include: WF-CPS-RPT-PELL-COD The accepted enrollment date is included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-FED-TRAN Header A 0020PELL ACK FEDERAL TRAN FN Include: WF-CPS-RPT-PELL-COD The accepted transaction number from the Federal ID is included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-A-VER Header A 0010PELL ACK VERIFICATION FFH WFVER23DWF-VE-VER-FED Include: WF-CPS-RPT-PELL-COD The accepted verification status is included in the Pell Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RP-ACT Header A 0010PELL GRANT ACTION CFE Pell Grant originations are normally reported to COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-ACT H 0000 Hold Pell Grant originations are normally reported to COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-ACT R 0000 Re-submit Pell Grant originations are normally reported to COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-ACT-DATE Header D 0000PELL GRANT ACTION DATE MM/DD/YYYY FN Reference: WF-CP-RP-ACT
HWFCPS23DWF-CP-RP-ACT-RSN Header A 0020PELL GRANT ACTION REASON CCE Reference: WF-CP-RP-ACT
VWFCPS23DWF-CP-RP-ACT-RSN ND 0000 COD negative disb Reference: WF-CP-RP-ACT COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-ACT-RSN RJ 0000 Rejected report Reference: WF-CP-RP-ACT COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-AEI Header A 0010PELL ADDITIONAL ELIG INDICATOR FXH The Additional Eligibility Indicator is set to yeswhen a second Pell Grant is awarded to an elibiglestudent. It is transmitted to COD with the updated Grant Origination, and serves to document what would otherwise appear to be an overaward.
VWFCPS23DWF-CP-RP-AEI N 0000 No The Additional Eligibility Indicator is set to yeswhen a second Pell Grant is awarded to an elibiglestudent. It is transmitted to COD with the updated Grant Origination, and serves to document what would otherwise appear to be an overaward. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-AEI Y 0000 Yes The Additional Eligibility Indicator is set to yeswhen a second Pell Grant is awarded to an elibiglestudent. It is transmitted to COD with the updated Grant Origination, and serves to document what would otherwise appear to be an overaward. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-D-ACK Header A 0010PELL DISBURSMT ACKNOWLEDGMENT FFH Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded.
VWFCPS23DWF-CP-RP-D-ACK A 0000 Accepted Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-D-ACK C 0000 Accepted w/correctns Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-D-ACK D 0000 Duplicate rejected Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-D-ACK E 0000 Error rejected Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-D-ACK Y 0000 Updated to match YTD Once a Pell Grant disbursement is reported to COD,an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-D-ACK-DATE Header D 0000PELL DISBURSMT ACKNWLDGMT DATEMM/DD/YYYY FN Reference: WF-CP-RP-D-ACK
HWFCPS23DWF-CP-RP-O-ACK Header A 0010PELL ORIGNATION ACKNOWLEDGMENT FFH Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded.
VWFCPS23DWF-CP-RP-O-ACK A 0000 Accepted Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-O-ACK C 0000 Accepted w/correctns Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-O-ACK D 0000 Duplicate not proc Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-O-ACK E 0000 Error rejected Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
VWFCPS23DWF-CP-RP-O-ACK Y 0000 Updated to match YTD Once a Pell origination is submitted to the CPS, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded. Pell disbursements are normally reported to COD assoon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The Pell Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RP-O-ACK-DATE Header D 0000PELL ORGNTION ACKNWLDGMNT DATEMM/DD/YYYY FN Reference: WF-CP-RP-O-ACK
HWFCPS23DWF-CP-RP-R-AWARD Header P 0052PELL REPORTED TOTAL AWARD ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-PELL-FAO The student's total award amount is included in the Pell Grant Origination record.
HWFCPS23DWF-CP-RP-R-COST Header P 0050PELL REPORTED BUDGET ZZ,ZZ9 FN Include: WF-CPS-RPT-PELL-FAO The student's 9-month educational cost budget is included in the Pell Grant Origination.
HWFCPS23DWF-CP-RP-R-DISB Header P 0052PELL REPORTED TOTAL DISBMTS ZZ,ZZZ.99 FN Include: WF-CPS-RPT-PELL-FAO The total disbursements reflects all of the student's reported Pell Grant Disbursements.
HWFCPS23DWF-CP-RP-R-ENR-DATE Header D 0000PELL REPORTED ENROLLMENT DATE MM/DD/YYYY FN Include: WF-CPS-RPT-PELL-FAO The student's enrollment date for the aid year is included in the Pell Grant Origination.
HWFCPS23DWF-CP-RP-R-FED-TRAN Header A 0020PELL REPORTED FEDERAL TRAN FN Include: WF-CPS-RPT-PELL-FAO The transaction number from the student's Federal ID is included in the Pell Grant Origination.
HWFCPS23DWF-CP-RP-R-VER Header A 0010PELL REPORTED VERIFICATION FFH WFVER23DWF-VE-VER-FED Include: WF-CPS-RPT-PELL-FAO The student's federal verification status is included in the Pell Grant Origination.
HWFCPS23DWF-CP-RP-RPT-DATE Header D 0000PELL GRANT REPORT DATE MM/DD/YYYY FN Whenever Pell Grant eligibility, award, or disbursement information is reported to COD, the date of the data submission is captured in FINANCIER.
HWFCPS23DWF-CP-RP-SCH-GRANT Header P 0050PELL SCHEDULED GRANT ZZ,ZZZ FN The Scheduled Grant is determined by the CPS basedon information submitted in the Grant Origination record, and is returned to the institution in the Grant Origination Acknowledgment. what would otherwise appear to be an overaward.
HWFCPS23DWF-CP-RT1-A-AWARD Header P 0052TEACH ACK TOTAL AWARD ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-TCH1-COD The accepted total award amount is included in theTEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-A-DISB Header P 0052TEACH ACK TOTAL DISBMTS ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-TCH1-COD The accepted total disbursements are included in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-A-ENR-DATEHeader D 0000TEACH ACK ENROLLMENT DATE MM/DD/YYYY FN Include: WF-CPS-RPT-TCH1-COD The accepted enrollment date is included in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-A-FED-TRANHeader A 0020TEACH ACK FEDERAL TRAN FN Include: WF-CPS-RPT-TCH1-COD The accepted transaction number from the Federal ID is included in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-A-GRANT Header N 0010TEACH ACK GRANT NUMBER FN Include: WF-CPS-RPT-TCH1-COD The Grant Number that identified the award in the TEACH Grant Origination and associated Disbursements is returned in Origination and Disbursement Acknowledgments.
HWFCPS23DWF-CP-RT1-A-YR-COL Header A 0010TEACH ACK CLASS LEVEL FFH WWSYSVRDWF-PGM-CUR-YR-COL Include: WF-CPS-RPT-TCH1-COD The accepted class level is included in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-ACT Header A 0010TEACH GRANT ACTION CFE WFCPS23DWF-CP-RP-ACT TEACH Grant originations are normally reported to COD just before or at the time of the first disbursement. Once that process is completed, it is not repeated unless there is a change in the eligibility or award information. TEACH disbursements are normally reported to COD as soon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The TEACH Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RT1-ACT-DATE Header D 0000TEACH GRANT ACTION DATE MM/DD/YYYY FN Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT1-ACT-RSN Header A 0020TEACH GRANT ACTION REASON CCE WFCPS23DWF-CP-RP-ACT-RSN Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT1-ATS-ELEC Header A 0010TEACH ATS ELECTRONIC INDICATOR FXH Reference: WF-CP-RT1-ATS-ID on information submitted in the Grant Origination record, and is returned to the institution in the Grant Origination Acknowledgment. what would otherwise appear to be an overaward.
VWFCPS23DWF-CP-RT1-ATS-ELEC Y 0000 Yes Reference: WF-CP-RT1-ATS-ID on information submitted in the Grant Origination record, and is returned to the institution in the Grant Origination Acknowledgment. what would otherwise appear to be an overaward. TEACH disbursements are normally reported to COD as soon as they are made. Once completed, that process is not repeated until there is a change inthe amount disbursed. The TEACH Grant action can be used to override these norms -- to hold or re-send information. Anoptional reason and an automatically-captured datedocument the action taken.
HWFCPS23DWF-CP-RT1-ATS-ID Header A 0230TEACH AGREEMENT TO SERVE ID FXH The TEACH Agreement To Serve is collected by COD. If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-ATS-LINK Header A 0010TEACH ATS LINK FXH Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-LINK N 0000 No Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-LINK Y 0000 Yes Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-ATS-STAT Header A 0010TEACH ATS STATUS FXH Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-STAT A 0000 Accepted Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-STAT C 0000 Closed Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-STAT P 0000 Pending Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
VWFCPS23DWF-CP-RT1-ATS-STAT R 0000 Rejected/missing Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT1-D-ACK Header A 0010TEACH DISBURSMT ACKNOWLEDGMENT FFH WFCPS23DWF-CP-RP-D-ACK Once a TEACH Grant disbursement is reported to COD, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded.
HWFCPS23DWF-CP-RT1-D-ACK-DATEHeader D 0000TEACH DISBURSMT ACKNWLGMT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-D-ACK
HWFCPS23DWF-CP-RT1-FY Header A 0040TEACH FISCAL YEAR FXH Each TEACH Grant is associated with a fiscal year.If the school's calendar is defined to associate some of the disbursements in one fiscal year and some in another, eligible students may receive a TEACH Grant in each of the fiscal years.
HWFCPS23DWF-CP-RT1-O-ACK Header A 0010TEACH ORIGINATION ACKNOWLDGMNT FFH WFCPS23DWF-CP-RP-O-ACK Once a TEACH Grant origination is reported to COD, an acknowledgment indicating acceptance or rejection is returned. That acknowledgment and its receipt date are recorded.
HWFCPS23DWF-CP-RT1-O-ACK-DATEHeader D 0000TEACH ORIGINATION ACKNWMT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-O-ACK
HWFCPS23DWF-CP-RT1-R-AWARD Header P 0052TEACH REPORTED TOTAL AWARD ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-TCH1-FAO The student's total award amount is included in the TEACH Grant Origination.
HWFCPS23DWF-CP-RT1-R-DISB Header P 0052TEACH REPORTED TOTAL DISBMTS ZZ,ZZZ.ZZ FN Include: WF-CPS-RPT-TCH1-FAO The total disbursements reflects all of the student's reported TEACH Grant Disbursements.
HWFCPS23DWF-CP-RT1-R-ENR-DATEHeader D 0000TEACH REPORTED ENROLLMENT DATEMM/DD/YYYY FN Include: WF-CPS-RPT-TCH1-FAO The student's enrollment date for the aid year is included in the TEACH Grant Origination.
HWFCPS23DWF-CP-RT1-R-FED-TRANHeader A 0020TEACH REPORTED FEDERAL TRAN FN Include: WF-CPS-RPT-TCH1-FAO The transaction number from the student's Federal ID is included in the TEACH Grant Origination.
HWFCPS23DWF-CP-RT1-R-GRANT Header N 0010TEACH REPORTED GRANT NUMBER FN Include: WF-CPS-RPT-TCH1-FAO The Grant Number, which must be unique by class level, identifies the award in the TEACH Grant Origination and associated Disbursements.
HWFCPS23DWF-CP-RT1-R-YR-COL Header A 0010TEACH REPORTED CLASS LEVEL FFH WWSYSVRDWF-PGM-CUR-YR-COL Include: WF-CPS-RPT-TCH1-FAO The student's class level is included in the TEACHGrant Origination.
HWFCPS23DWF-CP-RT1-RPT-DATE Header D 0000TEACH GRANT REPORT DATE MM/DD/YYYY FN Whenever TEACH Grant eligibility, award, or disbursement information is reported to COD, the date of the data submission is captured in FINANCIER.
HWFCPS23DWF-CP-RT1-SCH-GRANT Header P 0050TEACH SCHEDULED GRANT ZZ,ZZZ FN Reference: WF-CP-RP-SCH-GRANT If the school's calendar is defined to associate some of the disbursements in one fiscal year and some in another, eligible students may receive a TEACH Grant in each of the fiscal years.
HWFCPS23DWF-CP-RT2-A-AWARD Header P 0052TEACH ACK TOTAL AWARD ZZ,ZZZ.ZZ FN Reference: WF-CP-RT1-A-AWARD
HWFCPS23DWF-CP-RT2-A-DISB Header P 0052TEACH ACK TOTAL DISBMTS ZZ,ZZZ.ZZ FN Reference: WF-CP-RT1-A-DISB
HWFCPS23DWF-CP-RT2-A-ENR-DATEHeader D 0000TEACH ACK ENROLLMENT DATE MM/DD/YYYY FN Reference: WF-CP-RT1-A-ENR-DATE
HWFCPS23DWF-CP-RT2-A-FED-TRANHeader A 0020TEACH ACK FEDERAL TRAN FN Reference: WF-CP-RT1-A-FED-TRAN
HWFCPS23DWF-CP-RT2-A-GRANT Header N 0010TEACH ACK GRANT NUMBER FN Reference: WF-CP-RT1-A-GRANT
HWFCPS23DWF-CP-RT2-A-YR-COL Header A 0010TEACH ACK CLASS LEVEL FFH WWSYSVRDWF-PGM-CUR-YR-COL Reference: WF-CP-RT1-A-YR-COL
HWFCPS23DWF-CP-RT2-ACT Header A 0010TEACH GRANT ACTION CFE WFCPS23DWF-CP-RP-ACT Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT2-ACT-DATE Header D 0000TEACH GRANT ACTION DATE MM/DD/YYYY FN Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT2-ACT-RSN Header A 0020TEACH GRANT ACTION REASN CCE WFCPS23DWF-CP-RP-ACT-RSN Reference: WF-CP-RT1-ACT
HWFCPS23DWF-CP-RT2-ATS-ELEC Header A 0010TEACH ATS ELECTRONIC INDICATOR FXH WFCPS23DWF-CP-RT1-ATS-ELEC Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT2-ATS-ID Header A 0230TEACH AGREEMENT TO SERVE ID FXH Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT2-ATS-LINK Header A 0010TEACH ATS LINK FXH WFCPS23DWF-CP-RT1-ATS-LINK Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT2-ATS-STAT Header A 0010TEACH ATS STATUS FXH WFCPS23DWF-CP-RT1-ATS-STAT Reference: WF-CP-RT1-ATS-ID If an ATS has been completed and signed by the student, its ID, electronic indicator, status, andlink indicator is returned to the institution in the TEACH Grant Origination Acknowledgment.
HWFCPS23DWF-CP-RT2-D-ACK Header A 0010TEACH DISBURSMT ACKNOWLEDGMENT FFH WFCPS23DWF-CP-RP-D-ACK Reference: WF-CP-RT1-D-ACK
HWFCPS23DWF-CP-RT2-D-ACK-DATEHeader D 0000TEACH DISBURSMT ACKNWLGMT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-D-ACK
HWFCPS23DWF-CP-RT2-FY Header A 0040TEACH FISCAL YEAR FXH Each TEACH Grant is associated with a fiscal year.If the school's calendar is defined to associate some of the disbursements in one fiscal year and some in another, eligible students may receive a TEACH Grant in each of the fiscal years.
HWFCPS23DWF-CP-RT2-O-ACK Header A 0010TEACH ORIGINATION ACKNOWLDGMNT FFH WFCPS23DWF-CP-RP-O-ACK Reference: WF-CP-RT1-O-ACK
HWFCPS23DWF-CP-RT2-O-ACK-DATEHeader D 0000TEACH ORIGINATION ACKNWMT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-O-ACK
HWFCPS23DWF-CP-RT2-R-AWARD Header P 0052TEACH REPORTED TOTAL AWARD ZZ,ZZZ.ZZ FN Reference: WF-CP-RT1-R-AWARD
HWFCPS23DWF-CP-RT2-R-DISB Header P 0052TEACH REPORTED TOTAL DISBMTS ZZ,ZZZ.ZZ FN Reference: WF-CP-RT1-R-DISB
HWFCPS23DWF-CP-RT2-R-ENR-DATEHeader D 0000TEACH REPORTED ENROLLMENT DATEMM/DD/YYYY FN Reference: WF-CP-RT1-R-ENR-DATE
HWFCPS23DWF-CP-RT2-R-FED-TRANHeader A 0020TEACH REPORTED FEDERAL TRAN FN Reference: WF-CP-RT1-R-FED-TRAN
HWFCPS23DWF-CP-RT2-R-GRANT Header N 0010TEACH REPORTED GRANT NUMBER FN Reference: WF-CP-RT1-R-GRANT
HWFCPS23DWF-CP-RT2-R-YR-COL Header A 0010TEACH REPORTED CLASS LEVEL FFH WWSYSVRDWF-PGM-CUR-YR-COL Reference: WF-CP-RT1-R-YR-COL
HWFCPS23DWF-CP-RT2-RPT-DATE Header D 0000TEACH GRANT REPORT DATE MM/DD/YYYY FN Reference: WF-CP-RT1-RPT-DATE
HWFCPS23DWF-CP-RT2-SCH-GRANT Header P 0050TEACH SCHEDULED GRANT ZZ,ZZZ FN Reference: WF-CP-RP-SCH-GRANT
HWFCPS23DWF-CPS-APPLICATION Header 0000CPS APPLICATION INFORMATION GN
HWFCPS23DWF-CPS-CORRECTION Header 0000EDE CORRECTION INFORMATION GN
HWFCPS23DWF-CPS-IDENTFICATIONHeader 0000CPS STUDENT IDENTIFICATION GN
HWFCPS23DWF-CPS-KEY Header A 0110CPS KEY KN The CPS key is comprised of FAO and the student's FINANCIER ID. This key is used in all CPS file accesss.
HWFCPS23DWF-CPS-RPT-PELL Header 0000PELL REPORTING INFORMATION GN As Pell Grant payment information is reported to COD and acknowledgment is received back, the status and dates of these events are recorded. This record of past actions allows FINANCIER to manage the reporting process.
HWFCPS23DWF-CPS-RPT-PELL-COD Header 0000PELL ACKNOWLEDGED INFORMATION GN Once Pell Grant payment information is submitted to COD, action is taken and notice returned. Information returned is captured for use in subsequent submissions; it is used to determine which students must be reported and to ensure thatduplicate information is not inadvertently sent.
HWFCPS23DWF-CPS-RPT-PELL-FAO Header 0000PELL REPORTED INFORMATION GN Periodically, Pell Grant payment information is submitted to COD. Pell Grant Originations are submitted at or ahead of the first disbursement, and are re-submitted when there is a change in thereported information. Pell Grant Disbursements are submitted when disbursements are made. Information reported is captured and used to determine when additional reports are appropriate.
HWFCPS23DWF-CPS-RPT-TCH1 Header 0000TEACH REPORTING INFORMATION GN As TEACH Grant payment information is reported to COD and acknowledgment is received back, the status and dates of these events are recorded. This record of past actions allows FINANCIER to manage the reporting process.
HWFCPS23DWF-CPS-RPT-TCH1-COD Header 0000TEACH ACKNOWLEDGED INFORMATION GN Once TEACH Grant payment information is submitted to COD, action is taken and notice returned. Information returned is captured for use in subsequent submissions; it is used to determine which students must be reported and to ensure thatduplicate information is not inadvertently sent.
HWFCPS23DWF-CPS-RPT-TCH1-FAO Header 0000TEACH REPORTED INFORMATION GN Periodically, TEACH Grant payment information is submitted to COD. TEACH Grant Originations are submitted at or ahead of the first disbursement, and are re-submitted when there is a change in thereported information. TEACH Grant Disbursements are submitted when disbursements are made. Information reported is captured and used to determine when additional reports are appropriate.
HWFCPS23DWF-CPS-RPT-TCH2 Header 0000TEACH REPORTING INFORMATION GN Reference: WF-CPS-RPT-TCH1
HWFCPS23DWF-CPS-RPT-TCH2-COD Header 0000TEACH ACKNOWLEDGED INFORMATION GN Reference: WF-CPS-RPT-TCH1-COD
HWFCPS23DWF-CPS-RPT-TCH2-FAO Header 0000TEACH REPORTED INFORMATION GN Reference: WF-CPS-RPT-TCH1-FAO
HWFCPS23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFCPS23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFCPS23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFCPS23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFCPS23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFCPS23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WFFED23D
==========================================
HWFFED23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFFED23DWF-FE-A-BLANKS Header A 2000BLANK FIELD INDICATORS FFH Fields left blank on the Institutional Student Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-A-BLANKS Y 0000 Field blank on FAFSA Fields left blank on the Institutional Student Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-A-SGN Header A 0010APPLICATION SIGNATURE(S) UFE WF23FEDDWF-FE-A-SGN 150 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-A-SGN-DATE Header D 0000APPLICATION SIGNATURE DATE MM/DD/YYYY UN A Reference: WF-2223-FEDERAL.WF-FE-A-SGN
HWFFED23DWF-FE-A-SSREG Header A 0010SELECTIVE SERVICE REGISTRATION UFE 022 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-A-SSREG Y 0000 SS reg requested 1 A Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM1-OVR Header A 0010ASSUMPTION 1 OVERRIDE UFE OA1 Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-F-ASM1-OVR N 0000 No Assum 1 override * Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM1-OVR Y 0000 Assum 1 override 1 Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM2-OVR Header A 0010ASSUMPTION 2 OVERRIDE UFE OA2 Reference: WF-2223-FEDERAL.WF-FE-F-ASM2-OVR
VWFFED23DWF-FE-F-ASM2-OVR N 0000 No Assum 2 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM2-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM2-OVR Y 0000 Assum 2 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM2-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM3-OVR Header A 0010ASSUMPTION 3 OVERRIDE NXH OA3 Reference: WF-2223-FEDERAL.WF-FE-F-ASM3-OVR
VWFFED23DWF-FE-F-ASM3-OVR N 0000 No Assum 3 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM3-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM3-OVR Y 0000 Assum 3 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM3-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM4-OVR Header A 0010ASSUMPTION 4 OVERRIDE NXH OA4 Reference: WF-2223-FEDERAL.WF-FE-F-ASM4-OVR
VWFFED23DWF-FE-F-ASM4-OVR N 0000 No Assum 4 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM4-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM4-OVR Y 0000 Assum 4 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM4-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM5-OVR Header A 0010ASSUMPTION 5 OVERRIDE NXH OA5 Reference: WF-2223-FEDERAL.WF-FE-F-ASM5-OVR
VWFFED23DWF-FE-F-ASM5-OVR N 0000 No Assum 5 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM5-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM5-OVR Y 0000 Assum 5 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM5-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-ASM6-OVR Header A 0010ASSUMPTION 6 OVERRIDE NXH OA6 Reference: WF-2223-FEDERAL.WF-FE-F-ASM6-OVR
VWFFED23DWF-FE-F-ASM6-OVR N 0000 No Assum 6 override * Reference: WF-2223-FEDERAL.WF-FE-F-ASM6-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-ASM6-OVR Y 0000 Assum 6 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-ASM6-OVR Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-DEP-OVR Header A 0010DEPENDENCY OVERRIDE UFE 160 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-F-DEP-OVR C 0000 Cancel override 2 AC Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-DEP-OVR F 0000 Override failed 3 AC Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-DEP-OVR H 0000 Homeless youth det 1 4 AC Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
VWFFED23DWF-FE-F-DEP-OVR I 0000 Independent override 1 AC Reference: WF-2223-FEDERAL. Information Report (ISIR) are stored in FINANCIER as zeros. The blank field indicators allow a differentiation between these blank fields, and those filled with zeros by the student.
HWFFED23DWF-FE-F-LOCK Header A 0010FEDERAL RECORD LOCK UFE A After reviewing a student's federal resource data,the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-LOCK L 0000 Application locked A After reviewing a student's federal resource data,the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-LOCK N 0000 App may be overlaid A After reviewing a student's federal resource data,the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-PROF-JUDG Header A 0010PROFESSIONAL JUDGMENT UFE 161 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-F-PROF-JUDG F 0000 Prof judgment failed 2 A Reference: WF-2223-FEDERAL. the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-PROF-JUDG Y 0000 Prof judgment 1 A Reference: WF-2223-FEDERAL. the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJ12-OVR Header A 0010REJECT 12 OVERRIDE NXH OR@ Reference: WF-2223-FEDERAL.WF-FE-F-REJ12-OVR
VWFFED23DWF-FE-F-REJ12-OVR N 0000 No Reject 12 ovrride * Reference: WF-2223-FEDERAL.WF-FE-F-REJ12-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJ12-OVR Y 0000 Reject 12 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJ12-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJ20-OVR Header A 0010REJECT 20 OVERRIDE NXH OR) Reference: WF-2223-FEDERAL.WF-FE-F-REJ20-OVR
VWFFED23DWF-FE-F-REJ20-OVR N 0000 No Reject 20 ovrride * Reference: WF-2223-FEDERAL.WF-FE-F-REJ20-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJ20-OVR Y 0000 Reject 20 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJ20-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJ21-OVR Header A 0010REJECT 21 OVERRIDE NXH OR! Reference: WF-2223-FEDERAL.WF-FE-F-REJ21-OVR
VWFFED23DWF-FE-F-REJ21-OVR N 0000 No Reject 21 ovrride * Reference: WF-2223-FEDERAL.WF-FE-F-REJ21-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJ21-OVR Y 0000 Reject 21 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJ21-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJ3-OVR Header A 0010REJECT 3 OVERRIDE NXH OR3 Reference: WF-2223-FEDERAL.WF-FE-F-REJ3-OVR
VWFFED23DWF-FE-F-REJ3-OVR N 0000 No Reject 3 override * Reference: WF-2223-FEDERAL.WF-FE-F-REJ3-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJ3-OVR Y 0000 Reject 3 override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJ3-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJA-OVR Header A 0010REJECT A OVERRIDE NXH ORA Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-F-REJA-OVR N 0000 No Reject A override * Reference: WF-2223-FEDERAL. the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJA-OVR Y 0000 Reject A override 1 Reference: WF-2223-FEDERAL. the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJB-OVR Header A 0010REJECT B OVERRIDE NXH ORB Reference: WF-2223-FEDERAL.WF-FE-F-REJB-OVR
VWFFED23DWF-FE-F-REJB-OVR N 0000 No Reject B override * Reference: WF-2223-FEDERAL.WF-FE-F-REJB-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJB-OVR Y 0000 Reject B override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJB-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJC-OVR Header A 0010REJECT C OVERRIDE NXH ORC Reference: WF-2223-FEDERAL.WF-FE-F-REJC-OVR
VWFFED23DWF-FE-F-REJC-OVR N 0000 No Reject C override * Reference: WF-2223-FEDERAL.WF-FE-F-REJC-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJC-OVR Y 0000 Reject C override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJC-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJG-OVR Header A 0010REJECT G OVERRIDE NXH ORG Reference: WF-2223-FEDERAL.WF-FE-F-REJG-OVR
VWFFED23DWF-FE-F-REJG-OVR N 0000 No Reject G override * Reference: WF-2223-FEDERAL.WF-FE-F-REJG-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJG-OVR Y 0000 Reject G override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJG-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJJ-OVR Header A 0010REJECT J OVERRIDE NXH ORJ Reference: WF-2223-FEDERAL.WF-FE-F-REJJ-OVR
VWFFED23DWF-FE-F-REJJ-OVR N 0000 No Reject J override * Reference: WF-2223-FEDERAL.WF-FE-F-REJJ-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJJ-OVR Y 0000 Reject J override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJJ-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJK-OVR Header A 0010REJECT K OVERRIDE NXH ORK Reference: WF-2223-FEDERAL.WF-FE-F-REJK-OVR
VWFFED23DWF-FE-F-REJK-OVR N 0000 No Reject K override * Reference: WF-2223-FEDERAL.WF-FE-F-REJK-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJK-OVR Y 0000 Reject K override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJK-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJN-OVR Header A 0010REJECT N OVERRIDE NXH ORN Reference: WF-2223-FEDERAL.WF-FE-F-REJN-OVR
VWFFED23DWF-FE-F-REJN-OVR N 0000 No Reject N override * Reference: WF-2223-FEDERAL.WF-FE-F-REJN-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJN-OVR Y 0000 Reject N override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJN-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-F-REJW-OVR Header A 0010REJECT W OVERRIDE NXH ORW Reference: WF-2223-FEDERAL.WF-FE-F-REJW-OVR
VWFFED23DWF-FE-F-REJW-OVR N 0000 No Reject W override * Reference: WF-2223-FEDERAL.WF-FE-F-REJW-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
VWFFED23DWF-FE-F-REJW-OVR Y 0000 Reject W override 1 Reference: WF-2223-FEDERAL.WF-FE-F-REJW-OVR the Financial Aid administrator may lock the record. This will prevent the overlay of this information by records subsequently received and processed in the ADD cycle.
HWFFED23DWF-FE-P-A-COOP Header P 0070PARENT AFI CO-OP EARNINGS 'B'Z,ZZZ,ZZ9 UN 112 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-A-CPAY Header P 0070PARENT AFI COMBAT PAY 'B'Z,ZZZ,ZZ9 UN 111 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-A-CSPD Header P 0070PARENT AFI CHILD SUPPORT PAID 'B'Z,ZZZ,ZZ9 UN 108 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-A-EDCR Header P 0070PARENT AFI EDUCATION CREDITS 'B'Z,ZZZ,ZZ9 UN 107 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-A-GRNT Header P 0070PARENT AFI GRANTS/SCHOLARSHIPS'B'Z,ZZZ,ZZ9 UN 110 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-A-WORK Header P 0070PARENT AFI NEED-BASED WORK 'B'Z,ZZZ,ZZ9 UN 109 AC Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFFED23DWF-FE-P-AGI Header PS0070PARENT ADJUSTED GROSS INCOME 'B'Z,ZZZ,ZZ9 UN 100 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-BUS-FRM Header P 0070PARENT BUSINESS/FARM ASSETS 'B'Z,ZZZ,ZZ9 UN 106 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-CASH Header P 0070PARENT CASH ASSETS 'B'Z,ZZZ,ZZ9 UN 104 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-DLW Header A 0010PARENT DISLOCATED WORKER UFE WFFED23DWF-FE-S-DLW 099 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FAM-COL Header P 0010PARENT FAMILY IN COLLEGE 'B'9 UN 089 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FAM-SIZE Header P 0020PARENT FAMILY SIZE 'B'Z9 UN 088 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FED-TAX Header P 0060PARENT FEDERAL TAX 'B'ZZZ,ZZ9 UN 101 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FILE-STAT Header A 0010PARENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT 097 Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FILER Header A 0010PARENT TAX FILER UFE WFFED23DWF-FE-S-FILER 095 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-FORM Header A 0010PARENT TAX FORM UFE WFFED23DWF-FE-S-FORM 096 AC Reference: WF-2223-FEDERAL.WF-FE-P-FILER
HWFFED23DWF-FE-P-INV Header P 0060PARENT INVESTMENT ASSETS 'B'ZZZ,ZZ9 UN 105 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-MAR Header A 0010PARENT MARITAL STATUS UFE 074 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR D 0000 Divorced 3 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR M 0000 Married/remarried 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR S 0000 Never married 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR U 0000 Unmarried/live tog 5 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR W 0000 Widowed 4 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-P-MAR X 0000 Separated 3 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-MAR-DATE Header D 0000PARENT MARITAL STATUS DATE MM/YYYY UN 075 A Reference: WF-2223-FEDERAL.WF-FE-P-MAR
HWFFED23DWF-FE-P-MT-LUNCH Header A 0010PARENT MEANS-TESTED LUNCH PGM UFE WFFED23DWF-FE-S-MT-LUNCH 092 AC Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFFED23DWF-FE-P-MT-SNAP Header A 0010PARENT MEANS-TESTED SUPP NUTR UUE WFFED23DWF-FE-S-MT-SNAP 091 AC Reference: WF23FEDD.WF-FE-P-MT-SSI
HWFFED23DWF-FE-P-MT-SSI Header A 0010PARENT MEANS-TESTED SSI UFE WFFED23DWF-FE-S-MT-SSI 090 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-MT-TANF Header A 0010PARENT MEANS-TESTED TANF UFE WFFED23DWF-FE-S-MT-TANF 093 AC Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFFED23DWF-FE-P-MT-WIC Header A 0010PARENT MEANS-TESTED WIC UFE WFFED23DWF-FE-S-MT-WIC 094 AC Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFFED23DWF-FE-P-P1-INC Header PS0070PARENT 1 WORK INCOME 'B'Z,ZZZ,ZZ9 UN 102 Reference: WF23FEDD.
HWFFED23DWF-FE-P-P1-LEV Header A 0010PARENT 1 EDUCATIONAL LEVEL UFE WFFED23DWF-FE-P-P2-LEV 024 Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-P2-INC Header PS0070PARENT 2 WORK INCOME 'B'Z,ZZZ,ZZ9- UN 103 Reference: WF23FEDD.WF-FE-P-P1-INC
HWFFED23DWF-FE-P-P2-LEV Header A 0010PARENT 2 EDUCATIONAL LEVEL UFE 025 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
VWFFED23DWF-FE-P-P2-LEV C 0000 College or beyond 3 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
VWFFED23DWF-FE-P-P2-LEV E 0000 Middle Schl/Jr.High 1 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
VWFFED23DWF-FE-P-P2-LEV H 0000 High School 2 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
VWFFED23DWF-FE-P-P2-LEV U 0000 Other/Unknown 4 Reference: WF-2223-FEDERAL.WF-FE-P-P1-LEV
HWFFED23DWF-FE-P-RES Header A 0020PARENT STATE OF RESIDENCE UFE WWSYSVRDWF-HELP-RES 085 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-P-RES-5YR Header A 0010PARENT FIVE-YEAR RESIDENCE UFE WFFED23DWF-FE-S-RES-5YR 086 A Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFFED23DWF-FE-P-RES-DATE Header D 0000PARENT STATE RESIDENCE DATE MM/YYYY UN 087 A Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFFED23DWF-FE-P-SCHED1 Header A 0010PARENT FILED SCHEDULE 1 QUEST UFE WFFED23DWF-FE-S-SCHED1 098 AC
HWFFED23DWF-FE-P-U-CSUP Header P 0070PARENT UTX CHILD SUPPORT RCVD 'B'ZZ,ZZZ,ZZ9 UN 115 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-DST-PEN Header P 0070PAR UNTXD IRA DIST/PENS 'B'ZZ,ZZZ,ZZ9 UN 117 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-INT Header P 0070PARENT UTX INTEREST INCOME 'B'ZZ,ZZZ,ZZ9 UN 116 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-IRA Header P 0070PARENT UTX IRA PAYMENTS 'B'ZZ,ZZZ,ZZ9 UN 114 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-LIV Header P 0070PARENT UTX LIVING ALLOWANCES 'B'ZZ,ZZZ,ZZ9 UN 118 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-OTHER Header P 0070PARENT UTX OTHER UNTAXED INC 'B'ZZ,ZZZ,ZZ9 UN 120 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-PEN Header P 0070PARENT UTX PENSION PAYMENTS 'B'Z,ZZZ,ZZ9 UN 113 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-P-U-VET Header P 0070PARENT UTX VET NON-ED BENEFIT 'B'ZZ,ZZZ,ZZ9 UN 119 AC Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFFED23DWF-FE-S-A-COOP Header P 0070STUDENT AFI CO-OP EARNINGS 'B'ZZ,ZZZ,ZZ9 UN 051 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-A-CPAY Header P 0070STUDENT AFI COMBAT PAY 'B'ZZ,ZZZ,ZZ9 UN 050 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-A-CSPD Header P 0070STUDENT AFI CHILD SUPPORT PAID'B'ZZ,ZZZ,ZZ9 UN 047 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-A-EDCR Header P 0070STUDENT AFI EDUCATION CREDITS 'B'ZZ,ZZZ,ZZ9 UN 046 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-A-GRNT Header P 0070STUDENT AFI GRANTS/SCHOLARSHPS'B'ZZ,ZZZ,ZZ9 UN 049 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-A-WORK Header P 0070STUDENT AFI NEED-BASED WORK 'B'ZZ,ZZZ,ZZ9 UN 048 AC Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFFED23DWF-FE-S-AGI Header PS0070STUDENT ADJUSTED GROSS INCOME 'B'ZZ,ZZZ,ZZ9- UN 039 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-BACH-DEG Header A 0010STUDENT BACHELOR'S DEGREE UFE 031 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-BACH-DEG N 0000 No bach by 7/1/2022 2 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-BACH-DEG Y 0000 Bach deg by 7/1/2022 1 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-BUS-FRM Header P 0070STUDENT BUSINESS/FARM ASSETS 'B'Z,ZZZ,ZZ9 UN 045 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-CASH Header P 0070STUDENT CASH ASSETS 'B'Z,ZZZ,ZZ9 UN 043 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-CIT Header A 0010STUDENT CITIZENSHIP STATUS UFE 014 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-CIT E 0000 Eligible non-citizen 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-CIT I 0000 Inelgble non-citizen 3 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-CIT U 0000 U.S. citizen 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-DEG Header A 0010STUDENT DEGREE/CERTIFICATE UFE WF23FEDDWF-FE-S-DEG 033 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-DLW Header A 0010STUDENT DISLOCATED WORKER UFE 128 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DLW N 0000 Not dislocated 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DLW U 0000 Unknown 3 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DLW Y 0000 Dislocated worker 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-DRUG Header A 0010STUDENT DRUG CONVICTION UFE 023 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DRUG E 0000 Eligible 1 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DRUG N 0000 Not eligible/unknown 3 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-DRUG P 0000 Temporarily inelig 2 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FAM-COL Header P 0010STUDENT FAMILY IN COLLEGE 'B'9 UN 122 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FAM-SIZE Header P 0020STUDENT FAMILY SIZE 'B'Z9 UN 121 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FED-TAX Header P 0070STUDENT FEDERAL TAX 'B'Z,ZZZ,ZZ9 UN 040 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FILE-STAT Header A 0010STUDENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT 037 Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FILER Header A 0010STUDENT TAX FILER UFE 035 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-FILER E 0000 Expect to file 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-FILER F 0000 Filed 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-FILER N 0000 Will not file 3 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-FORM Header A 0010STUDENT TAX FORM UFE 036 AC Reference: WF-2223-FEDERAL.WF-FE-S-FILER
VWFFED23DWF-FE-S-FORM F 0000 Foreign form 3 AC Reference: WF-2223-FEDERAL.WF-FE-S-FILER
VWFFED23DWF-FE-S-FORM L 0000 Long form (1040) 1 AC Reference: WF-2223-FEDERAL.WF-FE-S-FILER
VWFFED23DWF-FE-S-FORM T 0000 Territorial form 4 AC Reference: WF-2223-FEDERAL.WF-FE-S-FILER
HWFFED23DWF-FE-S-HS-CITY Header A 0280STUDENT HIGH SCHOOL CITY UN 028 A Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFFED23DWF-FE-S-HS-GED Header A 0010STUDENT HS DIPLOMA/EQUIVALENT UFE 026 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-HS-GED D 0000 Diploma 1 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-HS-GED G 0000 GED 2 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-HS-GED H 0000 Home schooled 3 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-HS-GED N 0000 None of these 4 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-HS-NAME Header A 0500STUDENT HIGH SCHOOL NAME UN HSN A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-HS-STATE Header A 0020STUDENT HIGH SCHOOL STATE UFE WWSYSVRDWF-HELP-RES 029 A Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFFED23DWF-FE-S-HSG Header A 0010STUDENT HOUSING UFE A The housing status listed on the federal financialaid application for the institution is captured inFINANCIER. This information is not used in calculating the student's eligibility for federal financial aid.
VWFFED23DWF-FE-S-HSG C 0000 Campus housing 1 A The housing status listed on the federal financialaid application for the institution is captured inFINANCIER. This information is not used in calculating the student's eligibility for federal financial aid.
VWFFED23DWF-FE-S-HSG O 0000 Off-campus 3 A The housing status listed on the federal financialaid application for the institution is captured inFINANCIER. This information is not used in calculating the student's eligibility for federal financial aid.
VWFFED23DWF-FE-S-HSG P 0000 With parents 2 A The housing status listed on the federal financialaid application for the institution is captured inFINANCIER. This information is not used in calculating the student's eligibility for federal financial aid.
HWFFED23DWF-FE-S-INT Header A 0010STUDENT INTEREST-LOANS/WORK UFE 034 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-INT D 0000 Don't know 3 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-INT N 0000 Not interested 2 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-INT Y 0000 Interested in work 1 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-INV Header P 0070STUDENT INVESTMENT ASSETS 'B'Z,ZZZ,ZZ9 UN 044 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-MALE Header A 0010STUDENT MALE UFE 021 A Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
VWFFED23DWF-FE-S-MALE F 0000 Female 2 A Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
VWFFED23DWF-FE-S-MALE M 0000 Male 1 A Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
HWFFED23DWF-FE-S-MAR Header A 0010STUDENT MARITAL STATUS UFE 016 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR D 0000 Divorced 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR M 0000 Married 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR S 0000 Single/Unmarried 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR U 0000 Single/Unmarried 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR W 0000 Widowed 1 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MAR X 0000 Separated 3 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-MAR-DATE Header D 0000STUDENT MARITAL STATUS DATE MM/YYYY UN 017 A Reference: WF-2223-FEDERAL.WF-FE-S-MAR
HWFFED23DWF-FE-S-MT-LUNCH Header A 0010STUDENT MEANS-TESTED LUNCH PGM UFE 125 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-LUNCH N 0000 Did not recv lunch 2 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-LUNCH Y 0000 Received lunch pgm 1 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFFED23DWF-FE-S-MT-SNAP Header A 0010STUDENT MEANS-TESTED SUPP NUTR UFE 124 AC Reference: WF23FEDD.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-SNAP N 0000 Did not receive SNAP 2 AC Reference: WF23FEDD.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-SNAP Y 0000 Received SNAP 1 AC Reference: WF23FEDD.WF-FE-S-MT-SSI
HWFFED23DWF-FE-S-MT-SSI Header A 0010STUDENT MEANS-TESTED SSI UFE 123 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MT-SSI N 0000 Did not receive SSI 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-MT-SSI Y 0000 Received SSI 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-MT-TANF Header A 0010STUDENT MEANS-TESTED TANF UFE 126 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-TANF N 0000 Did not receive TANF 2 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-TANF Y 0000 Received TANF 1 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFFED23DWF-FE-S-MT-WIC Header A 0010STUDENT MEANS-TESTED WIC UFE 127 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-WIC N 0000 Did not receive WIC 2 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
VWFFED23DWF-FE-S-MT-WIC Y 0000 Received WIC 1 AC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFFED23DWF-FE-S-RES Header A 0020STUDENT STATE OF RESIDENCE UFE WWSYSVRDWF-HELP-RES 018 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-RES-5YR Header A 0010STUDENT FIVE-YEAR RESIDENCE UFE 019 A Reference: WF-2223-FEDERAL.WF-FE-S-RES
VWFFED23DWF-FE-S-RES-5YR N 0000 <5-year residence 2 A Reference: WF-2223-FEDERAL.WF-FE-S-RES
VWFFED23DWF-FE-S-RES-5YR Y 0000 5-year residence 1 A Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFFED23DWF-FE-S-RES-DATE Header D 0000STUDENT STATE RESIDENCE DATE MM/YYYY UN 020 A Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFFED23DWF-FE-S-SCHED1 Header A 0010STUDENT FILED SCHED 1 QUEST UFE 038 AC
VWFFED23DWF-FE-S-SCHED1 1 0000 DID NOT FILE SCHED 1
VWFFED23DWF-FE-S-SCHED1 2 0000 FILED SCHEDULE 1
VWFFED23DWF-FE-S-SCHED1 3 0000 UNKNOWN SCHED 1
HWFFED23DWF-FE-S-SP-INC Header PS0070SPOUSE WORK INCOME 'B'Z,ZZZ,ZZ9- UN 042 AC Reference: WF-2223-FEDERAL.WF-FE-S-ST-INC
HWFFED23DWF-FE-S-ST-INC Header PS0070STUDENT WORK INCOME 'B'Z,ZZZ,ZZ9- UN 041 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-ACTV Header A 0010STUDENT ACTIVE DUTY TEST UFE 064 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-ACTV N 0000 Not active duty 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-ACTV Y 0000 Active duty 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-CHL Header A 0010STUDENT CHILD DEPENDENTS TEST UFE 066 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-CHL N 0000 Has no dependents 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-CHL Y 0000 Has dependents 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-DEP Header A 0010STUDENT OTHER DEPENDENTS TEST UFE 067 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-DEP N 0000 Has no dependents 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-DEP Y 0000 Has dependents 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-DOB Header A 0010STUDENT DATE OF BIRTH TEST UFE 061 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-DOB N 0000 DOB after 12/31/1995 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-DOB Y 0000 DOB before 1/1/1996 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-EMAN Header A 0010STUDENT EMANCIPATED MINOR TEST UFE 069 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-EMAN N 0000 Not emancipated 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-EMAN Y 0000 Emancipated minor 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-GRAD Header A 0010STUDENT GRADUATE TEST UFE 063 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-GRAD N 0000 Undergraduate 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-GRAD Y 0000 Grad/Professional 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-GUAR Header A 0010STUDENT GUARDIANSHIP TEST UFE 070 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-GUAR N 0000 Not in guardianship 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-GUAR Y 0000 In guardianship 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST UFE 073 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-HMLS N 0000 Not homeless 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-HMLS Y 0000 Homeless or at risk 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-MAR Header A 0010STUDENT MARITAL TEST UFE 062 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-MAR N 0000 Not married 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-MAR Y 0000 Married 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-ORPH Header A 0010STUDENT ORPHAN/WARD TEST UFE 068 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-ORPH N 0000 Not an orphan/ward 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-ORPH Y 0000 Orphan/ward of court 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-UYHU Header A 0010STUDENT UNACC YOUTH (HUD) TEST UFE 072 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-UYHU N 0000 Not unaccomp youth 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-UYHU Y 0000 Unaccomp youth (HUD) 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-UYSD Header A 0010STUDENT UNACC YOUTH (SDL) TEST UFE 071 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-UYSD N 0000 Not unaccomp youth 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-UYSD Y 0000 Unaccomp youth (Sch) 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-TEST-VET Header A 0010STUDENT VETERAN TEST UFE 065 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-VET N 0000 Not a veteran 2 AC Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-TEST-VET Y 0000 A veteran 1 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-U-CSUP Header P 0070STUDENT UTX CHILD SUPPORT RCVD'B'Z,ZZZ,ZZ9 UN 054 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-DST-PEN Header P 0070STU UNTXD IRA DIST/PENS 'B'ZZ,ZZZ,ZZ9 UN 056 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-INT Header P 0070STUDENT UTX INTEREST INCOME 'B'Z,ZZZ,ZZ9 UN 055 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-IRA Header P 0070STUDENT UTX IRA PAYMENTS 'B'Z,ZZZ,ZZ9 UN 053 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-LIV Header P 0070STUDENT UTX LIVING ALLOWANCES 'B'Z,ZZZ,ZZ9 UN 057 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-MONEY Header P 0070STUDENT UTX MONEY RECEIVED 'B'Z,ZZZ,ZZ9 UN 060 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-OTHER Header P 0070STUDENT UTX OTHER UNTAXED INC 'B'Z,ZZZ,ZZ9 UN 059 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-U-PEN Header P 0070STUDENT UTX PENSION PAYMENTS 'B'Z,ZZZ,ZZ9 UN 052 AC Reference: WF-2223-FEDERAL.
HWFFED23DWF-FE-S-U-VET Header P 0070STUDENT UTX VET NON-ED BENEFIT'B'Z,ZZZ,ZZ9 UN 058 AC Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFFED23DWF-FE-S-YR-COL Header A 0020STUDENT YEAR IN COLLEGE UFE 032 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL FP 0000 Freshman with prev 1 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL FR 0000 Freshman 0 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL G+ 0000 Grad 7 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL GR 0000 Grad 6 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL JR 0000 Junior 3 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL SO 0000 Sophomore 2 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL SR 0000 Senior 4 A Reference: WF-2223-FEDERAL.
VWFFED23DWF-FE-S-YR-COL U+ 0000 > 4th year undergrad 5 A Reference: WF-2223-FEDERAL.
HWFFED23DWF-FED-FAO-ACTION Header 0000FAO ACTIONS GN > 4th year undergrad 5 A
HWFFED23DWF-FED-PAR-ASSETS Header 0000PARENT ASSETS GN > 4th year undergrad 5 A
HWFFED23DWF-FED-PAR-ATTRIB Header 0000PARENT ATTRIBUTES GN > 4th year undergrad 5 A
HWFFED23DWF-FED-PAR-INCOME Header 0000PARENT INCOME GN > 4th year undergrad 5 A
HWFFED23DWF-FED-PAR-OTHER Header 0000PARENT OTHER INFORMATION GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-ACTION Header 0000STUDENT ACTIONS GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-ASSETS Header 0000STUDENT ASSETS GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-ATTRIB Header 0000STUDENT ATTRIBUTES GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-INCOME Header 0000STUDENT INCOME GN > 4th year undergrad 5 A
HWFFED23DWF-FED-STU-OTHER Header 0000STUDENT OTHER INFORMATION GN > 4th year undergrad 5 A
HWFFED23DWF-FEDERAL-KEY Header A 0110FEDERAL KEY KN The Federal key is comprised of FAO and the student's FINANCIER ID. This key is used in all Federal file accesss.
HWFFED23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFFED23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFFED23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFFED23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFFED23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WFICO23D
==========================================
HWFICO23DWF-IC001 Header A 0030COMMENT 001 HN WHAT YOU MUST DO NOW (Use the checklist below to make sure that all of your issues are resolved.)
HWFICO23DWF-IC002 Header A 0030COMMENT 002 HN This SAR reflects your Financial Aid Administrator's use of professional judgment.
HWFICO23DWF-IC003 Header A 0030COMMENT 003 HN This SAR shows corrections to information that we previously entered incorrectly.
HWFICO23DWF-IC004 Header A 0030COMMENT 004 HN This SAR has been produced due to a change in your financial aid history information in the National Student Loan Data System (NSLDS)that may affect your eligibility for federal student aid.
HWFICO23DWF-IC005 Header A 0030COMMENT 005 HN We are unable to read all of the information on your FAFSA or SAR because it was damaged. Please review all of the items on this SAR and make any corrections as needed.
HWFICO23DWF-IC006 Header A 0030COMMENT 006 HN If you need to make corrections to your information, you may either make them online at https://fafsa.gov using your FSA ID, or by using this SAR. If you need additional help with your SAR, contact your school's financial aid office or visit https://fafsa. gov and click the "Help" icon on the FAFSA home page. If your mailing address or e-mail address changes, you can make the correction online or send in the correction on your SAR.
HWFICO23DWF-IC007 Header A 0030COMMENT 007 HN We previously indicated that your father's date of birth in Item 63 does not match his date of birth in the Social Security Administration's (SSA) records for his Social Security Number (SSN).If his SSN (Item 60) or date of birth is incorrect, you need to makea correction. If his SSN and date of birth are correct, your fathershould contact the SSA to make sure that they correct their records.The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC008 Header A 0030COMMENT 008 HN We previously indicated that your mother's date of birth in Item 67 does not match her date of birth in the Social Security Administration's (SSA) records for her Social Security Number (SSN).If her SSN (Item 64) or date of birth is incorrect, you need to makea correction. If her SSN and date of birth are correct, your mothershould contact the SSA to make sure that they correct their records.The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC009 Header A 0030COMMENT 009 HN We cannot process your FAFSA because of issues related to the Anti-Drug Abuse Act of 1988. To address these issues, you must contact us by telephone at 202-377-3389 within 30 days from the date of this letter.
HWFICO23DWF-IC010 Header A 0030COMMENT 010 HN For additional information about your FSEOG overpayment, your Financial Aid Administrator must access NSLDS.
HWFICO23DWF-IC011 Header A 0030COMMENT 011 HN The Social Security Administration (SSA) did not confirm the Social Security Number (SSN) you reported for your father in Item 60. If you believe that the SSN you reported is correct, your father must contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSNis incorrect, you must make the necessary correction.
HWFICO23DWF-IC012 Header A 0030COMMENT 012 HN The Social Security Administration (SSA) did not confirm the Social Security Number (SSN) you reported for your mother in Item 64. If you believe that the SSN you reported is correct, your mother must contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSNis incorrect, you must make the necessary correction.
HWFICO23DWF-IC013 Header A 0030COMMENT 013 HN You cannot change your Social Security Number (SSN) (Item 8). The Social Security Administration has already confirmed that this SSN belongs to you.
HWFICO23DWF-IC014 Header A 0030COMMENT 014 HN The Social Security Administration (SSA) confirmed the Social Security Number (SSN) you reported for your mother on your FAFSA, but did not confirm the SSN you reported for your father (Item 60). If you believe that the SSN you reported for your father is correct,your father should contact the SSA. The SSA can contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. Ifthe SSN is incorrect, you need to make the necessary correction.
HWFICO23DWF-IC015 Header A 0030COMMENT 015 HN The Social Security Administration (SSA) confirmed the Social Security Number (SSN) you reported for your father on your FAFSA, but did not confirm the SSN you reported for your mother (Item 64). If you believe that the SSN you reported for your mother is correct,your mother should contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. Ifthe SSN is incorrect, you need to make the necessary correction.
HWFICO23DWF-IC016 Header A 0030COMMENT 016 HN Your father's date of birth as reported on your FAFSA does not match his date of birth in the Social Security Administration's (SSA) records for his Social Security Number (SSN). Therefore, you must correct his SSN (Item 60) or his date of birth (Item 63). If his date of birth is correct, you must confirm it by reentering it in Item 63. If you confirm your father's date of birth, your father should also contact the SSA to make sure that they correct itin their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC017 Header A 0030COMMENT 017 HN Your mother's date of birth as reported on your FAFSA does not match her date of birth in the Social Security Administration's (SSA) records for her Social Security Number (SSN). Therefore, you must correct her SSN (Item 64) or her date of birth (Item 67). If her date of birth is correct, you must confirm it by reentering it in Item 67. If you confirm your mother's date of birth, your mother should also contact the SSA to make sure that they correct itin their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC018 Header A 0030COMMENT 018 HN You must provide your date of birth in Item 9.
HWFICO23DWF-IC019 Header A 0030COMMENT 019 HN The date of birth you reported for your mother on your FAFSA matches the Social Security Administration's (SSA) records, but the date of birth you reported for your father does not match the SSA's records. Your father should review the date of birth in Item 63 and either confirm the date you have reported or make the necessary correction.
HWFICO23DWF-IC020 Header A 0030COMMENT 020 HN To resolve your Pell overpayment, your Financial Aid Administrator must access NSLDS for additional Pell overpayment information.
HWFICO23DWF-IC021 Header A 0030COMMENT 021 HN The date of birth you reported for your father on your FAFSA matches the Social Security Administration's (SSA) records, but the date of birth you reported for your mother does not match the SSA's records. Your mother should review the date of birth in Item 67 and either confirm the date you have reported or make the necessary correction.
HWFICO23DWF-IC022 Header A 0030COMMENT 022 HN The name you reported for your father on your FAFSA doesn't match the Social Security Administration's (SSA) records. If the last name and first initial you reported in Items 61 and 62 are correct, contact the SSA. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC023 Header A 0030COMMENT 023 HN Comment 023 is not in use.
HWFICO23DWF-IC024 Header A 0030COMMENT 024 HN The Social Security Administration (SSA) did not confirm that the Social Security Number (SSN) you reported on your FAFSA is correct, and also could not confirm your U.S. citizenship. If you believe that the SSN you reported in Item 8 is correct, contact the SSA by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSN is incorrect, you must correct the SSN on a paper SAR or submit a new FAFSA online with thecorrect SSN.
HWFICO23DWF-IC025 Header A 0030COMMENT 025 HN The name you reported for your mother on your FAFSA doesn't match the Social Security Administration's (SSA) records. If the last name and first initial you reported in Items 65 and 66 are correct, contact the SSA. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC026 Header A 0030COMMENT 026 HN If you want to register with Selective Service, you can register by doing one of the following: (1) answer "Male" to Item 21 and "Regi- ster Me" to Item 22 on this SAR, (2) complete a Selective Service registration form at your local post office, or (3) register online at https://sss.gov. Selective Service will not process your registration until 30 days before your 18th birthday.
HWFICO23DWF-IC027 Header A 0030COMMENT 027 HN According to the Social Security Administration, the Social Security Number you provided for your father in Item 60 belongs to a deceased person. Please review your answer to Item 60 and make a correction if necessary.
HWFICO23DWF-IC028 Header A 0030COMMENT 028 HN We have forwarded your name to Selective Service for registration, as you requested. They will process your registration request 30 days prior to your 18th birthday.
HWFICO23DWF-IC029 Header A 0030COMMENT 029 HN According to the Social Security Administration, the Social Security Number you provided for your mother in Item 64 belongs to a deceased person. Please review your answer to Item 64 and make a correction if necessary.
HWFICO23DWF-IC030 Header A 0030COMMENT 030 HN The Selective Service reported that you have not registered with them. If you are female or were born before 1960, registration is not required. Otherwise, if you are not yet registered, are male, and are 18 through 25 years of age, to receive aid you must do one of the following: (1) answer "Male" to Item 21 and "Register Me" to Item 22 on this SAR, (2) complete a Selective Service registration form at your local post office, or (3) register online at https://sss.gov. If you believe you have already registered or are exempt, please check the Selective Service website at https://sss. gov, select "registration info" and then "Who Must Register?" If youhave documentation proving an exemption, submit it to your school tosa
HWFICO23DWF-IC031 Header A 0030COMMENT 031 HN We have forwarded your name to Selective Service for registration, as you requested.
HWFICO23DWF-IC032 Header A 0030COMMENT 032 HN The number you have reported for your parents' number of family members is significantly different than the number you reported on your FAFSA last year. Review Item 72 and make a correction if necessary.
HWFICO23DWF-IC033 Header A 0030COMMENT 033 HN We could not send your name to Selective Service as you requested because you did not give us enough information, you are outside the age range for registration, or you did not sign your form. If you are male and at least 18 but not yet 26, to receive aid you must do one of the following: (1) answer "Male" to Item 21 and "Register Me"to Item 22 on this SAR and also provide information for Items 1, 2, and 9, (2) complete a Selective Service registration form at your local post office, or (3) register online at https://sss.gov. If youare a male of age 26 or older, you must check the Selective Service website at https://sss.gov. Select registration info and then "Who Must Register?” for more information. Exempt if born before 1960.
HWFICO23DWF-IC034 Header A 0030COMMENT 034 HN The number you have reported for your parents' number of family members in college is significantly greater than the number you reported on your FAFSA last year. Review Item 73 and make a correction if necessary.
HWFICO23DWF-IC035 Header A 0030COMMENT 035 HN The amount you have reported for your parents' income is signifi- cantly less than the amount you reported on your FAFSA last year. Review Items 84, 86, 87, and 92a through 92h and make the necessary corrections.
HWFICO23DWF-IC036 Header A 0030COMMENT 036 HN The amount you have reported for your parents' income taxes paid is significantly greater than the amount you reported on your FAFSA last year. Review Item 85 and make a correction if necessary.
HWFICO23DWF-IC037 Header A 0030COMMENT 037 HN Certain post-baccalaureate students enrolled in teaching credential programs may be eligible for a Federal Pell Grant.
HWFICO23DWF-IC038 Header A 0030COMMENT 038 HN To resolve your Federal Pell Grant overpayment, your Financial Aid Administrator must contact the school associated with the Pell overpayment.
HWFICO23DWF-IC039 Header A 0030COMMENT 039 HN To resolve your Federal Pell Grant overpayments, your Financial Aid Administrator must access NSLDS for additional Pell overpayment information.
HWFICO23DWF-IC040 Header A 0030COMMENT 040 HN Your father's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for his Social Security Number (SSN). Therefore, you must correct his SSN (Item 60) or his name (Items 61 and 62). If his name is correct, you must confirm it by reentering both his last name and first name initial in Items 61 and 62. If you confirm your father's name, your father should also contact the SSA to make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC041 Header A 0030COMMENT 041 HN To resolve your Federal Pell Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC042 Header A 0030COMMENT 042 HN To resolve your Federal Pell Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC043 Header A 0030COMMENT 043 HN To resolve your Federal Pell Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC044 Header A 0030COMMENT 044 HN We previously indicated that your father's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for his Social Security Number (SSN). If his SSN (Item 60) or name (Items 61 or 62) are incorrect, you need to make the necessary corrections. If his SSN and name are correct, your father should contact the SSA to make sure that they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC045 Header A 0030COMMENT 045 HN You reported a Social Security Number (SSN) for both your father andmother (Items 60 and 64) but also reported that their marital status is not married (Item 58). You should only report the SSN for the parent or stepparent whose financial information is reportedon your FAFSA.
HWFICO23DWF-IC046 Header A 0030COMMENT 046 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security did not confirm that you are a noncitizen (Item 14) in an immigration status associated with the requirements of eligibility for the financial assistance for which you have applied. You must submit proof to your school that you are in the required noncitizen immigration status. If you do not submit proof within 30 days, or longer if your school allows, you may not be eligible for federal student aid.
HWFICO23DWF-IC047 Header A 0030COMMENT 047 HN There are issues with your FAFSA information that need to be resolved before your eligibility can be determined. Read this lettercarefully and review any items printed in bold type on this SAR. If you need to make corrections on this SAR, you and your parent must sign the certification at the end before you send it back to us.
HWFICO23DWF-IC048 Header A 0030COMMENT 048 HN You have reported a Social Security Number for your parent (Item 60 or 64) that is the same as yours. Please review this item.
HWFICO23DWF-IC049 Header A 0030COMMENT 049 HN You must report a valid Social Security Number (SSN), name and date of birth for your father or mother. If your parent does not have anSSN, you must correct Item 60 and/or 64 to all zeroes.
HWFICO23DWF-IC050 Header A 0030COMMENT 050 HN There are issues with your FAFSA information that need to be resolved before your eligibility can be determined. Read this lettercarefully and review any items printed in bold type on this SAR. If you need to make corrections on this SAR, you must sign the certification at the end before you send it back to us.
HWFICO23DWF-IC051 Header A 0030COMMENT 051 HN Your mother's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for her Social Security Number (SSN). Therefore, you must correct her SSN (Item 64) or her name (Items 65 and 66). If her name is correct, you must confirm it by reentering both her last name and first name initial in Items 65 and 66. If you confirm your mother's name, your mother should also contact the SSA to make sure that they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC052 Header A 0030COMMENT 052 HN Your answer to Item 23 has changed since you filed your initial FAFSA. Please review this item.
HWFICO23DWF-IC053 Header A 0030COMMENT 053 HN You left Item 23 blank. Your failure to provide an answer to this question makes you ineligible to receive federal student aid. Either indicate that you have not been convicted of possessing or selling illegal drugs for an offense that occurred while you werereceiving federal student aid (such as grants, loans, and work- study), or use the enclosed worksheet to determine your answer to this question. You can answer Item 23 on your SAR or you can correctthis item by calling 1-800-4-FED-AID (1-800-433-3243) or by going tohttps://fafsa.gov. Please understand that a drug conviction does notnecessarily disqualify you from receiving student aid.
HWFICO23DWF-IC054 Header A 0030COMMENT 054 HN You reported a "2" in response to Item 23. This indicates that you are ineligible for federal student aid for part of the 2022- 2023 school year. The period of ineligibility resulting from your drug-related conviction(s) ends on or after July 1, 2022. You should contact your Financial Aid Administrator after July 1, 2022 so that he or she can determine if you may receive federal funds during the 2022-2023 award year.
HWFICO23DWF-IC055 Header A 0030COMMENT 055 HN Your denial of benefits under the Anti-Drug Abuse Act of 1988 has been resolved and processing of your FAFSA may continue.
HWFICO23DWF-IC056 Header A 0030COMMENT 056 HN You reported in Item 23 that you have been convicted of an illegal drug offense. Use the enclosed worksheet to determine if your con- viction(s) affect your eligibility for federal student aid. If you determine that your conviction(s) do not affect your eligibility forfederal student aid, or affect it for only part of the 2022-2023 school year, you must correct Item 23. You can change your answer byusing your SAR or you can correct this item or get additional help with this question by calling 1-800-4-FED-AID (1-800-433-3243). YOU ARE NOT ELIGIBLE FOR FEDERAL STUDENT AID WHILE YOUR ANSWER TO ITEM ITEM 31 IS "3, YES" but you may still be eligible to receive state, school, or other non-federal student aid.
HWFICO23DWF-IC057 Header A 0030COMMENT 057 HN Selective Service did not register you because you did not answer "Male" to Item 21. If you are male and want to register, you can do one of the following: (1) answer "Male" to Item 21 and "Register Me"to Item 22 on this SAR, (2) complete a Selective Service registra- tion form at your local post office, or (3) register online at https://sss.gov
HWFICO23DWF-IC058 Header A 0030COMMENT 058 HN You reported in Item 23 that you are not eligible for federal student aid as a result of a drug-related conviction, or that you donot know if your conviction(s) affect your eligibility. However, you may still be eligible to receive state, school, or other non- federal student aid. If you have answered this question incorrectly, you must correct Item 23 by using your SAR. You can also correct this item or get help with this question by calling1-800-4-FED-AID (1-800-433-3243).
HWFICO23DWF-IC059 Header A 0030COMMENT 059 HN The Social Security Administration could not determine if the SocialSecurity Number reported in Item 8 belongs to you because you did not give us your last name (Item 1) and/or date of birth (Item 9). Review these items and make the necessary corrections.
HWFICO23DWF-IC060 Header A 0030COMMENT 060 HN The date of birth you reported on your FAFSA does not match the date of birth in the Social Security Administration's (SSA) records for your Social Security Number (SSN). Therefore, you must correct your SSN (Item 8) or your date of birth (Item 9). If your date of birth is correct, you must confirm it by reentering it in Item 9. If you confirm your date of birth, you should also contact the SSA to make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC061 Header A 0030COMMENT 061 HN The name you reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for your Social Security Number (SSN). Therefore, you must correct your SSN (Item 8) or name (Items 1 and 2). If your name is correct, you must confirm it by reentering both your first and last names in Items 1 and 2. If you confirm your name, you should also contact the SSA to make sure that they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC062 Header A 0030COMMENT 062 HN You reported the date of your marital status in Item 17 to be after the date you completed your application. You must report your marital status (Item 16) as of the date you submit your application.Please review Items 16 and 17 and make the necessary corrections.
HWFICO23DWF-IC063 Header A 0030COMMENT 063 HN We previously indicated that the date of birth you reported on your FAFSA in Item 9 does not match the date of birth in the Social Security Administration's (SSA) records for your Social Security Number (SSN). If either your SSN (Item 8) or date of birth is incorrect, you must make a correction. If your SSN and date of birth are correct, you should contact the SSA to make sure that they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. You must provide proof of your date of birth to your financial aid office.
HWFICO23DWF-IC064 Header A 0030COMMENT 064 HN We previously indicated that the name you reported on your FAFSA in Items 1 and 2 does not match the name in the Social Security Administration's (SSA) records for your Social Security Number (SSN). If your SSN (Item 8) or name are incorrect, you must make the necessary corrections. If your SSN and name are correct, you should contact the SSA to make sure that they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. You must provide proof of your name to your financial aid office.
HWFICO23DWF-IC065 Header A 0030COMMENT 065 HN To resolve your FSEOG overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC066 Header A 0030COMMENT 066 HN To resolve your FSEOG overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC067 Header A 0030COMMENT 067 HN To resolve your FSEOG overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC068 Header A 0030COMMENT 068 HN You did not indicate on your FAFSA that you are a U.S. citizen or aneligible noncitizen. (Item 14). To receive federal student aid, a student must be-- (1) A U.S. citizen (or U.S. National), or (2) An eligible noncitizen, such as a U.S. permanent resident or a resident of certain Pacific Islands, or as determined by the U.S. Department of Education.
HWFICO23DWF-IC069 Header A 0030COMMENT 069 HN Review your date of birth in Item 9 and either confirm the date you have reported by reentering it or make the necessary correction.
HWFICO23DWF-IC070 Header A 0030COMMENT 070 HN You reported that you will either have a bachelor's degree by July 1, 2022 (Item 28) or will be working on a degree beyond a bachelor's degree (Item 47). Graduate students are eligible for most types of federal aid, but generally not the Federal Pell Grant.
HWFICO23DWF-IC071 Header A 0030COMMENT 071 HN We previously indicated that your mother's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for her Social Security Number (SSN). If her SSN (Item 64) or her name (Items 65 or 66) are incorrect, you need to make the necessary corrections. If her SSN and name are correct, your mother should contact the SSA to make sure that they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC072 Header A 0030COMMENT 072 HN Review your date of birth in Item 9 and either confirm the date you have reported by reentering it or make the necessary correction.
HWFICO23DWF-IC073 Header A 0030COMMENT 073 HN The number you reported for your number of family members is significantly different than the number you reported on your FAFSA last year. Review Item 93 and make a correction if necessary.
HWFICO23DWF-IC074 Header A 0030COMMENT 074 HN The number you reported for your number of family members in college is significantly greater than the number you reported on your FAFSA last year. Review Item 94 and make a correction if necessary.
HWFICO23DWF-IC075 Header A 0030COMMENT 075 HN You should not update your marital status (Item 16) if your marital status changes after you sign and submit your original application. You should only change this item if you made a mistake in reporting your correct marital status on your original application.
HWFICO23DWF-IC076 Header A 0030COMMENT 076 HN Social Security Administration (SSA) records indicate that the Social Security Number (SSN) that was provided in Item 8 belongs to a deceased person. If the SSN is correct, the applicant must contact the SSA at 1-800-772-1213 or https://socialsecurity.gov to resolve this problem. If the SSN is incorrect, the applicant must correct the SSN on a paper SAR or submit a new FAFSA online with thecorrect SSN.
HWFICO23DWF-IC077 Header A 0030COMMENT 077 HN To resolve your FSEOG overpayment, your Financial Aid Administrator must contact the school associated with the FSEOG overpayment.
HWFICO23DWF-IC078 Header A 0030COMMENT 078 HN The U.S. Department of Education granted permission to process your FAFSA after the June 30, 2023 deadline.
HWFICO23DWF-IC079 Header A 0030COMMENT 079 HN To resolve your FSEOG overpayments, your Financial Aid Administratormust access NSLDS for additional FSEOG overpayment information.
HWFICO23DWF-IC080 Header A 0030COMMENT 080 HN We recently received an application with an incomplete name from this address. The applicant should review this SAR and provide his or her full name in Items 1 and 2. If the applicant does not have both a first and a last name, draw a line through both the previous answer and the new answer space for the name that should be left blank.
HWFICO23DWF-IC081 Header A 0030COMMENT 081 HN We did not process your correction to change your date of birth (Item 9) to blank. We must have your date of birth to process your record.
HWFICO23DWF-IC082 Header A 0030COMMENT 082 HN We recently received an application with no name from this address. The applicant must provide a full name in Items 1 and 2 on this SAR.
HWFICO23DWF-IC083 Header A 0030COMMENT 083 HN You reported that your parent(s) did or will file a 2020 income tax return (Item 79) but also reported that your father does not have a Social Security Number (Item 60). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC084 Header A 0030COMMENT 084 HN You reported that your parent(s) did or will file a 2020 income tax return (Item 79) but also reported that your mother does not have a Social Security Number (Item 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC085 Header A 0030COMMENT 085 HN We assumed your parent(s) did file or will file a 2020 income tax return (Item 79). Please review this item.
HWFICO23DWF-IC086 Header A 0030COMMENT 086 HN To resolve your Perkins overpayment, your Financial Aid Administrator must access NSLDS for additional Perkins overpayment information.
HWFICO23DWF-IC087 Header A 0030COMMENT 087 HN We assumed your parent(s) did not file and will not file a 2020 income tax return (Item 79). Please review this item.
HWFICO23DWF-IC088 Header A 0030COMMENT 088 HN We did not process your correction to change your citizenship to blank (Item 14). We must have your citizenship status to process your record.
HWFICO23DWF-IC089 Header A 0030COMMENT 089 HN Review your parents' marital status in Item 58. If your parents are not married, provide only the income for the parent who supports you.
HWFICO23DWF-IC090 Header A 0030COMMENT 090 HN To resolve your Perkins overpayment, your Financial Aid Aministratormust contact the school associated with the Perkins overpayment.
HWFICO23DWF-IC091 Header A 0030COMMENT 091 HN It appears you reported the same income amount for more than one of your parent(s)' income questions. Please review these items.
HWFICO23DWF-IC092 Header A 0030COMMENT 092 HN It appears you reported the same income amount for more than one of your income questions. Please review these items.
HWFICO23DWF-IC093 Header A 0030COMMENT 093 HN It appears you reported the same income amount for more than one of your income questions. Please review these items.
HWFICO23DWF-IC094 Header A 0030COMMENT 094 HN It appears you reported the same adjusted gross income amount for you and your parent(s). Review Items 36 and 84 and make any necessary corrections.
HWFICO23DWF-IC095 Header A 0030COMMENT 095 HN We assumed you did file or will file a 2020 income tax return (Item 32).
HWFICO23DWF-IC096 Header A 0030COMMENT 096 HN You have reported the same amount for your father's and your mother's income (Items 86 and 87). Please review these items.
HWFICO23DWF-IC097 Header A 0030COMMENT 097 HN We assumed you did not file and will not file a 2020 income tax return (Item 32). Please review this item.
HWFICO23DWF-IC098 Header A 0030COMMENT 098 HN You have reported the same amount for your income and your spouse's income (Items 38 and 39). Please review these items.
HWFICO23DWF-IC099 Header A 0030COMMENT 099 HN Review your marital status in Item 16. You should report income for a spouse only if you were married and not separated as of the date you signed and submitted your FAFSA. Please note: if you were separated or divorced as of the date you signed your FAFSA, we will need only your income, even if a joint tax return was filed.
HWFICO23DWF-IC100 Header A 0030COMMENT 100 HN To resolve your Perkins overpayment, call the U.S. Department of Education at 1-800-621-3115 or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC101 Header A 0030COMMENT 101 HN To resolve your Perkins overpayment, call the U.S. Department of Education at 1-800-621-3115 or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC102 Header A 0030COMMENT 102 HN To resolve your Perkins overpayment, call the U.S. Department of Education at 1-800-621-3115 or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC103 Header A 0030COMMENT 103 HN One or more of the schools you listed on your FAFSA are not in our file of eligible schools. To receive federal student aid, you must attend a school that participates in the federal student aid programs. Please review Item 101 and make changes as necessary.
HWFICO23DWF-IC104 Header A 0030COMMENT 104 HN Either you did not list any schools on your FAFSA or the schools you listed are not in our file of eligible schools. To receive federal student aid, you must attend a school that participates in the federal student aid programs. Please review Item 101 and make changes as necessary. To verify your school code go to https://fafsa.gov and click the "School Code Search" link.
HWFICO23DWF-IC105 Header A 0030COMMENT 105 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security has not yet confirmed that you are a noncitizen (Item 14) in an immigration status associated with the requirements of eligibility for the financial assistance for which you have applied. You must submit proof to your school that you are a noncitizen in the required immigration status. If you do not submit proof to your school within 30 days, or longer if your school allows, you may not be eligible for federal student aid.
HWFICO23DWF-IC106 Header A 0030COMMENT 106 HN You have corrected information on your SAR more than 10 times. Before sending in another correction, contact your financial aid office for assistance.
HWFICO23DWF-IC107 Header A 0030COMMENT 107 HN To resolve your Perkins overpayments, your Financial Aid Administra-tor must access NSLDS for additional Perkins overpayment information.
HWFICO23DWF-IC108 Header A 0030COMMENT 108 HN Your parent did not sign your FAFSA or the SAR corrections you submitted. If your parent is not able to sign, see your financial aid office or High School Counselor.
HWFICO23DWF-IC109 Header A 0030COMMENT 109 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security did not have enough information to confirm that you are a noncitizen (Item 14) in an immigration status associated with the requirements of eligibility for the financial assistance for which you have applied. You must contact the financial aid office at your school to find out what informationis needed. If you do not submit the required information within 30 days, or longer if your school allows, you may not be eligible for federal student aid.
HWFICO23DWF-IC110 Header A 0030COMMENT 110 HN We have not received the signature page from your FAFSA on the Web application or correction. You must sign and return thisSAR before we can determine your eligibility for federal student aid.
HWFICO23DWF-IC111 Header A 0030COMMENT 111 HN The amount you reported for your parents' income tax is equal to or greater than the amount you reported for their adjusted gross income. Review Items 84 and 85 and make the necessary corrections.
HWFICO23DWF-IC112 Header A 0030COMMENT 112 HN Based on the information we have on record for you, your EFC is _____. You are not eligible for a Federal Pell Grant but you maybe eligible for other aid. Your school will use your EFC to determine your financial aid eligibility for other federal grants, loans, and work study, and possible funding from your state and school.
HWFICO23DWF-IC113 Header A 0030COMMENT 113 HN We assumed the value for number in college (Item 73) based on your parents' marital status and number of family members. Your parents should not be included in the number in college. Please review this item.
HWFICO23DWF-IC114 Header A 0030COMMENT 114 HN The amount you reported for your income taxes is equal to or greater than the amount you reported for your adjusted gross income. Review Items 36 and 37 and make the necessary corrections.
HWFICO23DWF-IC115 Header A 0030COMMENT 115 HN The National Student Loan Data System (NSLDS) indicates that one or more of your federal student loans have been discharged. If you have questions, contact the financial aid office at your school.
HWFICO23DWF-IC116 Header A 0030COMMENT 116 HN The National Student Loan Data System (NSLDS) indicates you have one or more student loans in an active bankruptcy status. Before you can receive additional federal student loans, you must contact the financial aid office at your school.
HWFICO23DWF-IC117 Header A 0030COMMENT 117 HN We assumed certain information to calculate your eligibility for federal student aid. We printed the assumption we made and the word "assumed" in the "You told us" space for each of these items. If our assumptions are correct, do not change them. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC118 Header A 0030COMMENT 118 HN Be sure to review the items printed in darker print on this SAR and make any corrections if necessary.
HWFICO23DWF-IC119 Header A 0030COMMENT 119 HN You corrected the date of your marital status to be after the date you submitted your application. Your marital status (Item 16) and date (Item 17) should only be changed if they were reported incorrectly on the date the FAFSA was originally submitted, or if a Financial Aid Administrator has instructed you to update this information. Review Items 16 and 17 and make the necessary correc- tions or contact your Financial Aid Administrator for assistance.
HWFICO23DWF-IC120 Header A 0030COMMENT 120 HN Your citizenship status (Item 14) has been confirmed by the Department of Homeland Security and you meet the citizenship requirements for federal student aid.
HWFICO23DWF-IC121 Header A 0030COMMENT 121 HN It appears you have reported the same amount for your parents' cash, savings, and checking accounts and your parents' real estate/investment net worth. Review Items 88 and 89 and make the necessary corrections.
HWFICO23DWF-IC122 Header A 0030COMMENT 122 HN It appears you have reported the same amount for your cash, savings, and checking accounts and your real estate/investment net worth. Review Items 40 and 41 and make the necessary corrections.
HWFICO23DWF-IC123 Header A 0030COMMENT 123 HN It appears you have reported the same amount for your cash, savings, and checking accounts and your real estate/investment net worth. Review Items 40 and 41 and make the necessary corrections.
HWFICO23DWF-IC124 Header A 0030COMMENT 124 HN Contact the following agency(ies) regarding your defaulted federal student loan(s):
HWFICO23DWF-IC125 Header A 0030COMMENT 125 HN To be considered for a Federal Pell Grant, your financial aid office must receive your SAR by September 17, 2023, or your last day of enrollment, whichever comes first. Other student aid programs have different deadlines.
HWFICO23DWF-IC126 Header A 0030COMMENT 126 HN You reported that your parents will not file an income tax return, but the amount you reported for your parents' income appears to be over the minimum amount required to file a tax return. Please review Items 79, 86, and 87 and make the necessary corrections.
HWFICO23DWF-IC127 Header A 0030COMMENT 127 HN It may be too late to submit any corrections to your SAR. To be considered for a Federal Pell Grant, you must submit a complete, correct SAR to your financial aid office no later than September 17, 2023, or your last day of enrollment, whichever comes first. If it is later than September 17, 2023, you must contact your financial aid office for assistance.
HWFICO23DWF-IC128 Header A 0030COMMENT 128 HN It may be too late for you to make corrections or give us any more information for this year. We must have your corrected SAR no later than September 10, 2023. If it is later than September 10, 2023, you must contact your fiancial aid office for assistance.
HWFICO23DWF-IC129 Header A 0030COMMENT 129 HN You must provide your parent(s) income information in Items 84 through 87 and 92a through 92h.
HWFICO23DWF-IC130 Header A 0030COMMENT 130 HN You must provide your income information in Items 36 through 39 and 44a through 44i.
HWFICO23DWF-IC131 Header A 0030COMMENT 131 HN You reported that you will not file an income tax return, but the amount you reported for your (and your spouse's) income appears to be over the minimum amount required to file a tax return. Please review Items 32, 38, and 39 and make the necessary corrections.
HWFICO23DWF-IC132 Header A 0030COMMENT 132 HN The National Student Loan Data System (NSLDS) indicates that you arein DEFAULT on one or more federal student loans. You are not eligible to receive any federal student aid until you resolve any loan default(s).
HWFICO23DWF-IC133 Header A 0030COMMENT 133 HN The National Student Loan Data System (NSLDS) indicates that you have received one or more overpayments of federal student aid funds. You are required by law to repay any federal student aid funds received for which you were not entitled. You are not eligible to receive any federal student aid until you resolve your overpayment(s).
HWFICO23DWF-IC134 Header A 0030COMMENT 134 HN The National Student Loan Data System (NSLDS) indicates that you arein DEFAULT on one or more federal student loans and that you received one or more overpayments of federal student aid funds. You are not eligible to receive any federal student aid until these items have been resolved.
HWFICO23DWF-IC135 Header A 0030COMMENT 135 HN To resolve your defaulted or fraudulent federal student loan(s), contact the lender associated with the loan.
HWFICO23DWF-IC136 Header A 0030COMMENT 136 HN To resolve your defaulted or fraudulent federal student loan(s), contact the school associated with the loan.
HWFICO23DWF-IC137 Header A 0030COMMENT 137 HN You are currently in the process of applying for or have received a Total and Permanent Disability (TPD) discharge. If you are in the process of applying for a TPD discharge, receiving additional feder-al student aid may affect your eligibility for a TPD discharge. If you have already received a TPD discharge, you must meet additional eligibility requirements to receive further federal student aid. Depending on when you received a TPD discharge, receiving additionalfederal student aid may affect your ability to keep your discharge. Contact the financial aid office at your school for further infor- mation.
HWFICO23DWF-IC138 Header A 0030COMMENT 138 HN The National Student Loan Data System (NSLDS) found your reported Social Security Number (Item 8) on their database, but your name (Items 1 and 2) and date of birth (Item 9) did not match. Therefore, this SAR does not contain the financial aid history that is associated with your reported Social Security Number.
HWFICO23DWF-IC139 Header A 0030COMMENT 139 HN To resolve issues with your federal student loan(s), call the Perkins Loans Customer Service Center at 1-866-313-3797, or write to them at ECSI Federal Perkins Loan Servicer, P.O. Box 1079, Wexford, PA 15090.
HWFICO23DWF-IC140 Header A 0030COMMENT 140 HN According to Social Security Administration (SSA) records, the Social Security Number (SSN) that was provided in Item 8 belongs to a deceased person. If the SSN in Item 8 is correct, the applicant must contact the SSA at 1-800-772-1213 or https://socialsecurity.govto resolve this problem. If the SSN is incorrect, the applicant must correct the SSN on a paper SAR or submit a new FAFSA online with the correct SSN.
HWFICO23DWF-IC141 Header A 0030COMMENT 141 HN You changed either your response to citizenship (Item 14) or the Alien Registration Number (Item 15) that was verified with the Department of Homeland Security. Therefore, you must submit proof of your citizenship status to your financial aid office.
HWFICO23DWF-IC142 Header A 0030COMMENT 142 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security could not confirm that you are anoncitizen (Item 14) in an immigration status associated with the requirements of eligibility for the financial assistance for which you have applied because there is an issue with your Alien Registra-tion Number (Item 15). You must submit proof to your school that youare a noncitizen in the required immigration status. If you do not submit proof within 30 days, or longer if your school allows, you may not be eligible for federal student aid.
HWFICO23DWF-IC143 Header A 0030COMMENT 143 HN Your citizenship status has been confirmed by the Department of Homeland Security and you meet the citizenship requirements for federal student aid.
HWFICO23DWF-IC144 Header A 0030COMMENT 144 HN The United States Citizenship and Immigration Services (USCIS) of the Department of Homeland Security (DHS) has not yet confirmed yourstatus as a noncitizen (Item 14) in an immigration status associa- ted with the requirements of eligibility for the financial assist- ance for which you have applied. DHS will continue to check its records and we will notify you once we receive more information fromDHS.
HWFICO23DWF-IC145 Header A 0030COMMENT 145 HN According to Social Security Administration (SSA) records, the Social Security Number (SSN) that was reported in Item 8 belongs to a deceased person. If the SSN in Item 8 is correct, the applicant must contact the SSA at 1-800-772-1213 or https://socialsecurity.govto resolve this problem. If the SSN is incorrect, the applicant must correct the SSN on a paper SAR or submit a new FAFSA online with the correct SSN.
HWFICO23DWF-IC146 Header A 0030COMMENT 146 HN The Social Security Administration did not confirm that you are a U.S. citizen. Please provide your financial aid office with documentation of your U.S. citizenship (such as your U.S. Passport, Certificate of Naturalization or Birth Certificate). If the docu- ments support your status as a U.S. citizen, the financial aid office at your school will make a copy of your documentation and cancontinue to process your federal student aid. If you are an eligiblenoncitizen, you or your school must submit a correction to Item 14 to indicate that you are an eligible noncitizen and also provide your Alien Registration Number in Item 15. You and your school will receive a new SAR/ISIR within three processing days with DHS results
HWFICO23DWF-IC147 Header A 0030COMMENT 147 HN Comment 147 is not in use.
HWFICO23DWF-IC148 Header A 0030COMMENT 148 HN We assumed the number in college should be one (Item 73). Your parents should not be included in the number in college.
HWFICO23DWF-IC149 Header A 0030COMMENT 149 HN Based on the information we have on record for you, your EFC is _____. You may be eligible to receive a Federal Pell Grant and other federal student aid. Your school will use your EFC to determine your financial aid eligibility for federal grants, loans, and work study, and possible funding from your state and school.
HWFICO23DWF-IC150 Header A 0030COMMENT 150 HN You must provide asset information for you and your parent(s). Review Items 40 through 42 and Items 88 through 90 and make the necessary corrections.
HWFICO23DWF-IC151 Header A 0030COMMENT 151 HN You must provide your asset information. Review Items 40 through 42 and make the necessary corrections.
HWFICO23DWF-IC152 Header A 0030COMMENT 152 HN The amount you reported for your income tax is equal to or greater than the amount you reported for your adjusted gross income. Review Items 36 and 37 and make the necessary corrections.
HWFICO23DWF-IC153 Header A 0030COMMENT 153 HN The amount you reported for your income tax appears to be over the allowable amount based on what you reported for your adjusted gross income. Review Items 36 and 37 and make the necessary corrections.
HWFICO23DWF-IC154 Header A 0030COMMENT 154 HN The amount you reported for your parents' income tax appears to be over the allowable amount based on what you reported for their adjusted gross income. Review Items 84 and 85 and make the necessary corrections.
HWFICO23DWF-IC155 Header A 0030COMMENT 155 HN The amount you reported for your income tax appears to be over the allowable amount based on what you reported for your adjusted gross income. Review Items 36 and 37 and make the necessary corrections.
HWFICO23DWF-IC156 Header A 0030COMMENT 156 HN If your parents have now completed their 2020 tax return, you shouldcorrect your information to reflect the income and tax information reported on their tax return. You may either make corrections to your information online at https://fafsa.gov or by using this SAR. If you make corrections online and your parents filed a federal tax return with the IRS, they may be eligible to use the IRS Data Re- trieval Tool. With just a few simple steps your parents can transfer that information directly into your FAFSA. If your parents have not yet completed their tax return, you must correct this SAR to reflect the income and tax information reported on their tax return once it is filed.
HWFICO23DWF-IC157 Header A 0030COMMENT 157 HN If you have now completed your 2020 tax return, you should correct your information to reflect the income and tax information reported on your tax return. You may either make corrections to your informa-tion online at https://fafsa.gov or by using this SAR. If you make corrections online and you filed a federal tax return with the IRS, you may be eligible to use the IRS Data Retrieval Tool. With just a few simple steps you can view information from your tax return and transfer that information directly into your FAFSA. If you have not yet completed your tax return you must correct this SAR to reflect the income and tax information reported on your tax return once it is filed.
HWFICO23DWF-IC158 Header A 0030COMMENT 158 HN You are not eligible to receive a Federal Pell Grant because you reported that you have a bachelor's degree (Item 28) or you are working on a degree beyond a bachelor's degree (Item 47). Your Financial Aid Administrator will determine what types of federal student aid you are eligible to receive.
HWFICO23DWF-IC159 Header A 0030COMMENT 159 HN You MAY not be eligible to receive a Federal Pell Grant because you reported that you have a bachelor's degree (Item 28) or you are working on a degree beyond a bachelor's degree (Item 47). Your Financial Aid Administrator will determine what types of federal student aid you are eligible to receive.
HWFICO23DWF-IC160 Header A 0030COMMENT 160 HN You either did not sign your FAFSA or FAFSA correction, or the date that you provided indicates that you completed your FAFSA prior to October 1, 2021, or later than the date the FAFSA was received. You must sign and return this SAR before we can determine your eligibility for federal student aid.
HWFICO23DWF-IC161 Header A 0030COMMENT 161 HN We could not match your information with the Department of Veterans Affairs. Please provide your full name (Items 1 and 2) and/or date of birth (Item 9) for us to complete the match with the Department of Veterans Affairs.
HWFICO23DWF-IC162 Header A 0030COMMENT 162 HN The Department of Veterans Affairs did not confirm that you are or or will be a qualifying veteran for purposes of receiving federal student aid for the 2022-2023 school year. If you believe you are orwill be a qualifying veteran, contact your financial aid office and provide a copy of your DD214 (military separation form). If you are currently serving on active duty in the U.S. Armed Forces for pur- poses other than training, change your answer to Item 49 from "Yes" to "No" and answer "Yes" to Item 48. If you are not and will not be a veteran, you must change the answer to Item 49 from "Yes" to "No" and provide parental information, including the signature of at least one of your parents.
HWFICO23DWF-IC163 Header A 0030COMMENT 163 HN This SAR reflects your Financial Aid Administrator's determination of your status as a homeless youth.
HWFICO23DWF-IC164 Header A 0030COMMENT 164 HN You reported that your parent(s) did file or will file a 2020 income tax return (Item 79) but also reported that your father and your mother do not have a Social Security Number (Items 60 and 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC165 Header A 0030COMMENT 165 HN If you are or were in Foster Care, you may be eligible for assistance through federal programs for foster youth, such as the John H. Chafee Foster Care Independence Program and/or the Education and Training Voucher (ETV) Program. For more information contact your state ETV coordinator. The contact information is located here: https://childwelfare.gov/organizations/?CWIGFunction saction=rols:main.dspROL&rolType=Custom&RS_ID=38
HWFICO23DWF-IC166 Header A 0030COMMENT 166 HN You reported that you are or were in Foster Care. You may be eligible for assistance through federal programs for foster youth, such as the John H. Chafee Foster Care Independence Program and/or the Education and Training Voucher (ETV) Program. For more infor- mation contact your state ETV coordinator. The contact information is located here: https://childwelfare.gov/organizations/?CWIGFunction saction=rols:main.dspROL&rolType=Custom&RS_ID=38
HWFICO23DWF-IC167 Header A 0030COMMENT 167 HN Comment 167 is not in use.
HWFICO23DWF-IC168 Header A 0030COMMENT 168 HN You must provide answers for your parents' marital status and number of family members in Items 58 and 72.
HWFICO23DWF-IC169 Header A 0030COMMENT 169 HN You must provide answers for your marital status and number of family members in Items 16 and 93.
HWFICO23DWF-IC170 Header A 0030COMMENT 170 HN Your FAFSA has been selected for a review process called verification. Your school has the authority to request copies of certain financial documents from you and your parent(s).
HWFICO23DWF-IC171 Header A 0030COMMENT 171 HN Your FAFSA has been selected for a review process called verification. Your school has the authority to request copies of certain financial documents from you (and your spouse).
HWFICO23DWF-IC172 Header A 0030COMMENT 172 HN This SAR was produced because we processed a change to your information based on information reported to us by another agency or as a result of a processing system change. Please review your SAR to see what effect, if any, this change has had on your application, and call 1-800-4-FED-AID (1-800-433-3243) if you have any questions.
HWFICO23DWF-IC173 Header A 0030COMMENT 173 HN The Department of Veterans Affairs (VA) did not confirm that you areor will be a qualifying veteran for purposes of receiving federal student aid for the 2022-2023 school year. If you believe you are orwill be a qualifying veteran, contact your financial aid office and provide a copy of your DD214 (military separation form). If you are currently serving on active duty in the U.S. Armed Forces for pur- poses other than training, change your answer to Item 49 from "Yes" to "No" and answer "Yes" to Item 48. If you are not and will not be a veteran, you must change the answer to Item 49 from "Yes" to "No" and provide parental information, including the signature of at least one of your parents.
HWFICO23DWF-IC174 Header A 0030COMMENT 174 HN We did not process your request to add another school code to your application because the Financial Aid Administrator at your previous school updated your application based on professional judgment. Please contact the financial aid office at your new school for assistance.
HWFICO23DWF-IC175 Header A 0030COMMENT 175 HN You reported that you are married and have dependents other than a spouse, but you also reported that your number of family members is 2. These answers are inconsistent. Review Items 16, 51, and 93 and make the necessary corrections.
HWFICO23DWF-IC176 Header A 0030COMMENT 176 HN You reported that you do not have children or other legal dependents, but you also reported that your number of family membersis greater than 2. These answers are inconsistent. Review Items 50, 51, and 93 and make the necessary corrections.
HWFICO23DWF-IC177 Header A 0030COMMENT 177 HN You reported that you are not married and do not have children or other legal dependents, but you also reported that your number of family members is 2. These answers are inconsistent. Review Items 16, 50, 51, and 93 and make the necessary corrections.
HWFICO23DWF-IC178 Header A 0030COMMENT 178 HN Review the number of family members you have reported in Item 72 and either confirm your answer by reentering it or make the necessary correction.
HWFICO23DWF-IC179 Header A 0030COMMENT 179 HN Review the number of family members you have reported in Item 93 and either confirm your answer by reentering it or make the necessary correction.
HWFICO23DWF-IC180 Header A 0030COMMENT 180 HN The Department of Veterans Affairs (VA) did not confirm that you areor will be a qualifying veteran for purposes of receiving federal student aid for the 2022-2023 school year. If you believe you are orwill be a qualifying veteran, contact your financial aid office and provide a copy of your DD214 (military separation form). If you are currently serving on active duty in the U.S. Armed Forces for pur- poses other than training, change your answer to Item 49 from "Yes" to "No" and answer "Yes" to Item 48. If you are not and will not be a veteran, you must change the answer to Item 49 from "Yes" to "No" and provide parental information, including the signature of at least one of your parents.
HWFICO23DWF-IC181 Header A 0030COMMENT 181 HN Commen 181 is not in use.
HWFICO23DWF-IC182 Header A 0030COMMENT 182 HN Comment 182 is not in use.
HWFICO23DWF-IC183 Header A 0030COMMENT 183 HN Comment 183 is not in use.
HWFICO23DWF-IC184 Header A 0030COMMENT 184 HN Comment 184 is not in use.
HWFICO23DWF-IC185 Header A 0030COMMENT 185 HN Comment 185 is not in use.
HWFICO23DWF-IC186 Header A 0030COMMENT 186 HN Comment 186 is not in use.
HWFICO23DWF-IC187 Header A 0030COMMENT 187 HN Comment 187 is not in use.
HWFICO23DWF-IC188 Header A 0030COMMENT 188 HN Comment 188 is not in use.
HWFICO23DWF-IC189 Header A 0030COMMENT 189 HN Comment 189 is not in use.
HWFICO23DWF-IC190 Header A 0030COMMENT 190 HN Educational Credit Management Corporation - CA 1-888-221-3262 or 651-221-0566 (GA 706)
HWFICO23DWF-IC191 Header A 0030COMMENT 191 HN College Assist, 1-800-333-2858 or 1-800-727-9834 (GA 708)
HWFICO23DWF-IC192 Header A 0030COMMENT 192 HN Comment 192 is not in use.
HWFICO23DWF-IC193 Header A 0030COMMENT 193 HN Comment 193 is not in use.
HWFICO23DWF-IC194 Header A 0030COMMENT 194 HN Comment 194 is not in use.
HWFICO23DWF-IC195 Header A 0030COMMENT 195 HN Florida Department of Education, Defaulted Borrowers Assistance, 1-800-366-3475 (GA 712)
HWFICO23DWF-IC196 Header A 0030COMMENT 196 HN Georgia Student Finance Commission, Collections, 1-800-505-4732 (GA 713)
HWFICO23DWF-IC197 Header A 0030COMMENT 197 HN Comment 197 is not in use.
HWFICO23DWF-IC198 Header A 0030COMMENT 198 HN Illinois Student Assistance Commission, Claims and Collections, 1-800-899-4722 or 847-948-8500 (GA 717)
HWFICO23DWF-IC199 Header A 0030COMMENT 199 HN Comment 199 is not in use.
HWFICO23DWF-IC200 Header A 0030COMMENT 200 HN Comment 200 is not in use.
HWFICO23DWF-IC201 Header A 0030COMMENT 201 HN Kentucky Higher Education Assistance Authority, Collections Office, 1-800-928-8926 or 1-800-928-4241 (GA 721)
HWFICO23DWF-IC202 Header A 0030COMMENT 202 HN Louisiana Office of Student Financial Assistance, 1-888-272-5543 or 1-800-331-2314 (GA 722)
HWFICO23DWF-IC203 Header A 0030COMMENT 203 HN Finance Authority of Maine, 1-800-331-2314 or 1-888-272-5543 (GA 723)
HWFICO23DWF-IC204 Header A 0030COMMENT 204 HN Comment 204 is not in use.
HWFICO23DWF-IC205 Header A 0030COMMENT 205 HN American Student Assistance, Collections, 1-800-999-9080 (GA 725)
HWFICO23DWF-IC206 Header A 0030COMMENT 206 HN Michigan Higher Education Assistance Authority, Collections, 1-800-642-5626 (GA 726)
HWFICO23DWF-IC207 Header A 0030COMMENT 207 HN Comment 207 is not in use.
HWFICO23DWF-IC208 Header A 0030COMMENT 208 HN Comment 208 is not in use.
HWFICO23DWF-IC209 Header A 0030COMMENT 209 HN Missouri Department of Higher Education, 1-800-473-6757 (GA 729)
HWFICO23DWF-IC210 Header A 0030COMMENT 210 HN Montana Guaranteed Student Loan Program, Claims Management, 1-800-537-7508 or 1-800-322-3086 (GA 730)
HWFICO23DWF-IC211 Header A 0030COMMENT 211 HN National Student Loan Program (NSLP), Collection Office 1-800-735-8778, Ext. 6380 (GA 731)
HWFICO23DWF-IC212 Header A 0030COMMENT 212 HN Comment 212 is not in use.
HWFICO23DWF-IC213 Header A 0030COMMENT 213 HN New Hampshire Higher Education Assistance Foundation, Claims Section, 603-225-6612, Ext. 6004 (GA 733)
HWFICO23DWF-IC214 Header A 0030COMMENT 214 HN New Jersey Higher Education Assistance Authority, 1-800-792-8670 (GA 734)
HWFICO23DWF-IC215 Header A 0030COMMENT 215 HN New Mexico Student Loan Guarantee Corporation, 505-761-2366 or 505-345-8821, ext. 1361 (GA 735)
HWFICO23DWF-IC216 Header A 0030COMMENT 216 HN New York State Higher Education Services Corporation, Office of Default, 1-866-944-4372 or 1-888-697-4372. (GA 736)
HWFICO23DWF-IC217 Header A 0030COMMENT 217 HN North Carolina State Education Assistance Authority, Collections, 1-800-544-1644 (GA 737)
HWFICO23DWF-IC218 Header A 0030COMMENT 218 HN North Dakota Post Claims Collections, 701-328-5707 (GA 738)
HWFICO23DWF-IC219 Header A 0030COMMENT 219 HN Comment 219 is not in use.
HWFICO23DWF-IC220 Header A 0030COMMENT 220 HN Oklahoma College Assistance Program, Collection Office, 1-800-331-2314 or 1-800-442-8642 (GA 740)
HWFICO23DWF-IC221 Header A 0030COMMENT 221 HN Comment 221 is not in use.
HWFICO23DWF-IC222 Header A 0030COMMENT 222 HN Pennsylvania Higher Education Assistance Agency, 1-800-233-0751 (GA 742)
HWFICO23DWF-IC223 Header A 0030COMMENT 223 HN Rhode Island Higher Education Assistance Authority, 1-800-331-2314 (GA 744)
HWFICO23DWF-IC224 Header A 0030COMMENT 224 HN South Carolina State Education Assistance Authority, Collections, 803-798-7960 (GA 745)
HWFICO23DWF-IC225 Header A 0030COMMENT 225 HN Comment 225 is not in use.
HWFICO23DWF-IC226 Header A 0030COMMENT 226 HN Tennessee Student Assistance Corporation, BTI Services, 1-800-342-1663 or 615-741-1346 (GA 747)
HWFICO23DWF-IC227 Header A 0030COMMENT 227 HN Texas Guaranteed Student Loan Corp., Collections, 1-800-845-6267 (GA 748)
HWFICO23DWF-IC228 Header A 0030COMMENT 228 HN Utah Higher Education Assistance Authority, 801-366-8411 or 1-800-418-8757 (GA 749)
HWFICO23DWF-IC229 Header A 0030COMMENT 229 HN Vermont Student Assistance Corp., 1-800-642-3177 or 802-655-9602 (GA 750)
HWFICO23DWF-IC230 Header A 0030COMMENT 230 HN Comment 230 is not in use.
HWFICO23DWF-IC231 Header A 0030COMMENT 231 HN Northwest Education Loan Association, Collection Office, 1-888-272-5543 (GA 753)
HWFICO23DWF-IC232 Header A 0030COMMENT 232 HN Great Lakes Higher Education Corporation, 1-800-354-6980 or 1-888-686-6919 (GA 755)
HWFICO23DWF-IC233 Header A 0030COMMENT 233 HN Comment 233 is not in use.
HWFICO23DWF-IC234 Header A 0030COMMENT 234 HN Comment 234 is not in use.
HWFICO23DWF-IC235 Header A 0030COMMENT 235 HN United Student Aid Funds, Post Claims Assistance, 1-800-331-2314 (GA 800)
HWFICO23DWF-IC236 Header A 0030COMMENT 236 HN Comment 236 is not in use.
HWFICO23DWF-IC237 Header A 0030COMMENT 237 HN Comment 237 is not in use.
HWFICO23DWF-IC238 Header A 0030COMMENT 238 HN Educational Credit Management Corporation, 1-888-221-3262 (GA 927)
HWFICO23DWF-IC239 Header A 0030COMMENT 239 HN Educational Credit Management Corporation, 1-888-221-3262 (GA 951)
HWFICO23DWF-IC240 Header A 0030COMMENT 240 HN Comment 240 is not in use.
HWFICO23DWF-IC241 Header A 0030COMMENT 241 HN Comment 241 is not in use.
HWFICO23DWF-IC242 Header A 0030COMMENT 242 HN Comment 242 is not in use.
HWFICO23DWF-IC243 Header A 0030COMMENT 243 HN Comment 243 is not in use.
HWFICO23DWF-IC244 Header A 0030COMMENT 244 HN Comment 244 is not in use.
HWFICO23DWF-IC245 Header A 0030COMMENT 245 HN Comment 245 is not in use for this aid year.
HWFICO23DWF-IC246 Header A 0030COMMENT 246 HN Comment 246 is not in use.
HWFICO23DWF-IC247 Header A 0030COMMENT 247 HN The National Student Loan Data System (NSLDS) indicates that one or more of your federal student loans have been discharged based on a determination by the Department of Veterans Affairs that you are unemployable due to a service-connected disability. If you have questions, contact the financial aid office at your school.
HWFICO23DWF-IC248 Header A 0030COMMENT 248 HN Direct Loan Servicing Center (ACS), Greenville, TX, 1-855-554-0052 (ED Servicer 583)
HWFICO23DWF-IC249 Header A 0030COMMENT 249 HN Comment 249 is not in use.
HWFICO23DWF-IC250 Header A 0030COMMENT 250 HN Comment 250 is not in use.
HWFICO23DWF-IC251 Header A 0030COMMENT 251 HN Call the U.S. Department of Education at 1-800-621-3115, or write tothe U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609. (EDR 04)
HWFICO23DWF-IC252 Header A 0030COMMENT 252 HN Call the U.S. Department of Education at 1-800-621-3115, or write tothe U.S. Department of Education, P.O. 5609, Greenville, Texas 75403-5609. (EDR 05)
HWFICO23DWF-IC253 Header A 0030COMMENT 253 HN Call the U.S. Department of Education at 1-800-621-3115, or write tothe U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609. (EDR 09)
HWFICO23DWF-IC254 Header A 0030COMMENT 254 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received subsidized student loans in excess of loan limits established for the federal loan programs. You should review the information on Page 4.
HWFICO23DWF-IC255 Header A 0030COMMENT 255 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received a total amount of undergraduate student loans that exceeds the loan limits established for the federal loan programs. You should review the information on Page 4.
HWFICO23DWF-IC256 Header A 0030COMMENT 256 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received a total amount of student loans (graduate and undergraduate) that exceeds the loan limits established for the federal loan programs. You should review the information on Page 4.
HWFICO23DWF-IC257 Header A 0030COMMENT 257 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received a total amount of student loans (graduate and undergraduate) that is close to or equal to the loan limits estab- lished for the federal loan programs. Therefore, your eligibility for additional student loans may be limited. You should review the information on Page 4.
HWFICO23DWF-IC258 Header A 0030COMMENT 258 HN Based upon data provided by the National Student Loan Data System NSLDS) and your grade level, we have determined that you may have received a total amount of undergraduate student loans that is closeto or equal to the loan limits established for the federal loan pro-grams. Therefore, your eligibility for additional student loans may be limited. You should review the information on Page 4.
HWFICO23DWF-IC259 Header A 0030COMMENT 259 HN The National Student Loan Data System (NSLDS) indicates you have oneor more student loans in a status associated with identity theft. Before you can receive additional federal student loans, you must contact the financial aid office at your school.
HWFICO23DWF-IC260 Header A 0030COMMENT 260 HN Based upon data provided by the National Student Loan Data System (NSLDS), your grade level, and your dependency status, we have determined that you may have received student loans in excess of loan limits established for the federal loan programs. You should review the information on Page 4.
HWFICO23DWF-IC261 Header A 0030COMMENT 261 HN Comment 261 is not in use.
HWFICO23DWF-IC262 Header A 0030COMMENT 262 HN Comment 262 is not in use.
HWFICO23DWF-IC263 Header A 0030COMMENT 263 HN Comment 263 is not in use.
HWFICO23DWF-IC264 Header A 0030COMMENT 264 HN Comment 264 is not in use.
HWFICO23DWF-IC265 Header A 0030COMMENT 265 HN Comment 265 is not in use.
HWFICO23DWF-IC266 Header A 0030COMMENT 266 HN Comment 266 is not in use.
HWFICO23DWF-IC267 Header A 0030COMMENT 267 HN There is a limit to the total amount of subsidized Federal student loans that you may receive. Please visit https://StudentAid.gov andselect Types of Aid/Loans for more information.
HWFICO23DWF-IC268 Header A 0030COMMENT 268 HN Comment 268 is not in use.
HWFICO23DWF-IC269 Header A 0030COMMENT 269 HN Comment 269 is not in use.
HWFICO23DWF-IC270 Header A 0030COMMENT 270 HN Comment 270 is not in use.
HWFICO23DWF-IC271 Header A 0030COMMENT 271 HN Comment 271 is not in use.
HWFICO23DWF-IC272 Header A 0030COMMENT 272 HN The National Student Loan Data System (NSLDS) indicates that you have one or more student loans that may have been obtained fraudulently. You are not eligible to receive any federal student aid until this issue is resolved.
HWFICO23DWF-IC273 Header A 0030COMMENT 273 HN You changed the answer to your parents' income or income taxes paid.If your parents have completed their 2020 tax return, you should also change the answer to the tax return question (Item 79) to indicate their tax return has been completed. You may make corrections online at https://fafsa.gov and if your parents filed a federal tax return with the IRS, they may be eligible to usethe IRS Data Retrieval Tool, which is the best and easiest way to provide accurate tax information. With just a few simple steps, yourparents transfer that information directly into your FAFSA.
HWFICO23DWF-IC274 Header A 0030COMMENT 274 HN You changed the answer to your income or income taxes paid. If you have completed your 2020 tax return, you should also change the answer to the tax return question (Item 32) to indicate your tax return has been completed. You may make correc- tions online at https://fafsa.gov and if you filed a federal tax return with the IRS, you may be eligible to use the IRS Data Retrieval Tool, which is the best and easiest way to provide accurate tax information. With just a few simple steps, you can transfer that information directly into your FAFSA.
HWFICO23DWF-IC275 Header A 0030COMMENT 275 HN Your identity has been verified by the Social Security Administra- tion. You can now use your FSA ID to make corrections, add school codes, view your federal student loan history, electronically sign your Federal Direct Loan Master Promissory Note, and more. Do not share your FSA ID with anyone. For more information about your FSA ID, visit https://StudentAid.gov/FSAID.
HWFICO23DWF-IC276 Header A 0030COMMENT 276 HN You were issued a Federal Student Aid PIN to sign your 2022-2023 FAFSA. We were unable to verify your name, date of birth, and/or Social Security Number (SSN) with the Social Security Administration(SSA). Therefore, your PIN has been deactivated. Follow the instructions below to resolve your problem with the SSA.
HWFICO23DWF-IC277 Header A 0030COMMENT 277 HN Your parent's identity has been verified by the Social Security Administration. Your parent can now use his or her FSA ID with all Federal Student Aid systems that require it. Your parent should not share his or her FSA ID with anyone, including you. For more information about the FSA ID, your parent can visit https://StudentAid.gov/FSAID
HWFICO23DWF-IC278 Header A 0030COMMENT 278 HN Your parent was issued a Federal Student Aid PIN to sign your 2022- 2023 FAFSA. We were unable to verify your parent's name, date of birth and/or Social Security Number (SSN) with the Social Security -Administration (SSA). Therefore, the PIN has been deactivated. Follow the instructions below to resolve your parent's problem with the SSA.
HWFICO23DWF-IC279 Header A 0030COMMENT 279 HN Your parent's identity has been verified by the Social Security Administration. Your parent can now use his or her FSA ID with all Federal Student Aid systems that require it. Your parent should not share his or her FSA ID with anyone, including you. For more information about the FSA ID, your parent can visit https://StudentAid.gov/FSAID
HWFICO23DWF-IC280 Header A 0030COMMENT 280 HN Your parent was issued a Federal Student Aid PIN to sign your 2022- 2023 FAFSA. We were unable to verify your parent's name, date of birth or Social Security Number (SSN) with the Social Security Ad- ministration (SSA). Therefore, the PIN has been deactivated. Fol- low the instructions below to resolve your parent's problem with theSSA.
HWFICO23DWF-IC281 Header A 0030COMMENT 281 HN We cannot process your FAFSA because of issues related to your eligibility. Contact Federal Stuent Aid at 202-377-4074 for assistance within 30 days from the date of this letter.
HWFICO23DWF-IC282 Header A 0030COMMENT 282 HN You are currently in the process of applying for or have received a Total and Permanent Disability (TPD) Discharge. If you are in theprocess of applying for a TPD discharge, receiving additional fed- eral student aid may affect your eligibility for a TPD discharge. If you have already received a TPD discharge, you must meet addi- tional eligibility requirements to receive further federal student aid. Dependidng on when you received a TPD discharge, receiving additional federal student aid may affect your ability to keep your discharge. Contact the financial aid office at your school for further information.
HWFICO23DWF-IC283 Header A 0030COMMENT 283 HN Issues related to your FAFSA have been resolved and processing of your FAFSA may continue.
HWFICO23DWF-IC284 Header A 0030COMMENT 284 HN This SAR reflects your Financial Aid Administrator's decision to consider you an independent student.
HWFICO23DWF-IC285 Header A 0030COMMENT 285 HN Since you filed your FAFSA over the telephone, you must sign and return this SAR before we can determine your eligibility for federalstudent aid.
HWFICO23DWF-IC286 Header A 0030COMMENT 286 HN We assumed the total amount for your parents' income deductions to be zero in order to calculate your eligibility for federal student aid because the amounts you reported in Items 91a through 91f are high, based on the other income amounts you reported. If our assumption is correct, no further action is required. If it is incorrect, you need to confirm your answers or make the necessary corrections to Items 91a through 91f.
HWFICO23DWF-IC287 Header A 0030COMMENT 287 HN We assumed the total amount for your income deductions to be zero inorder to calculate your eligibility for federal student aid because the amounts you reported in Items 43a through 43f are high, based onthe other income amounts you reported. If our assumption is correct,no further action is required. If it is incorrect, you need to confirm your answers or make the necessary corrections to Items 43a through 43f.
HWFICO23DWF-IC288 Header A 0030COMMENT 288 HN We assumed the total amount for your income deductions to be zero inorder to calculate your eligibility for federal student aid because the amounts you reported in Items 43a through 43f are high, based onthe other income amounts you reported. If our assumption is correct,no further action is required. If it is incorrect, you need to confirm your answers or make the necessary corrections to Items 43a through 43f.
HWFICO23DWF-IC289 Header A 0030COMMENT 289 HN To resolve your TEACH Grant overpayment, your Financial Aid Administrator must contact the school associated with the TEACH Grant overpayment.
HWFICO23DWF-IC290 Header A 0030COMMENT 290 HN To resolve your TEACH Grant overpayment, call the U.S. Department ofEducation at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC291 Header A 0030COMMENT 291 HN To resolve your TEACH Grant overpayment, call the U.S. Department ofEducation at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC292 Header A 0030COMMENT 292 HN To resolve your TEACH Grant overpayment, call the U.S. Department ofEducation at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC293 Header A 0030COMMENT 293 HN To resolve your TEACH Grant overpayment, your Financial Aid Administrator must access NSLDS for additional TEACH Grant overpayment information.
HWFICO23DWF-IC294 Header A 0030COMMENT 294 HN To resolve your TEACH Grant overpayment, your Financial Aid Administrator must access NSLDS for additional TEACH Grant overpayment information.
HWFICO23DWF-IC295 Header A 0030COMMENT 295 HN You did not report information about your parents on your FAFSA and will see comments and highlighted fields on your SAR regarding the missing information. You indicated you have a circumstance that requires you to follow up with your Financial Aid Administrator before your eligibility for federal student aid can be determined.
HWFICO23DWF-IC296 Header A 0030COMMENT 296 HN This SAR reflects the parental data that you have added to your FAFSA.
HWFICO23DWF-IC297 Header A 0030COMMENT 297 HN Comment 297 is not in use.
HWFICO23DWF-IC298 Header A 0030COMMENT 298 HN This SAR has been produced due to a possible change in your eligibility for federal student aid. Please contact your financial aid office for more information.
HWFICO23DWF-IC299 Header A 0030COMMENT 299 HN You did not report information about your parents on your FAFSA because you indicated you are homeless or at risk of homelessness. You will see comments and highlighted fields on your SAR regarding the missing information. You are required to follow up with your Financial Aid Administrator before your eligibility for federal student aid can be determined.
HWFICO23DWF-IC300 Header A 0030COMMENT 300 HN You did not report information about your parents on your FAFSA because you indicated you are only applying for an unsubsidized student loan. You will see comments and highlighted fields on your SAR regarding the missing information and are required to follow up with your Financial Aid Administrator before your eligibility for federal student aid can be determined.
HWFICO23DWF-IC301 Header A 0030COMMENT 301 HN You did not report whether or not you will have your first bachelor's degree by July 1, 2022 (Item 28). You need to provide an answer for this item.
HWFICO23DWF-IC302 Header A 0030COMMENT 302 HN You have changed your marital status in Item 16 or your marital status date in Item 17 to a new response. The answer to these questions must be your marital status as of the date you signed and submitted your FAFSA. If your answers do not reflect your status as of the date you submitted your FAFSA, you need to make a correction to one or both of these items.
HWFICO23DWF-IC303 Header A 0030COMMENT 303 HN Department of Education/ACS, 1-800-835-4611 or 1-800-826-4470 (GA 577)
HWFICO23DWF-IC304 Header A 0030COMMENT 304 HN Department of Education/NAVIENT, 1-800-722-1300 (ED Servicer 578)
HWFICO23DWF-IC305 Header A 0030COMMENT 305 HN Department of Education/FEDLOAN Servicing (PHEAA), 1-800-699-2908 (ED Servicer 579)
HWFICO23DWF-IC306 Header A 0030COMMENT 306 HN Department of Education/NELNET, 1-888-486-4722 (ED Servicer 580)
HWFICO23DWF-IC307 Header A 0030COMMENT 307 HN Department of Education/GREAT LAKES, 1-800-236-4300 (ED Servier 581)
HWFICO23DWF-IC308 Header A 0030COMMENT 308 HN You have changed your parents' marital status in Item 58 or your parents' marital status date in Item 59 to a new response. The answer to these questions must be your parents' marital status as ofthe date you signed and submitted your FAFSA. Unless a Financial AidAdministrator has instructed you to update this information, you need to make a correction to one or both of these items if your answers do not reflect your parents' status as of the date you submitted your FAFSA.
HWFICO23DWF-IC309 Header A 0030COMMENT 309 HN To resolve your Iraq/Afghanistan Service Grant overpayment, your Financial Aid Administrator must contact the school associated with the Iraq/Afghanistan Service Grant overpayment.
HWFICO23DWF-IC310 Header A 0030COMMENT 310 HN To resolve your Iraq/Afghanistan Service Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC311 Header A 0030COMMENT 311 HN To resolve your Iraq/Afghanistan Service Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC312 Header A 0030COMMENT 312 HN To resolve your Iraq/Afghanistan Service Grant overpayment, call the U.S. Department of Education at 1-800-621-3115, or write to the U.S. Department of Education, P.O. Box 5609, Greenville, Texas 75403-5609.
HWFICO23DWF-IC313 Header A 0030COMMENT 313 HN To resolve your Iraq/Afghanistan Service Grant overpayments your Financial Aid Administrator must access NSLDS for Iraq/Afghanistan Service Grant overpayment information.
HWFICO23DWF-IC314 Header A 0030COMMENT 314 HN To resolve your Iraq/Afghanistan Service Grant overpayment, your Financial Aid Administrator must access NSLDS for Iraq/Afghanistan Service Grant overpayment information.
HWFICO23DWF-IC315 Header A 0030COMMENT 315 HN DEPT OF ED/MOHELA 1-888-866-4352 (ED Servicer 500)
HWFICO23DWF-IC316 Header A 0030COMMENT 316 HN HESC/EDFinancial, 1-855-337-6884 (ED Servicer 501)
HWFICO23DWF-IC317 Header A 0030COMMENT 317 HN DEPT OF ED/CORNERSTONE -- UHEAA Cornerstone 1-800-663-1662 (ED Servicer 502)
HWFICO23DWF-IC318 Header A 0030COMMENT 318 HN Aspire Resources, 1-855-475-3335 (ED Servicer 503)
HWFICO23DWF-IC319 Header A 0030COMMENT 319 HN DEPT OF ED/GRANITE STATE -- GSMR -- NH, 1-888-556-0022 (ED Servicer 504)
HWFICO23DWF-IC320 Header A 0030COMMENT 320 HN Comment 320 is not in use.
HWFICO23DWF-IC321 Header A 0030COMMENT 321 HN DEPT OF ED/OSLA SERVICING, 1-866-264-9762 (ED Servicer 506)
HWFICO23DWF-IC322 Header A 0030COMMENT 322 HN Comment 322 is not in use.
HWFICO23DWF-IC323 Header A 0030COMMENT 323 HN Comment 323 is not in use.
HWFICO23DWF-IC324 Header A 0030COMMENT 324 HN Comment 324 is not in use.
HWFICO23DWF-IC325 Header A 0030COMMENT 325 HN Comment 325 is not in use.
HWFICO23DWF-IC326 Header A 0030COMMENT 326 HN DEPT OF ED/VSAC SERVICING, 1-888-932-5626 (ED Servicer 511)
HWFICO23DWF-IC327 Header 0000COMMENT 327 HN
HWFICO23DWF-IC340 Header 0000COMMENT 340 HN
HWFICO23DWF-IC343 Header 0000COMMENT 343 HN
HWFICO23DWF-IC344 Header A 0030COMMENT 344 HN DEPT OF ED/ECSI FEDERAL PERKINS SERVICER, 1-866-313-3797 (ED Servicer 529)
HWFICO23DWF-IC345 Header A 0030COMMENT 345 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between four and five school years.
HWFICO23DWF-IC346 Header A 0030COMMENT 346 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received a total amount of Pell Grants that is close to the cumulative total you can receive. Therefore, your eligibility for additional Pell Grants may be limited.
HWFICO23DWF-IC347 Header A 0030COMMENT 347 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you may have received a total amount of Pell Grants that equals or exceeds the cumulative total you can receive.
HWFICO23DWF-IC348 Header A 0030COMMENT 348 HN Based on information from NSLDS, the total amount of Federal Pell Grants that you have received has changed, which may affect your eligibility for additional Pell Grants.
HWFICO23DWF-IC349 Header A 0030COMMENT 349 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Once a total amount of Pell Grant eligibility has been received, a student can no longer receive Pell Grant aid.
HWFICO23DWF-IC350 Header A 0030COMMENT 350 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of up to one half of a school year.
HWFICO23DWF-IC351 Header A 0030COMMENT 351 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between one half and one school year.
HWFICO23DWF-IC352 Header A 0030COMMENT 352 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between one and one and one-half school years.
HWFICO23DWF-IC353 Header A 0030COMMENT 353 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between one and one-half and two school years.
HWFICO23DWF-IC354 Header A 0030COMMENT 354 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between two and two and one-half school years.
HWFICO23DWF-IC355 Header A 0030COMMENT 355 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between two and one-half and three school years.
HWFICO23DWF-IC356 Header A 0030COMMENT 356 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between three and three and one-half school years.
HWFICO23DWF-IC357 Header A 0030COMMENT 357 HN There is a limit to the total amount of Federal Pell Grants that a student may receive, which is the equivalent of 6 school years. Based on information reported to the National Student Loan Data System (NSLDS) by the schools you have attended, you have received Pell Grants for the equivalent of between three and one-half and four school years.
HWFICO23DWF-IC358 Header A 0030COMMENT 358 HN Comment 358 is not in use.
HWFICO23DWF-IC359 Header A 0030COMMENT 359 HN Your school may request additional information to determine your eligibility for federal student aid.
HWFICO23DWF-IC360 Header A 0030COMMENT 360 HN Based on data provided by the National Student Loan Data System (NSLDS), your school will request additional information to determine your eligibility for federal student aid and before disbursement of funds can be made.
HWFICO23DWF-IC361 Header A 0030COMMENT 361 HN The parents' marital status you reported in Item 58 does not appear to agree with the parents' tax return filing status reported in Item82. If one of these items is incorrect, you need to make a correc- tion. If the information you reported is correct, make sure the income information reported in Items 84 through 87, 91 and 92 cor- rectly reflects your parents' 2020 income.
HWFICO23DWF-IC362 Header A 0030COMMENT 362 HN The parents' marital status you reported in Item 58 does not appear to agree with the parents' tax return filing status reported in Item81. If one of these items is incorrect, you need to make a correction.
HWFICO23DWF-IC363 Header A 0030COMMENT 363 HN You reported that your parents' marital status is widowed. Review items 84 through 87, 91 and 92 to make sure the income information reported does not include your parent's spouse's 2020 income.
HWFICO23DWF-IC364 Header A 0030COMMENT 364 HN You reported that your parents' marital status is married and also reported that your parents' tax return filing status was qualifying widow(er). Please review items 84 through 87, 91 and 92 to make sure the income information reported correctly reflects your parents' 2020 income.
HWFICO23DWF-IC365 Header A 0030COMMENT 365 HN Your marital status you reported in Item 16 does not appear to agreewith your tax return filing status reported in Item 34. If one of these items is incorrect, you need to make a correction. If the information you reported is correct, make sure the income informa- tion reported in Items 36 through 39, 43 and 44 correctly reflects your 2020 income.
HWFICO23DWF-IC366 Header A 0030COMMENT 366 HN Your marital status you reported in Item 16 does not appear to agreewith your tax return filing status reported in Item 34. If one of these items is incorrect, you need to make a correction.
HWFICO23DWF-IC367 Header A 0030COMMENT 367 HN Your marital status you reported in Item 16 does not appear to agreewith your tax return filing status reported in Item 34. If the in- formation you reported is correct, make sure the income information reported in Items 36 through 39, 43 and 44 correctly reflects your 2020 income.
HWFICO23DWF-IC368 Header A 0030COMMENT 368 HN You reported that your marital status is married and also reported that your tax return filing status was qualifying widow(er). Please review items 36 through 39, 43 and 44 to make sure the income information reported correctly reflects your 2020 income.
HWFICO23DWF-IC369 Header A 0030COMMENT 369 HN The Social Security Administration (SSA) did not confirm the Social Security Number (SSN) you reported for your first parent in Item 60.If you believe the SSN you reported is correct, your parent must contact the SSA. The SSA can be contacted by calling 1-800-772-1213or by visiting https://socialsecurity.gov. If the SSN is incorrect, you must make the necessary correction.
HWFICO23DWF-IC370 Header A 0030COMMENT 370 HN The Social Security Administration (SSA) did not confirm the Social Security Number (SSN) you reported for your second parent in Item 65. If you believe that the SSN you reported is correct, your par- ent must contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSN is incorrect, you must make the necessary correction.
HWFICO23DWF-IC371 Header A 0030COMMENT 371 HN The Social Security Administration (SSA) confirmed the Social Sec- urity Number (SSN) you reported for your second parent on your FAFSA, but did not confirm the SSN you reported for your first par- ent (Item 60). If you believe that the SSN you reported for your first parent is correct, your parent should contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSN is incorrect, you need to make the necessary correction.
HWFICO23DWF-IC372 Header A 0030COMMENT 372 HN The Social Security Administration (SSA) confirmed the Social Sec- urity Number (SSN) you reported for your first parent on your FAFSA,but did not confirm the SSN you reported for your second parent (Item 64). If you believe that the SSN you reported for your secondparent is correct, your parent should contact the SSA. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov. If the SSN is incorrect, you need to make the necessary correction.
HWFICO23DWF-IC373 Header A 0030COMMENT 373 HN Your first parent's date of birth as reported on your FAFSA does notmatch the date of birth in the Social Security Administration's (SSA) records for your first parent's Social Security Number (SSN). Therefore, you must correct your first parent's SSN (Item 60) or date of birth (Item 63). If your parent's date of birth is correct,you must confirm it by re-entering it in Item 63. If you confirm your parent's date of birth, your parent should also contact the SSAto make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC374 Header A 0300COMMENT 374 HN We previously indicated that your first parent's date of birth in Item 63 does not match the date of birth in the Social Security Ad- ministration's (SSA) records for your first parent's Social SecurityNumber (SSN). If your first parent's SSN (Item 60) or date of birthis incorrect, you need to make a correction. If your parent's SSN and date of birth are correct, your parent should contact the SSA tomake sure they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC375 Header A 0030COMMENT 375 HN Your second parent's date of birth as reported on your FAFSA does not match the date of birth in the Social Security Administration's (SSA) records for your second parent's Social Security Number (SSN).Therefore, you must correct your second parent's SSN (Item 64) or date of birth (Item 67). If your parent's date of birth is correct,you must confirm it by re-entering it in Item 67. If you confirm your parent's date of birth, your parent should also contact the SSAto make sure they correct it in their records. The SSA can be con- tacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC376 Header A 0030COMMENT 376 HN We previously indicated that your second parent's date of birth in Item 67 does not match the date of birth in the Social Security Administration's (SSA) records for your second parent's Social Security Number (SSN). If your second parent's SSN (Item 64) or date of birth is incorrect, you need to make a correction. If your parent's SSN and date of birth are correct, your parent should con- tact the SSA to make sure they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC377 Header A 0030COMMENT 377 HN Your first parent's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for your first parent's Social Security Number (SSN). Therefore, you must correct your first parent's SSN (Item 60) or name (Items 61 and62). If your parent's name is correct, you must confirm it by re- entering your parent's last name and first name initial in Items 61 and 62. If you confirm your parent's name, your parent should also contact the SSA to make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC378 Header A 0030COMMENT 378 HN We previously indicated that your first parent's name as reported onyour FAFSA does not match the name in the Social Security Admini- stration's (SSA) records for your first parent's Social Security Number (SSN). If your parent's SSN (Item 60) or name (Items 61 or 62) is incorrect, you need to make the necessary corrections. If your parent's SSN and name are correct, your parent should contact the SSA to make sure they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC379 Header A 0030COMMENT 379 HN Your second parent's name as reported on your FAFSA does not match the name in the Social Security Administration's (SSA) records for your second parent's Social Security Number (SSN). Therefore, you must correct your second parent's SSN (Item 64) or name (Items 65 and 66). If your parent's name is correct, you must confirm it by re-entering your parent's last name and first name initial in Items 65 and 66. If you confirm your parent's name, your parent should also contact the SSA to make sure they correct it in their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC380 Header A 0030COMMENT 380 HN We previously indicated that your second parent's name as reported on your FAFSA does not match the name in the Social Security Admin- istration's (SSA) records for your second parent's Social Security Number (SSN). If your parent's SSN (Item 64) or name (Items 65 or 66) is incorrect, you need to make the necessary corrections. If your parent's SSN and name are correct, your parent should contact the SSA to make sure they correct their records. The SSA can be contacted by calling 1-800-772-1213 or by visiting https://socialsecurity.gov
HWFICO23DWF-IC381 Header A 0030COMMENT 381 HN The date of birth you reported for your second parent on your FAFSA matches the Social Security Administration's (SSA) records, but the date of birth you reported for your first parent does not match the SSA's records. Your first parent should review the date of birth inItem 63 and either confirm the date you have reported or make the necessary correction.
HWFICO23DWF-IC382 Header A 0030COMMENT 382 HN The date of birth you reported for your first parent on your FAFSA matches the Social Security Administration's records, but the date of birth you reported for your second parent does not match the SSA's records. Your second parent should review the date of birth in Item 67 and either confirm the date you reported or make the necessary correction.
HWFICO23DWF-IC383 Header A 0030COMMENT 383 HN The name you reported for your first parent on your FAFSA does not match the Social Security Administration's records. If the last name and first initial you reported in Items 61 and 62 are correct, contact the SSA. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC384 Header A 0030COMMENT 384 HN The name you reported for your second parent on your FAFSA does not match the Social Security Administration's (SSA) records. If the last name and first initial you reported in Items 65 and 66 are correct, contact the SSA. If they are incorrect, you need to make the necessary corrections.
HWFICO23DWF-IC385 Header A 0030COMMENT 385 HN According to the Social Security Administration, the Social SecurityNumber you provided for your first parent in Item 60 belongs to a deceased person. Please review your answer to Item 60 and make a correction if necessary.
HWFICO23DWF-IC386 Header A 0030COMMENT 386 HN According to the Social Security Administration, the Social SecurityNumber you provided for your second parent in Item 64 belongs to a deceased person. Please review your answer to Item 64 and make a correction if necessary.
HWFICO23DWF-IC387 Header A 0030COMMENT 387 HN You must report a valid Social Security Number (SSN), name and date of birth for your first parent or second parent. If your parent does not have an SSN you must correct Item 60 and/or Item 64 to all zeroes.
HWFICO23DWF-IC388 Header A 0030COMMENT 388 HN You reported that your parent(s) did file or will file a 2020 incometax return (Item 79) but also reported that your first parent does not have a Social Security Number (Item 60). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC389 Header A 0030COMMENT 389 HN You reported that your parent(s) did file or will file a 2020 incometax return (Item 79) but also reported that your second parent does not have a Social Security Number (Item 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC390 Header A 0030COMMENT 390 HN We were unable to verify your eligibility for federal student aid with one or more other federal agencies through computer matching programs. Your school will contact you if additional information isneeded.
HWFICO23DWF-IC391 Header A 0030COMMENT 391 HN You reported that your parent(s) did file or will file a 2020 incometax return (Item 79) but also reported that your first parent and your second parent do not have a Social Security Number (Items 60 and 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC392 Header A 0030COMMENT 392 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level we have determined that you may have received a total amount of student loans (graduate and undergrad- uate) that exceeds the loan limits established for the federal loan programs. However, you may have reaffirmed the excess debt with yourloan servicer, restoring your eligibility to participate in the federal student aid programs. You should review the information on Page 4.
HWFICO23DWF-IC393 Header A 0030COMMENT 393 HN Based upon data provided by the National Student Loan Data System (NSLDS) and your grade level, we have determined that you may have received a total amount of undergraduate student loans that exceeds the loan limits established for the federal loan programs. However, you may have reaffirmed the excess debt with your loan servicer, restoring your eligibility to participate in the federal student aid programs. You should review the information on Page 4.
HWFICO23DWF-IC394 Header A 0030COMMENT 394 HN You have reported the same Social Security Number for your parents (Items 60 and 64). Please review your answers and make the necessary corrections.
HWFICO23DWF-IC395 Header A 0030COMMENT 395 HN Comment 395 is not in use.
HWFICO23DWF-IC396 Header A 0030COMMENT 396 HN Comment 396 is not in use.
HWFICO23DWF-IC397 Header A 0030COMMENT 397 HN Comment 397 is not in use.
HWFICO23DWF-IC398 Header A 0030COMMENT 398 HN Comment 398 is not in use.
HWFICO23DWF-IC399 Header A 0030COMMENT 399 HN Comment 399 is not in use.
HWFICO23DWF-IC400 Header A 0030COMMENT 400 HN Your Financial Aid Administrator may contact you to resolve any issues related to parental data reported on your FAFSA.
HWFICO23DWF-IC401 Header A 0030COMMENT 401 HN Your Financial Aid Administrator may contact you to resolve any issues related to data reported on your FAFSA.
HWFICO23DWF-IC402 Header A 0030COMMENT 402 HN You may be eligible for addtional aid through the Children of Fallen Heroes Scholarship Act. For additional information, please contact your Financial Aid Administrator.
HWFICO23DWF-IC403 Header A 0030COMMENT 403 HN Review the responses to the questions about your parents' type of tax return (Item 80) and whether they filed a Schedule 1 (Item 82) If your parents filed a foreign tax return, they wiould not have been able to file a Schedule 1. Please review your answers and make the necessary corrections.
HWFICO23DWF-IC404 Header A 0030COMMENT 404 HN Review the responses to the questions about your type of tax return (Item 33) and whether you filed a Schedule 1 (Item 35). If you filed a foreign tax return, you would not have been able to filea Schedule 1. Please review your answers and make the necessary corrections.
HWFICO23DWF-IC901 Header A 0030COMMENT 901 HN Comment 901 is not in use.
HWFICO23DWF-IC902 Header A 0030COMMENT 902 HN Comment 902 is not in use.
HWFICO23DWF-IS-C-COM09 Header 0000COMMENT 902 HN
==========================================
= WFISR23D
==========================================
HWFISR23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFISR23DWF-IS-A-COL1 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL10 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL2 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL3 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL4 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL5 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL6 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL7 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL8 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-COL9 Header A 0060APPLICATION COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-A-COL1
HWFISR23DWF-IS-A-HSG1 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG10 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG2 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG3 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG4 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG5 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG6 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG7 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG8 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-HSG9 Header A 0010APPLICATION COLLEGE HOUSING NXH WF23FEDDWF-FE-A-HSG1 Reference: WF-2223-FEDERAL.WF-FE-A-HSG1
HWFISR23DWF-IS-A-PREP-EIN Header A 0090APPLICATION PREPARER EIN NN Reference: WF-2223-FEDERAL.WF-FE-A-PREP-SGN
HWFISR23DWF-IS-A-PREP-SGN Header A 0010APPLICATION PREPARER SIGNATURE NXH WF23FEDDWF-FE-A-PREP-SGN Reference: WF-2223-FEDERAL.WF-FE-A-PREP-SGN
HWFISR23DWF-IS-A-PREP-SSN Header A 0090APPLICATION PREPARER SSN NN Reference: WF-2223-FEDERAL.WF-FE-A-PREP-SGN
HWFISR23DWF-IS-A-SGN Header A 0010APPLICATION SIGNATURE NXH WF23FEDDWF-FE-A-SGN Reference: WF-2223-FEDERAL.WF-FE-A-SGN
HWFISR23DWF-IS-A-SGN-DATE Header A 0080APPLICATION SIGNATURE DATE NN Reference: WF-2223-FEDERAL.WF-FE-A-SGN
HWFISR23DWF-IS-A-SSREG Header A 0010SELECTIVE SERVICE REGISTRATION NXH WF23FEDDWF-FE-A-SSREG Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
HWFISR23DWF-IS-AD-CITY Header A 0160STUDENT ADDRESS CITY NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-AD-PHONE Header A 0100STUDENT TELEPHONE NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-AD-STATE Header A 0020STUDENT ADDRESS STATE NXH WWSTDNTDWW-ST-AD1-STATE Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-AD-STRT Header A 0350STUDENT ADDRESS STREET LINE NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-AD-ZIP Header A 0050STUDENT ADDRESS ZIP CODE NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-C-ADDR-CHG Header A 0010ADDRESS CHANGE FLAG NXH WF23FEDDWF-FE-C-ADDR-CHG Reference: WF-2223-FEDERAL.WF-FE-C-ADDR-CHG
HWFISR23DWF-IS-C-ATHRSH-PAR Header A 0010PARENT ASSETS EXCEED THRESHOLD NXH WF23FEDDWF-FE-C-ATHRSH-STU Reference: WF-2223-FEDERAL.WF-FE-C-ATHRSH-PAR
HWFISR23DWF-IS-C-ATHRSH-STU Header A 0010STUDENT ASSETS EXCEED THRSHOLD NXH WF23FEDDWF-FE-C-ATHRSH-STU Reference: WF-2223-FEDERAL.WF-FE-C-ATHRSH-STU
HWFISR23DWF-IS-C-AUTO-ZERO Header A 0010AUTOMATIC ZERO EFC NXH WF23FEDDWF-FE-C-AUTO-ZERO Reference: WF-2223-FEDERAL.WF-FE-C-AUTO-ZERO
HWFISR23DWF-IS-C-BATCH-YR Header A 0010BATCH YEAR NXH WF23FEDDWF-FE-C-BATCH-YR Reference: WF-2223-FEDERAL.WF-FE-C-BATCH-YR
HWFISR23DWF-IS-C-CFLAG Header A 0010SAR C FLAG NXH WF23FEDDWF-FE-C-CFLAG Reference: WF-2223-FEDERAL.WF-FE-C-CFLAG
HWFISR23DWF-IS-C-CFLAG-CHG Header A 0010SAR C CHANGE FLAG NXH WF23FEDDWF-FE-C-CFLAG-CHG Reference: WF-2223-FEDERAL.WF-FE-C-CFLAG-CHG
HWFISR23DWF-IS-C-CHILD-HERO Header A 0010CHILD OF FALLEN HERO IND
VWFISR23DWF-IS-C-CHILD-HERO 1 0000 Eligible for schlshp
VWFISR23DWF-IS-C-CHILD-HERO 2 0000 Inelig for Schlshp
HWFISR23DWF-IS-C-COM01 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM02 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM03 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM04 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM05 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM06 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM07 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM08 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM09 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM10 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM11 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM12 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM13 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM14 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM15 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM16 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM17 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM18 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM19 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COM20 Header A 0030COMMENT CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-COM01
HWFISR23DWF-IS-C-COMPUTE Header A 0030CPS COMPUTE BATCH NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-C-BATCH-CMP
HWFISR23DWF-IS-C-COR-FLAG Header A 1950CORRECTION FLAGS NXH WF23FEDDWF-FE-C-COR-FLAG Reference: WF-2223-FEDERAL.WF-FE-C-COR-FLAG
HWFISR23DWF-IS-C-COR-INIT Header A 0010CORRECTION SOURCE NXH WF23FEDDWF-FE-C-COR-INIT Reference: WF-2223-FEDERAL.WF-FE-C-COR-INIT
HWFISR23DWF-IS-C-COR-TRAN Header A 0020CORRECTION TRANSACTION NN Reference: WF-2223-FEDERAL.WF-FE-C-COR-TRAN
HWFISR23DWF-IS-C-DEP Header A 0010DEPENDENCY STATUS NXH WF23FEDDWF-FE-C-DEP Reference: WF-2223-FEDERAL.WF-FE-C-DEP
HWFISR23DWF-IS-C-EFC-CHG Header A 0010EFC CHANGE FLAG NXH WF23FEDDWF-FE-C-EFC-CHG Reference: WF-2223-FEDERAL.WF-FE-C-EFC-CHG
HWFISR23DWF-IS-C-ELEC-INST Header A 0010ELEC INSTITUTION INDICATOR NXH WF23FEDDWF-FE-C-ELEC-INST Reference: WF-2223-FEDERAL.WF-FE-C-ELEC-INST
HWFISR23DWF-IS-C-ETI Header A 0010ELEC TRANSACTION INDICATOR NXH WF23FEDDWF-FE-C-ETI Reference: WF-2223-FEDERAL.WF-FE-C-ETI
HWFISR23DWF-IS-C-ETI-DEST Header A 0070ETI DESTINATION ID NN Reference: WF-2223-FEDERAL.WF-FE-C-ETI-DEST
HWFISR23DWF-IS-C-FC1 Header A 0060PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-AAI Header A 0080ADJUSTED AVAILABLE INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-AI Header A 0080AVAILABLE INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-APA Header A 0090ASSET PROTECTION ALLOWANCE NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-ATI Header A 0070ALLOWANCES AGAINST INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-CAI Header A 0070CONTRIB FROM AVAILABLE INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-DNW Header A 0090DISCRETIONARY NET WORTH NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-EA Header A 0070EMPLOYMENT ALLOWANCE NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-FISAP Header A 0080PRIMARY FC FISAP INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1-FISAP
HWFISR23DWF-IS-C-FC1-FRMULA Header A 0010PRIMARY FC FORMULA NXH WF23FEDDWF-FE-C-FC1-FRMULA Reference: WF-2223-FEDERAL.WF-FE-C-FC1-FRMULA
HWFISR23DWF-IS-C-FC1-IPA Header A 0070INCOME PROTECTION ALLOWANCE NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M01 Header A 00601-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M02 Header A 00602-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M03 Header A 00603-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M04 Header A 00604-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M05 Header A 00605-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M06 Header A 00606-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M07 Header A 00607-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M08 Header A 00608-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M10 Header A 006010-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M11 Header A 006011-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-M12 Header A 006012-MONTH PRIMARY FC NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-NW Header A 0090NET WORTH NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-PC Header A 0070PARENT CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-PCA Header A 0070CONTRIBUTION FROM ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SATI Header A 0070STUDENT ALWNCES AGAINST INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SCA Header A 0070STUDENT ASSET CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SDNW Header A 0090STUDENT DISCRETIONARY NET WRTH NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SIC Header A 0070STUDENT INCOME CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-SIGREJ Header A 0060PRIMARY FC (SIGNATURE REJECT) NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1-SIGREJ
HWFISR23DWF-IS-C-FC1-STI Header A 0080STUDENT TOTAL INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-STX Header A 0070STATE TAX ALLOWANCE NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-TI Header A 0080TOTAL INCOME NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-TPC Header A 0070TOTAL PARENT CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-FC1-TSC Header A 0070TOTAL STUDENT CONTRIBUTION NN Reference: WF-2223-FEDERAL.WF-FE-C-FC1
HWFISR23DWF-IS-C-GRAD Header A 0010GRADUATE STATUS NXH WF23FEDDWF-FE-C-GRAD Reference: WF-2223-FEDERAL.WF-FE-C-GRAD
HWFISR23DWF-IS-C-HIL-FLAG Header A 1950HIGHLIGHT FLAGS NXH WF23FEDDWF-FE-C-HIL-FLAG Reference: WF-2223-FEDERAL.WF-FE-C-HIL-FLAG
HWFISR23DWF-IS-C-IRS-AGI-PAR Header A 0010PARENT IRS AGI DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-AGI-PAR
HWFISR23DWF-IS-C-IRS-AGI-STU Header A 0010STUDENT IRS AGI DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-AGI-STU
HWFISR23DWF-IS-C-IRS-DIST-PARHeader 0000 WF23FEDDWF-FE-C-IRS-DIST-PAR
HWFISR23DWF-IS-C-IRS-DSP-PAR Header A 0010PARENT IRS DISPLAY FLAG NXH WF23FEDDWF-FE-C-IRS-DSP-PAR Reference: WF23FEDD.WF-FE-C-IRS-DSP-PAR
HWFISR23DWF-IS-C-IRS-DSP-STU Header A 0010STUDENT IRS DISPLAY FLAG NXH WF23FEDDWF-FE-C-IRS-DSP-STU Reference: WF23FEDD.WF-FE-C-IRS-DSP-STU
HWFISR23DWF-IS-C-IRS-DSTP-PARHeader A 0010PAR IRS IRA PEN/DIST DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU
HWFISR23DWF-IS-C-IRS-DSTP-STUHeader A 0010STU IRS IRA DIST/PEN DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU
HWFISR23DWF-IS-C-IRS-EDCR-PARHeader A 0010PAR IRS ED CREDITS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-EDCR-PAR
HWFISR23DWF-IS-C-IRS-EDCR-STUHeader A 0010STU IRS ED CREDITS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-EDCR-STU
HWFISR23DWF-IS-C-IRS-FIT-PAR Header A 0010PARENT IRS FIT DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-FIT-PAR
HWFISR23DWF-IS-C-IRS-FIT-STU Header A 0010STUDENT IRS FIT DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-FIT-STU
HWFISR23DWF-IS-C-IRS-FLST-PARHeader A 0010PAR IRS FILE STATUS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-FLST-PAR
HWFISR23DWF-IS-C-IRS-FLST-STUHeader A 0010STU IRS FILE STATUS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-FLST-STU
HWFISR23DWF-IS-C-IRS-INT-PAR Header A 0010PAR IRS INTEREST INC DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-INT-PAR
HWFISR23DWF-IS-C-IRS-INT-STU Header A 0010STU IRS INTEREST INC DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-INT-STU
HWFISR23DWF-IS-C-IRS-IRA-PAR Header A 0010PAR IRS IRA PAYMENTS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-IRA-PAR
HWFISR23DWF-IS-C-IRS-IRA-STU Header A 0010STU IRS IRA PAYMENTS DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-IRA-STU
HWFISR23DWF-IS-C-IRS-RET-PAR Header A 0010PAR IRS RETURN TYPE DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-RET-PAR
HWFISR23DWF-IS-C-IRS-RET-STU Header A 0010STU IRS RETURN TYPE DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU Reference: WF23FEDD.WF-FE-C-IRS-RET-STU
HWFISR23DWF-IS-C-IRS-SCD1-PARHeader A 0010PAR IRS SCHED 1 DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the parent filed Schedule 1 value onthe FAFSA, as compared to the parent's tax return,for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA onthe web. If the value is 1 (filed Schedule 1 was retrieved from the tax return and not subsequentlychanged), the Schedule 1 answer does not need to be verified if the parent is selected for verification.
HWFISR23DWF-IS-C-IRS-SCD1-STUHeader A 0010STU IRS SCHED 1 DATA FLAG NXH WF23FEDDWF-FE-C-IRS-AGI-STU The status of the student filed schedule 1 value on the FAFSA, as compared to the student's tax return, for applicants who used the IRS Retrieval tool to populate financial data when completing a FAFSA on the web. If the value is 1 (Filed Sched 1was retrieved from the tax return and not subsequently changed), the Schedule 1 answer does not need to be verified if the student is selected for verification.
HWFISR23DWF-IS-C-IRSREQ-PAR Header A 0020PARENT IRS DATA REQUEST NXH WF23FEDDWF-FE-C-IRSREQ-STU Reference: WF-2223-FEDERAL.WF-FE-C-IRSREQ-PAR
HWFISR23DWF-IS-C-IRSREQ-STU Header A 0020STUDENT IRS DATA REQUEST NXH WF23FEDDWF-FE-C-IRSREQ-STU Reference: WF-2223-FEDERAL.WF-FE-C-IRSREQ-STU
HWFISR23DWF-IS-C-MATCH-CIT Header A 0010SSA CITIZENSHIP MATCH NXH WF23FEDDWF-FE-C-MATCH-CIT Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-CIT
HWFISR23DWF-IS-C-MATCH-DHS Header A 0010DHS MATCH NXH WF23FEDDWF-FE-C-MATCH-DHS Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-DHS
HWFISR23DWF-IS-C-MATCH-DHS2 Header A 0010DHS SECONDARY MATCH NXH WF23FEDDWF-FE-C-MATCH-DHS2 Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-DHS2
HWFISR23DWF-IS-C-MATCH-DOD Header A 0010DOD MATCH NXH WF23FEDDWF-FE-C-MATCH-DOD Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-DOD
HWFISR23DWF-IS-C-MATCH-HS Header A 0010HIGH SCHOOL MATCH NXH WF23FEDDWF-FE-C-MATCH-HS Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-HS
HWFISR23DWF-IS-C-MATCH-NSL Header A 0010NSLDS MATCH NXH WF23FEDDWF-FE-C-MATCH-NSL Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-NSL
HWFISR23DWF-IS-C-MATCH-P1 Header A 0010PARENT 1 SOCIAL SECURITY MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN Reference: WF23FEDD.WF-FE-C-MATCH-P1
HWFISR23DWF-IS-C-MATCH-P2 Header A 0010PARENT 2 SOCIAL SECURITY MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN Reference: WF23FEDD.WF-FE-C-MATCH-P1
HWFISR23DWF-IS-C-MATCH-SS Header A 0010SELECTIVE SERVICE MATCH NXH WF23FEDDWF-FE-C-MATCH-SS Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-SS
HWFISR23DWF-IS-C-MATCH-SSN Header A 0010SOCIAL SECURITY SSN/NAME MATCH NXH WF23FEDDWF-FE-C-MATCH-SSN Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-SSN
HWFISR23DWF-IS-C-MATCH-VA Header A 0010VETERANS ADMINISTRATION MATCH NXH WF23FEDDWF-FE-C-MATCH-VA Reference: WF-2223-FEDERAL.WF-FE-C-MATCH-VA
HWFISR23DWF-IS-C-MULT-INST Header A 0100MULTIPLE INSTITUTION FLAG NXH WF23FEDDWF-FE-C-MULT-INST Reference: WF-2223-FEDERAL.WF-FE-C-MULT-INST
HWFISR23DWF-IS-C-NSLDS-PS1 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-2223-FEDERAL.WF-FE-C-NSLDS-PS1
HWFISR23DWF-IS-C-NSLDS-PS2 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-2223-FEDERAL.WF-FE-C-NSLDS-PS1
HWFISR23DWF-IS-C-NSLDS-PS3 Header A 0020NSLDS POST-SCREENING REASON NXH WF23FEDDWF-FE-C-NSLDS-PS1 Reference: WF-2223-FEDERAL.WF-FE-C-NSLDS-PS1
HWFISR23DWF-IS-C-NSLDS-TRAN Header A 0020NSLDS TRANSACTION NN Reference: WF-2223-FEDERAL.WF-FE-C-NSLDS-TRAN
HWFISR23DWF-IS-C-ORIG-DATE Header A 0080APPLICATION RECEIVED DATE NN Reference: WF-2223-FEDERAL.WF-FE-C-ORIG-DATE
HWFISR23DWF-IS-C-ORIG-SRCE Header A 0010ORIGINAL APPLICATION SOURCE NXH WF23FEDDWF-FE-C-ORIG-SRCE Reference: WF-2223-FEDERAL.WF-FE-C-ORIG-SRCE
HWFISR23DWF-IS-C-ORIG-TYPE Header A 0010ORIGINAL APPLICATION TYPE NXH WF23FEDDWF-FE-C-ORIG-TYPE Reference: WF-2223-FEDERAL.WF-FE-C-ORIG-SRCE
HWFISR23DWF-IS-C-PELL-ELIG Header A 0010PELL ELIGIBILITY NXH WF23FEDDWF-FE-C-PELL-ELIG Reference: WF-2223-FEDERAL.WF-FE-C-PELL-ELIG
HWFISR23DWF-IS-C-PROC-DATE Header A 0080TRANSACTION PROCESSING DATE NN Reference: WF-2223-FEDERAL.WF-FE-C-PROC-DATE
HWFISR23DWF-IS-C-PUSHED Header A 0010ISIR PUSHED FLAG NXH WF23FEDDWF-FE-C-PUSHED Reference: WF-2223-FEDERAL.WF-FE-C-PUSHED
HWFISR23DWF-IS-C-REC-TYPE Header A 0010RECORD TYPE NXH WF23FEDDWF-FE-C-REC-TYPE Reference: WF-2223-FEDERAL.WF-FE-C-REC-TYPE
HWFISR23DWF-IS-C-REJ-CHG Header A 0010REJECT STATUS CHANGE FLAG NXH WF23FEDDWF-FE-C-REJ-CHG Reference: WF-2223-FEDERAL.WF-FE-C-REJ-CHG
HWFISR23DWF-IS-C-REJ1 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ2 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ3 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ4 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ5 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ6 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REJ7 Header A 0020REJECT REASON NXH WF23FEDDWF-FE-C-REJ1 Reference: WF-2223-FEDERAL.WF-FE-C-REJ1
HWFISR23DWF-IS-C-REPROC-RSN Header A 0020REPROCESSING REASON NXH WF23FEDDWF-FE-C-REPROC-RSN Reference: WF-2223-FEDERAL.WF-FE-C-REPROC-RSN
HWFISR23DWF-IS-C-SIMP-NEEDS Header A 0010SIMPLIFIED NEEDS TEST NXH WF23FEDDWF-FE-C-SIMP-NEEDS Reference: WF-2223-FEDERAL.WF-FE-C-SIMP-NEEDS
HWFISR23DWF-IS-C-SP-CIRC Header A 0010SPECIAL CIRCUMSTANCE NXH WF23FEDDWF-FE-C-SP-CIRC Reference: WF-2223-FEDERAL.WF-FE-C-SP-CIRC
HWFISR23DWF-IS-C-SSN-DUP Header A 0010DUPLICATE SSN NXH WF23FEDDWF-FE-C-SSN-DUP Reference: WF-2223-FEDERAL.WF-FE-C-SSN-DUP
HWFISR23DWF-IS-C-SSN-NM-CHG Header A 0010NAME/SSN CHANGE FLAG NXH WF23FEDDWF-FE-C-SSN-NM-CHG Reference: WF-2223-FEDERAL.WF-FE-C-SSN-NM-CHG
HWFISR23DWF-IS-C-TRAN-DATE Header A 0080TRANSACTION RECEIVED DATE NN Reference: WF-2223-FEDERAL.WF-FE-C-TRAN-DATE
HWFISR23DWF-IS-C-TRAN-SRCE Header A 0010TRANSACTION SOURCE NXH WF23FEDDWF-FE-C-TRAN-SRCE Reference: WF-2223-FEDERAL.WF-FE-C-TRAN-SRCE
HWFISR23DWF-IS-C-TRAN-TYPE Header A 0010TRANSACTION TYPE NXH WF23FEDDWF-FE-C-TRAN-TYPE Reference: WF-2223-FEDERAL.WF-FE-C-TRAN-SRCE
HWFISR23DWF-IS-C-VER Header A 0010VERIFICATION SELECTION NXH WF23FEDDWF-FE-C-VER Reference: WF-2223-FEDERAL.WF-FE-C-VER
HWFISR23DWF-IS-C-VER-CHG Header A 0010VERIFICATION STATUS CHNGE FLAG NXH WF23FEDDWF-FE-C-VER-CHG Reference: WF-2223-FEDERAL.WF-FE-C-VER-CHG
HWFISR23DWF-IS-C-VER-DHS Header A 0130DHS VERIFICATION NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-C-VER-DHS
HWFISR23DWF-IS-C-VER-DOD Header A 0080DOD VERIFICATION DATE NN Reference: WF-2223-FEDERAL.WF-FE-C-VER-DOD
HWFISR23DWF-IS-C-VER-FLAG Header A 1950FAFSA DATA VERIFY FLAGS NXH WF23FEDDWF-FE-C-VER-FLAG Reference: WF-2223-FEDERAL.WF-FE-C-VER-FLAG
HWFISR23DWF-IS-C-VER-HS Header A 0120HIGH SCHOOL VERIFICATION CODE NXH Reference: WF-2223-FEDERAL.WF-FE-C-VER-HS
HWFISR23DWF-IS-C-VER-NSL Header A 0010NSLDS MATCH RESULTS NXH WF23FEDDWF-FE-C-VER-NSL Reference: WF-2223-FEDERAL.WF-FE-C-VER-NSL
HWFISR23DWF-IS-C-VER-SS Header A 0010SEL SERV REG VERIFICATION NXH WF23FEDDWF-FE-C-VER-SS Reference: WF-2223-FEDERAL.WF-FE-C-VER-SS
HWFISR23DWF-IS-C-VER-TRACK Header A 0040VERIFICATION TRACKING FLAG NXH WF23FEDDWF-FE-C-VER-TRACK Reference: WF-2223-FEDERAL.WF-FE-C-VER-TRACK
HWFISR23DWF-IS-CAP-AFI-TOTAL Header A 0080PARENT AFI TOTAL (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-AGI Header A 0070PARENT ADJ GROSS INCOME (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-ATHRSH Header A 0010PARENT ASSET EXC THRSHLD (ASM) NXH WF23FEDDWF-FE-CAS-ATHRSH Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-FAM-COL Header A 0010PARENT FAMILY IN COLLEGE (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-FAM-SIZE Header A 0020PARENT FAMILY SIZE (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-FED-TAX Header A 0060PARENT FEDERAL TAX (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-FILER Header A 0010PARENT TAX FILER (ASM) NXH WF23FEDDWF-FE-CAP-FILER Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-MAR Header A 0010PARENT MARITAL STATUS (ASM) NXH WF23FEDDWF-FE-CAP-MAR Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAP-P1-INC Header A 0070PARENT 1 WORK INCOME (ASM) NNH WF23FEDDWF-FE-CAP-MAR
HWFISR23DWF-IS-CAP-P1-SSN Header A 0010PARENT 1 SSN (ASM) NN WF23FEDDWF-FE-CAP-P1-SSN
HWFISR23DWF-IS-CAP-P2-INC Header A 0070PARENT 2 WORK INCOME (ASM) NN WF23FEDDWF-FE-CAP-P1-SSN
HWFISR23DWF-IS-CAP-P2-SSN Header A 0010PARENT 2 SSN (ASM) NN WF23FEDDWF-FE-CAP-P1-SSN
HWFISR23DWF-IS-CAS-AFI-TOTAL Header A 0080STUDENT AFI TOTAL (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-AGI Header A 0070STUDENT ADJ GROSS INCOME (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-ATHRSH Header A 0010STUDENT ASSET EXC THRSHD (ASM) NXH WF23FEDDWF-FE-CAS-ATHRSH Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-CIT Header A 0010STUDENT CITIZ STATUS (ASM) NXH WF23FEDDWF-FE-CAS-CIT Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-FAM-COL Header A 0010STUDENT FAM IN COLLEGE (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-FAM-SIZE Header A 0020STUDENT FAMILY SIZE (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-FED-TAX Header A 0070STUDENT FEDERAL TAX (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-FILER Header A 0010STUDENT TAX FILER (ASM) NXH WF23FEDDWF-FE-CAS-FILER Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-MAR Header A 0010STUDENT MARITAL STATUS (ASM) NXH WF23FEDDWF-FE-CAS-MAR Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-SP-INC Header A 0070SPOUSE WORK INCOME (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-ST-INC Header A 0070STUDENT WORK INCOME (ASM) NN Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-CHL Header A 0010STUDENT CHILD DEPS TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-CHL Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-DEP Header A 0010STUDENT OTHER DEPS TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-DEP Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-DOB Header A 0010STUDENT DT OF BIRTH TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-DOB Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-HMLS Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-MAR Header A 0010STUDENT MARITAL TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-MAR Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-UYHU Header A 0010STUDENT UNACC (HUD) TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-UYHU Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CAS-TEST-UYSD Header A 0010STUDENT UNACC (SDL) TEST (ASM) NXH WF23FEDDWF-FE-CAS-TEST-UYSD Reference: WF-2223-FEDERAL.WF-FE-C-ASSUMPTION
HWFISR23DWF-IS-CCP-AFI-TOTAL Header A 0080PARENT TOTAL AFI (CALC) NN Reference: WF-2223-FEDERAL.WF-FE-CCS-AFI-TOTAL
HWFISR23DWF-IS-CCP-UTX-TOTAL Header A 0080PARENT TOTAL UTX (CALC) NN Reference: WF-2223-FEDERAL.WF-FE-CCS-AFI-TOTAL
HWFISR23DWF-IS-CCS-AFI-TOTAL Header A 0080STUDENT TOTAL AFI (CALC) NN Reference: WF-2223-FEDERAL.WF-FE-CCS-AFI-TOTAL
HWFISR23DWF-IS-CCS-UTX-TOTAL Header A 0080STUDENT TOTAL UTX (CALC) NN Reference: WF-2223-FEDERAL.WF-FE-CCS-AFI-TOTAL
HWFISR23DWF-IS-DOB Header A 0080STUDENT DATE OF BIRTH NN Reference: WF-2223-FEDERAL.WF-FE-DOB
HWFISR23DWF-IS-EMAIL Header A 0500STUDENT E-MAIL ADDRESS NN Reference: WF-2223-FEDERAL.WF-FE-EMAIL
HWFISR23DWF-IS-F-ASM1-OVR Header A 0010ASSUMPTION 1 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM1-OVR
HWFISR23DWF-IS-F-ASM2-OVR Header A 0010ASSUMPTION 2 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM2-OVR
HWFISR23DWF-IS-F-ASM3-OVR Header A 0010ASSUMPTION 3 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM3-OVR
HWFISR23DWF-IS-F-ASM4-OVR Header A 0010ASSUMPTION 4 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM4-OVR
HWFISR23DWF-IS-F-ASM5-OVR Header A 0010ASSUMPTION 5 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM5-OVR
HWFISR23DWF-IS-F-ASM6-OVR Header A 0010ASSUMPTION 6 OVERRIDE NXH WF23FEDDWF-FE-F-ASM1-OVR Reference: WF-2223-FEDERAL.WF-FE-F-ASM6-OVR
HWFISR23DWF-IS-F-COLLEGE Header A 0060FAA COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-F-COLLEGE
HWFISR23DWF-IS-F-DEP-OVR Header A 0010DEPENDENCY OVERRIDE NXH WF23FEDDWF-FE-F-DEP-OVR Reference: WF-2223-FEDERAL.WF-FE-F-DEP-OVR
HWFISR23DWF-IS-F-PROF-JUDG Header A 0010PROFESSIONAL JUDGMENT NXH WF23FEDDWF-FE-F-PROF-JUDG Reference: WF-2223-FEDERAL.WF-FE-F-PROF-JUDG
HWFISR23DWF-IS-F-REJ12-OVR Header A 0010REJECT 12 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJ12-OVR
HWFISR23DWF-IS-F-REJ20-OVR Header A 0010REJECT 20 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJ20-OVR
HWFISR23DWF-IS-F-REJ21-OVR Header A 0010REJECT 21 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJ21-OVR
HWFISR23DWF-IS-F-REJ3-OVR Header A 0010REJECT 3 OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJ3-OVR
HWFISR23DWF-IS-F-REJA-OVR Header A 0010REJECT A OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJA-OVR
HWFISR23DWF-IS-F-REJB-OVR Header A 0010REJECT B OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJB-OVR
HWFISR23DWF-IS-F-REJC-OVR Header A 0010REJECT C OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJC-OVR
HWFISR23DWF-IS-F-REJG-OVR Header A 0010REJECT G OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJG-OVR
HWFISR23DWF-IS-F-REJJ-OVR Header A 0010REJECT J OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJJ-OVR
HWFISR23DWF-IS-F-REJK-OVR Header A 0010REJECT K OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJK-OVR
HWFISR23DWF-IS-F-REJN-OVR Header A 0010REJECT N OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJN-OVR
HWFISR23DWF-IS-F-REJW-OVR Header A 0010REJECT W OVERRIDE NXH WF23FEDDWF-FE-F-REJA-OVR Reference: WF-2223-FEDERAL.WF-FE-F-REJW-OVR
HWFISR23DWF-IS-FED-ID Header A 0013FEDERAL ID NN Reference: WF-2223-FEDERAL.WF-FE-FED-ID
HWFISR23DWF-IS-NM-FIRST Header A 0120STUDENT FIRST NAME NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-NM-LAST Header A 0160STUDENT LAST NAME NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-NM-MI Header A 0010STUDENT MIDDLE INITIAL NN Reference: WF-2223-FEDERAL.WF-FE-NM-LAST
HWFISR23DWF-IS-P-A-COOP Header A 0070PARENT AFI CO-OP EARNINGS NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-CPAY Header A 0070PARENT AFI COMBAT PAY NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-CSPD Header A 0070PARENT AFI CHILD SUPPORT PAID NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-EDCR Header A 0070PARENT AFI EDUCATION CREDITS NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-GRNT Header A 0070PARENT AFI GRANTS/SCHOLARSHIPS NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-A-WORK Header A 0070PARENT AFI NEED-BASED WORK NN Reference: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFISR23DWF-IS-P-AGI Header A 0070PARENT ADJUSTED GROSS INCOME NN Reference: WF-2223-FEDERAL.WF-FE-P-AGI
HWFISR23DWF-IS-P-BUS-FRM Header A 0070PARENT BUSINESS/FARM ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-P-BUS-FRM
HWFISR23DWF-IS-P-CASH Header A 0070PARENT CASH ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-P-CASH
HWFISR23DWF-IS-P-DLW Header A 0010PARENT DISLOCATED WORKER NXH WF23FEDDWF-FE-S-DLW Reference: WF-2223-FEDERAL.WF-FE-P-DLW
HWFISR23DWF-IS-P-EMAIL Header A 0500PARENT E-MAIL ADDRESS NN Reference: WF-2223-FEDERAL.WF-FE-P-FA-SSN
HWFISR23DWF-IS-P-FAM-COL Header A 0010PARENT FAMILY IN COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-P-FAM-COL
HWFISR23DWF-IS-P-FAM-SIZE Header A 0020PARENT FAMILY SIZE NN Reference: WF-2223-FEDERAL.WF-FE-P-FAM-SIZE
HWFISR23DWF-IS-P-FED-TAX Header A 0060PARENT FEDERAL TAX NN Reference: WF-2223-FEDERAL.WF-FE-P-FED-TAX
HWFISR23DWF-IS-P-FILE-STAT Header A 0010PARENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT
HWFISR23DWF-IS-P-FILER Header A 0010PARENT TAX FILER NXH WF23FEDDWF-FE-S-FILER Reference: WF-2223-FEDERAL.WF-FE-P-FILER
HWFISR23DWF-IS-P-FORM Header A 0010PARENT TAX FORM NXH WF23FEDDWF-FE-S-FORM Reference: WF-2223-FEDERAL.WF-FE-P-FILER
HWFISR23DWF-IS-P-INV Header A 0060PARENT INVESTMENT ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-P-INV
HWFISR23DWF-IS-P-MAR Header A 0010PARENT MARITAL STATUS NXH WF23FEDDWF-FE-P-MAR Reference: WF-2223-FEDERAL.WF-FE-P-MAR
HWFISR23DWF-IS-P-MAR-DATE Header A 0060PARENT MARITAL STATUS DATE NN Reference: WF-2223-FEDERAL.WF-FE-P-MAR
HWFISR23DWF-IS-P-MT-LUNCH Header A 0010PARENT MEANS-TESTED LUNCH PGM NXH WF23FEDDWF-FE-S-MT-LUNCH Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-MT-SNAP Header A 0010PARENT MEANS-TESTED SUPP NUTR NXH WF23FEDDWF-FE-S-MT-SNAP Reference: WF23FEDD.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-MT-SSI Header A 0010PARENT MEANS-TESTED SSI NXH WF23FEDDWF-FE-S-MT-SSI Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-MT-TANF Header A 0010PARENT MEANS-TESTED TANF NXH WF23FEDDWF-FE-S-MT-TANF Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-MT-WIC Header A 0010PARENT MEANS-TESTED WIC NXH WF23FEDDWF-FE-S-MT-WIC Reference: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFISR23DWF-IS-P-P1-DOB Header A 0080PARENT 1 BIRTHDATE NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P1-FNAME Header A 0010PARENT 1 FIRST INITIAL NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P1-INC Header A 0070PARENT 1 WORK INCOME NN
HWFISR23DWF-IS-P-P1-LEV Header A 0010PARENT 1 EDUCATIONAL LEVEL NXH WFFED23DWF-FE-P-P2-LEV
HWFISR23DWF-IS-P-P1-LNAME Header A 0160PARENT 1 LAST NAME NN 00000124 The parents' SSNs, last names, first initals, and birthdates are collected on the federal financial aid application.
HWFISR23DWF-IS-P-P1-SSN Header A 0090PARENT 1 SSN NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P2-DOB Header A 0080PARENT 2 BIRTHDATE NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P2-FNAME Header A 0010PARENT 2 FIRST INITIAL NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P2-INC Header A 0070PARENT 2 WORK INCOME NN
HWFISR23DWF-IS-P-P2-LEV Header A 0010PARENT 2 EDUCATIONAL LEVEL NXH WFFED23DWF-FE-P-P2-LEV
HWFISR23DWF-IS-P-P2-LNAME Header A 0160PARENT 2 LAST NAME NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-P2-SSN Header A 0090PARENT 2 SSN NN Reference: WF-IS-P-P1-LNAME
HWFISR23DWF-IS-P-RES Header A 0020PARENT STATE OF RESIDENCE NXH WWSYSVRDWF-HELP-RES Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFISR23DWF-IS-P-RES-5YR Header A 0010PARENT FIVE-YEAR RESIDENCE NXH WF23FEDDWF-FE-S-RES-5YR Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFISR23DWF-IS-P-RES-DATE Header A 0080PARENT STATE RESIDENCE DATE NN Reference: WF-2223-FEDERAL.WF-FE-P-RES
HWFISR23DWF-IS-P-SCHED1 Header A 0010PARENT FILED SCHEDULE 1 QUEST NXH WF23FEDDWF-FE-S-SCHED1
HWFISR23DWF-IS-P-U-CSUP Header A 0070PARENT UTX CHILD SUPPORT RCVD NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-DST-PEN Header A 0070PARENT UNTX PENS/DIST NN
HWFISR23DWF-IS-P-U-INT Header A 0070PARENT UTX INTEREST INCOME NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-IRA Header A 0070PARENT UTX IRA PAYMENTS NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-LIV Header A 0070PARENT UTX LIVING ALLOWANCES NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-OTHER Header A 0070PARENT UTX OTHER UNTAXED INC NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-PEN Header A 0070PARENT UTX PENSION PAYMENTS NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-P-U-VET Header A 0070PARENT UTX VET NON-ED BENEFIT NN Reference: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFISR23DWF-IS-S-A-COOP Header A 0070STUDENT AFI CO-OP EARNINGS NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-CPAY Header A 0070STUDENT AFI COMBAT PAY NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-CSPD Header A 0070STUDENT AFI CHILD SUPPORT PAID NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-EDCR Header A 0070STUDENT AFI EDUCATION CREDITS NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-GRNT Header A 0070STUDENT AFI GRANTS/SCHOLARSHPS NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-A-WORK Header A 0070STUDENT AFI NEED-BASED WORK NN Reference: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFISR23DWF-IS-S-AGI Header A 0070STUDENT ADJUSTED GROSS INCOME NN Reference: WF-2223-FEDERAL.WF-FE-S-AGI
HWFISR23DWF-IS-S-ALIEN Header A 0090STUDENT ALIEN REGISTRATION NN Reference: WF-2223-FEDERAL.WF-FE-S-ALIEN
HWFISR23DWF-IS-S-BACH-DEG Header A 0010STUDENT BACHELOR'S DEGREE NXH WF23FEDDWF-FE-S-BACH-DEG Reference: WF-2223-FEDERAL.WF-FE-S-BACH-DEG
HWFISR23DWF-IS-S-BUS-FRM Header A 0070STUDENT BUSINESS/FARM ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-S-BUS-FRM
HWFISR23DWF-IS-S-CASH Header A 0070STUDENT CASH ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-S-CASH
HWFISR23DWF-IS-S-CIT Header A 0010STUDENT CITIZENSHIP STATUS NXH WF23FEDDWF-FE-S-CIT Reference: WF-2223-FEDERAL.WF-FE-S-CIT
HWFISR23DWF-IS-S-DEG Header A 0010STUDENT DEGREE/CERTIFICATE NXH WF23FEDDWF-FE-S-DEG Reference: WF-2223-FEDERAL.WF-FE-S-DEG
HWFISR23DWF-IS-S-DL-NUM Header A 0200STUDENT DRIVER LICENSE NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-S-DL-NUM
HWFISR23DWF-IS-S-DL-STATE Header A 0020STUDENT DRIVER LICENSE STATE NXH WWSYSVRDWF-HELP-RES Reference: WF-2223-FEDERAL.WF-FE-S-DL-NUM
HWFISR23DWF-IS-S-DLW Header A 0010STUDENT DISLOCATED WORKER NXH WF23FEDDWF-FE-S-DLW Reference: WF-2223-FEDERAL.WF-FE-S-DLW
HWFISR23DWF-IS-S-DRUG Header A 0010STUDENT DRUG CONVICTION NXH WF23FEDDWF-FE-S-DRUG Reference: WF-2223-FEDERAL.WF-FE-S-DRUG
HWFISR23DWF-IS-S-FAM-COL Header A 0010STUDENT FAMILY IN COLLEGE NN Reference: WF-2223-FEDERAL.WF-FE-S-FAM-COL
HWFISR23DWF-IS-S-FAM-SIZE Header A 0020STUDENT FAMILY SIZE NN Reference: WF-2223-FEDERAL.WF-FE-S-FAM-SIZE
HWFISR23DWF-IS-S-FED-TAX Header A 0070STUDENT FEDERAL TAX NN Reference: WF-2223-FEDERAL.WF-FE-S-FED-TAX
HWFISR23DWF-IS-S-FILE-STAT Header A 0010STUDENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT
HWFISR23DWF-IS-S-FILER Header A 0010STUDENT TAX FILER NXH WF23FEDDWF-FE-S-FILER Reference: WF-2223-FEDERAL.WF-FE-S-FILER
HWFISR23DWF-IS-S-FORM Header A 0010STUDENT TAX FORM NXH WF23FEDDWF-FE-S-FORM Reference: WF-2223-FEDERAL.WF-FE-S-FILER
HWFISR23DWF-IS-S-HS-CITY Header A 0280STUDENT HIGH SCHOOL CITY NN Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFISR23DWF-IS-S-HS-GED Header A 0010STUDENT HS DIPLOMA/EQUIVALENT NXH WF23FEDDWF-FE-S-HS-GED Reference: WF-2223-FEDERAL.WF-FE-S-HS-GED
HWFISR23DWF-IS-S-HS-NAME Header A 0500STUDENT HIGH SCHOOL NAME NN Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFISR23DWF-IS-S-HS-STATE Header A 0020STUDENT HIGH SCHOOL STATE NXH WWSYSVRDWF-HELP-RES Reference: WF-2223-FEDERAL.WF-FE-S-HS-NAME
HWFISR23DWF-IS-S-INT Header A 0010STUDENT INTEREST-LOANS/WORK NXH WF23FEDDWF-FE-S-INT Reference: WF-2223-FEDERAL.WF-FE-S-INT
HWFISR23DWF-IS-S-INV Header A 0070STUDENT INVESTMENT ASSETS NN Reference: WF-2223-FEDERAL.WF-FE-S-INV
HWFISR23DWF-IS-S-MALE Header A 0010STUDENT MALE NXH WF23FEDDWF-FE-S-MALE Reference: WF-2223-FEDERAL.WF-FE-A-SSREG
HWFISR23DWF-IS-S-MAR Header A 0010STUDENT MARITAL STATUS NXH WF23FEDDWF-FE-S-MAR Reference: WF-2223-FEDERAL.WF-FE-S-MAR
HWFISR23DWF-IS-S-MAR-DATE Header A 0060STUDENT MARITAL STATUS DATE NN Reference: WF-2223-FEDERAL.WF-FE-S-MAR
HWFISR23DWF-IS-S-MT-LUNCH Header A 0010STUDENT MEANS-TESTED LUNCH PGM NXH WF23FEDDWF-FE-S-MT-LUNCH Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-MT-SNAP Header A 0010STUDENT MEANS-TESTED SUPP NUTR NXH WF23FEDDWF-FE-S-MT-SNAP Reference: WF23FEDD.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-MT-SSI Header A 0010STUDENT MEANS-TESTED SSI NXH WF23FEDDWF-FE-S-MT-SSI Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-MT-TANF Header A 0010STUDENT MEANS-TESTED TANF NXH WF23FEDDWF-FE-S-MT-TANF Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-MT-WIC Header A 0010STUDENT MEANS-TESTED WIC NXH WF23FEDDWF-FE-S-MT-WIC Reference: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFISR23DWF-IS-S-RES Header A 0020STUDENT STATE OF RESIDENCE NXH WWSYSVRDWF-HELP-RES Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFISR23DWF-IS-S-RES-5YR Header A 0010STUDENT FIVE-YEAR RESIDENCE NXH WF23FEDDWF-FE-S-RES-5YR Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFISR23DWF-IS-S-RES-DATE Header A 0080STUDENT STATE RESIDENCE DATE NN Reference: WF-2223-FEDERAL.WF-FE-S-RES
HWFISR23DWF-IS-S-SCHED1 Header A 0010STUDENT FILED SCHEDULE 1 QUEST NXH WF23FEDDWF-FE-S-SCHED1
HWFISR23DWF-IS-S-SP-INC Header A 0070SPOUSE WORK INCOME NN Reference: WF-2223-FEDERAL.WF-FE-S-ST-INC
HWFISR23DWF-IS-S-ST-INC Header A 0070STUDENT WORK INCOME NN Reference: WF-2223-FEDERAL.WF-FE-S-ST-INC
HWFISR23DWF-IS-S-TEST-ACTV Header A 0010STUDENT ACTIVE DUTY TEST NXH WF23FEDDWF-FE-S-TEST-ACTV Reference: WF-2223-FEDERAL.WF-FE-S-TEST-ACTV
HWFISR23DWF-IS-S-TEST-CHL Header A 0010STUDENT CHILD DEPENDENTS TEST NXH WF23FEDDWF-FE-S-TEST-CHL Reference: WF-2223-FEDERAL.WF-FE-S-TEST-CHL
HWFISR23DWF-IS-S-TEST-DEP Header A 0010STUDENT OTHER DEPENDENTS TEST NXH WF23FEDDWF-FE-S-TEST-DEP Reference: WF-2223-FEDERAL.WF-FE-S-TEST-DEP
HWFISR23DWF-IS-S-TEST-DOB Header A 0010STUDENT DATE OF BIRTH TEST NXH WF23FEDDWF-FE-S-TEST-DOB Reference: WF-2223-FEDERAL.WF-FE-S-TEST-DOB
HWFISR23DWF-IS-S-TEST-EMAN Header A 0010STUDENT EMANCIPATED MINOR TEST NXH WF23FEDDWF-FE-S-TEST-EMAN Reference: WF-2223-FEDERAL.WF-FE-S-TEST-EMAN
HWFISR23DWF-IS-S-TEST-GRAD Header A 0010STUDENT GRADUATE TEST NXH WF23FEDDWF-FE-S-TEST-GRAD Reference: WF-2223-FEDERAL.WF-FE-S-TEST-GRAD
HWFISR23DWF-IS-S-TEST-GUAR Header A 0010STUDENT GUARDIANSHIP TEST NXH WF23FEDDWF-FE-S-TEST-GUAR Reference: WF-2223-FEDERAL.WF-FE-S-TEST-GUAR
HWFISR23DWF-IS-S-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST NXH WF23FEDDWF-FE-S-TEST-HMLS Reference: WF-2223-FEDERAL.WF-FE-S-TEST-HMLS
HWFISR23DWF-IS-S-TEST-MAR Header A 0010STUDENT MARITAL TEST NXH WF23FEDDWF-FE-S-TEST-MAR Reference: WF-2223-FEDERAL.WF-FE-S-TEST-MAR
HWFISR23DWF-IS-S-TEST-ORPH Header A 0010STUDENT ORPHAN/WARD TEST NXH WF23FEDDWF-FE-S-TEST-ORPH Reference: WF-2223-FEDERAL.WF-FE-S-TEST-ORPH
HWFISR23DWF-IS-S-TEST-UYHU Header A 0010STUDENT UNACC YOUTH (HUD) TEST NXH WF23FEDDWF-FE-S-TEST-UYHU Reference: WF-2223-FEDERAL.WF-FE-S-TEST-UYHU
HWFISR23DWF-IS-S-TEST-UYSD Header A 0010STUDENT UNACC YOUTH (SDL) TEST NXH WF23FEDDWF-FE-S-TEST-UYSD Reference: WF-2223-FEDERAL.WF-FE-S-TEST-UYSD
HWFISR23DWF-IS-S-TEST-VET Header A 0010STUDENT VETERAN TEST NXH WF23FEDDWF-FE-S-TEST-VET Reference: WF-2223-FEDERAL.WF-FE-S-TEST-VET
HWFISR23DWF-IS-S-U-CSUP Header A 0070STUDENT UTX CHILD SUPPORT RCVD NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-DST-PEN Header A 0070STUDENT UNTXD PENS/DIST NN
HWFISR23DWF-IS-S-U-INT Header A 0070STUDENT UTX INTEREST INCOME NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-IRA Header A 0070STUDENT UTX IRA PAYMENTS NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-LIV Header A 0070STUDENT UTX LIVING ALLOWANCES NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-MONEY Header A 0070STUDENT UTX MONEY RECEIVED NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-OTHER Header A 0070STUDENT UTX OTHER UNTAXED INC NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-PEN Header A 0070STUDENT UTX PENSION PAYMENTS NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-U-VET Header A 0070STUDENT UTX VET NON-ED BENEFIT NN Reference: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFISR23DWF-IS-S-YR-COL Header A 0010STUDENT YEAR IN COLLEGE NXH WF23FEDDWF-FE-S-YR-COL Reference: WF-2223-FEDERAL.WF-FE-S-YR-COL
HWFISR23DWF-IS-SSN Header A 0090STUDENT SOCIAL SECURITY NUMBER NN Reference: WF-2223-FEDERAL.WF-FE-SSN
HWFISR23DWF-ISIR Header 0000ISIR INFORMATION GN The Institutional Student Information Record (ISIR) is transmitted to the institution by the Central Processing System (CPS).
HWFISR23DWF-ISIR-KEY Header A 0110ISIR KEY KN The ISIR key is comprised of FAO and the student'sFINANCIER ID. This key is used in all ISIR file accesss.
HWFISR23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFISR23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFISR23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFISR23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFISR23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WFMCA23D
==========================================
HWFMCA23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUH WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFMCA23DWF-FE-C-REJ1 Header 0000FINANCIAL AID OFFICE KUH WWSYSVRDWF-FAO
HWFMCA23DWF-MC-F9-ASM1 Header A 0040ASSUMPTION HXH Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1001 0000 DOB Test = Yes Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1002 0000 DOB Test = No Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1003 0000 DOB Test = No Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1004 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1005 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1006 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1007 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1008 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1009 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1010 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1011 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1012 0000 Student not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1013 0000 Student has no deps Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 1014 0000 Student not homeless Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2001 0000 Parents married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2002 0000 Parents not married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2003 0000 Parent #fam is 3 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2004 0000 Parent #fam is 2 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2005 0000 Parent #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2006 0000 Parent #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2007 0000 Parent #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2009 0000 Parent #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2010 0000 Par #col is #fam - 2 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2011 0000 Par AGI is inc sum Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2013 0000 Father inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2014 0000 Parent is tax filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2015 0000 Parent is tax filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2016 0000 Parent is tax filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2017 0000 Parent is non filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2018 0000 Parent is non filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2019 0000 Parent fed tax is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2020 0000 Father inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2021 0000 Mother inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2022 0000 Father inc positive Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2023 0000 Mother inc positive Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2026 0000 Parent AFI is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2028 0000 Parent A T Exc blank Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2029 0000 Student elig non-cit Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2030 0000 Student is citizen Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2031 0000 Student is unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2032 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2033 0000 Student is unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2034 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2035 0000 Student is unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2036 0000 Student is married Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2037 0000 Student is unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2038 0000 Student #fam is 2 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2039 0000 Student #fam is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2040 0000 Student #fam is 2 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2041 0000 Student #fam is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2042 0000 Student #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2043 0000 Student #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2045 0000 Student A T Exc blank Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2046 0000 Student #col is 1 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2047 0000 Student unmarried Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2048 0000 Spouse income is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2049 0000 Stu AGI is inc sum Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2051 0000 Student inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2052 0000 Student is filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2053 0000 Student is filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2054 0000 Student is filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2055 0000 Student is non filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2056 0000 Student is non filer Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2057 0000 Student fedtax is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2058 0000 Student inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2059 0000 Student inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2060 0000 Student inc positive Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2061 0000 Spouse inc is AGI Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2062 0000 Spouse inc positive Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
VWFMCA23DWF-MC-F9-ASM1 2065 0000 Student AFI is $0 Assumptions are made when inconsistencies or omissions are found in editing information reported on the financial aid application or in computing expected contributions from that information. For the ISIR calculation, assumptions are reportedfrom CPS-computed information in the FINANCIER ISIR file. For all other methodologies, assumptions result whenever need analysis calculations are performed in FINANCIER.
HWFMCA23DWF-MC-F9-ASM10 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM2 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM3 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM4 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM5 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM6 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM7 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM8 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-ASM9 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-F9-DEP Header A 0010STUDENT DEPENDENCY STATUS 'T'XXXXXXXXXXX HFH WWSYSVRDWF-CAL-DEP Reference: WW-SYSVARS.WF-CAL-DEP
HWFMCA23DWF-MC-F9-DUR Header N 0020ENROLLMENT DURATION Z9 HN Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-F9-FISAP Header PS0080FISAP INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FISAP
HWFMCA23DWF-MC-F9-METH Header A 0010CALCULATION METHODOLOGY 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-METH Reference: WW-SYSVARS.WF-CAL-METH
HWFMCA23DWF-MC-F9-P-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-F9-P-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-F9-P-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-F9-P-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-F9-P-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-F9-P-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-F9-P-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-F9-P-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-F9-P-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-F9-P-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-F9-P-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-F9-P-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-F9-P-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-F9-P-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-F9-P-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-F9-P-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-F9-P-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-F9-P-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-F9-P-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-F9-P-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-F9-P-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-F9-P-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-F9-P-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-F9-P-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-F9-P-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-F9-P-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-F9-P-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-F9-REJ1 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reject codes are produced when errors are found inediting information reported on the financial aid application or in computing expected contributionsfrom that information. For the ISIR calculation, reject codes are reported from CPS-computed information in the FINANCIER ISIR file. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWFMCA23DWF-MC-F9-REJ2 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ3 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ4 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ5 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ6 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-REJ7 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-F9-S-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-F9-S-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-F9-S-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-F9-S-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-F9-S-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-F9-S-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-F9-S-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-F9-S-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-F9-S-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-F9-S-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-F9-S-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-F9-S-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-F9-S-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-F9-S-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-F9-S-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-F9-S-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-F9-S-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-F9-S-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-F9-S-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-F9-S-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-F9-S-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-F9-S-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-F9-S-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-F9-S-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-F9-S-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-F9-S-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-F9-S-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-FM-ASM1 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM10 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM2 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM3 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM4 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM5 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM6 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM7 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM8 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-ASM9 Header A 0040ASSUMPTION HXH WFMCA23DWF-MC-F9-ASM1 Reference: WF-MC-F9-ASM1
HWFMCA23DWF-MC-FM-DEP Header A 0010STUDENT DEPENDENCY STATUS 'T'XXXXXXXXXXX HFH WWSYSVRDWF-CAL-DEP Reference: WW-SYSVARS.WF-CAL-DEP
HWFMCA23DWF-MC-FM-DUR Header N 0020ENROLLMENT DURATION Z9 HN Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-FM-DUR-T Header A 0020ENROLLMENT DURATION 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-DUR Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-FM-FISAP Header PS0080FISAP INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FISAP
HWFMCA23DWF-MC-FM-METH Header A 0010CALCULATION METHODOLOGY 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-METH Reference: WW-SYSVARS.WF-CAL-METH
HWFMCA23DWF-MC-FM-P-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-FM-P-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-FM-P-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-FM-P-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-FM-P-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-FM-P-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-FM-P-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-FM-P-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-FM-P-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-FM-P-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-FM-P-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-FM-P-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-FM-P-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-FM-P-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-FM-P-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-FM-P-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-FM-P-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-FM-P-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-FM-P-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-FM-P-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-FM-P-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-FM-P-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-FM-P-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-FM-P-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-FM-P-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-FM-P-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-FM-P-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-FM-REJ1 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ2 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ3 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ4 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ5 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ6 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-REJ7 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-FM-S-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-FM-S-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-FM-S-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-FM-S-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-FM-S-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-FM-S-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-FM-S-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-FM-S-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-FM-S-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-FM-S-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-FM-S-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-FM-S-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-FM-S-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-FM-S-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-FM-S-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-FM-S-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-FM-S-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-FM-S-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-FM-S-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-FM-S-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-FM-S-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-FM-S-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-FM-S-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-FM-S-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-FM-S-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-FM-S-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-FM-S-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-IM-ASM1 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM10 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM2 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM3 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM4 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM5 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM6 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM7 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM8 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-ASM9 Header A 0040ASSUMPTION HXH WWSYSVRDWF-CAL-ASM-IM Reference: WW-SYSVARS.WF-CAL-ASM-FM
HWFMCA23DWF-MC-IM-DEP Header A 0010STUDENT DEPENDENCY STATUS 'T'XXXXXXXXXXX HFH WWSYSVRDWF-CAL-DEP Reference: WW-SYSVARS.WF-CAL-DEP
HWFMCA23DWF-MC-IM-DUR Header N 0020ENROLLMENT DURATION Z9 HN Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-IM-DUR-T Header A 0020ENROLLMENT DURATION 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-DUR Reference: WW-SYSVARS.WF-CAL-DUR
HWFMCA23DWF-MC-IM-FISAP Header PS0080FISAP INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IM-METH Header A 0010CALCULATION METHODOLOGY 'T'XXXXXXXXXX HFH WWSYSVRDWF-CAL-METH Reference: WW-SYSVARS.WF-CAL-METH
HWFMCA23DWF-MC-IM-P-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IM-P-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-IM-P-ANAL Header A 0010ANALYSIS TYPE T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-IM-P-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-IM-P-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-IM-P-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-IM-P-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-IM-P-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-IM-P-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-IM-P-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-IM-P-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-IM-P-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-IM-P-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-IM-P-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-IM-P-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-IM-P-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-IM-P-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-IM-P-HE Header PS0080HOME EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-HE
HWFMCA23DWF-MC-IM-P-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-IM-P-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-IM-P-IRA Header PS0080IRA/KEOGH ACCOUNTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IRA
HWFMCA23DWF-MC-IM-P-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-IM-P-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-IM-P-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-IM-P-MDA Header PS0080MEDICAL/DENTAL ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-MDA
HWFMCA23DWF-MC-IM-P-NC Header P 0032WF-CAL-NC ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-IM-P-NW Header PS0080WF-CAL-NW ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-IM-P-OA Header PS0080WF-CAL-OA ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OA
HWFMCA23DWF-MC-IM-P-OAA Header PS0080WF-CAL-OAA ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OAA
HWFMCA23DWF-MC-IM-P-OAS Header PS0080WF-CAL-OAS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OAS
HWFMCA23DWF-MC-IM-P-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-IM-P-TA Header PS0080TUITION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TA
HWFMCA23DWF-MC-IM-P-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-IM-P-TRST Header PS0080TRUST ACCOUNTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TRST
HWFMCA23DWF-MC-IM-P-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-IM-REJ1 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ2 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ3 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ4 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ5 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ6 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-REJ7 Header A 0020REJECT CODE XX HXH WWSYSVRDWF-CAL-REJ Reference: WW-SYSVARS.WF-CAL-REJ
HWFMCA23DWF-MC-IM-S-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IM-S-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-IM-S-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-IM-S-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-IM-S-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-IM-S-BFW Header PS0080BUSINESS/FARM NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-BFW
HWFMCA23DWF-MC-IM-S-CAI Header PS0080CALCULATED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CAI
HWFMCA23DWF-MC-IM-S-CASH Header PS0080CASH ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CASH
HWFMCA23DWF-MC-IM-S-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-IM-S-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-IM-S-CP Header P 0032CONVERSION PERCENTAGE ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-CP
HWFMCA23DWF-MC-IM-S-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-IM-S-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-IM-S-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-IM-S-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-IM-S-FICA Header PS0080FICA TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FICA
HWFMCA23DWF-MC-IM-S-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-IM-S-HE Header PS0080HOME EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-HE
HWFMCA23DWF-MC-IM-S-IE Header PS0080INVESTMENT EQUITY ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IE
HWFMCA23DWF-MC-IM-S-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-IM-S-IRA Header PS0080IRA/KEOGH ACCOUNTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IRA
HWFMCA23DWF-MC-IM-S-IS Header PS0080INCOME SUPPLEMENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IS
HWFMCA23DWF-MC-IM-S-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-IM-S-JI Header PS0080INCOME ADJUSTMENTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-JI
HWFMCA23DWF-MC-IM-S-MDA Header PS0080MEDICAL/DENTAL ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-MDA
HWFMCA23DWF-MC-IM-S-NC Header P 0032WF-CAL-NC ZZ9.99% HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-IM-S-NW Header PS0080WF-CAL-NW ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-IM-S-OA Header PS0080WF-CAL-OA ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OA
HWFMCA23DWF-MC-IM-S-OAA Header PS0080WF-CAL-OAA ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OAA
HWFMCA23DWF-MC-IM-S-OAS Header PS0080WF-CAL-OAS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-OAS
HWFMCA23DWF-MC-IM-S-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-IM-S-TA Header PS0080TUITION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TA
HWFMCA23DWF-MC-IM-S-TI Header PS0080TAXABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TI
HWFMCA23DWF-MC-IM-S-TRST Header PS0080TRUST ACCOUNTS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-TRST
HWFMCA23DWF-MC-IM-S-UI Header PS0080UNTAXED INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-UI
HWFMCA23DWF-MC-IS-DEP Header A 0010STUDENT DEPENDENCY STATUS 'T'XXXXXXXXXXX HFH WWSYSVRDWF-CAL-DEP Reference: WW-SYSVARS.WF-CAL-DEP
HWFMCA23DWF-MC-IS-FISAP Header PS0080FISAP INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FISAP
HWFMCA23DWF-MC-IS-P-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IS-P-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-IS-P-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-IS-P-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-IS-P-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-IS-P-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-IS-P-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-IS-P-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-IS-P-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-IS-P-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-IS-P-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-IS-P-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-IS-P-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-IS-P-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-IS-P-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-IS-P-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-IS-P-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MC-IS-REJ1 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ2 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ3 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ4 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ5 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ6 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-REJ7 Header A 0020REJECT CODE XX HXH WF23FEDDWF-FE-C-REJ1 Reference: WF-MC-F9-REJ1
HWFMCA23DWF-MC-IS-S-AAI Header PS0080ADJUSTED AVAILABLE INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AAI
HWFMCA23DWF-MC-IS-S-AI Header PS0080AVAILABLE/DISCRETIONARY INCOMEZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AI
HWFMCA23DWF-MC-IS-S-ANAL Header A 0010ANALYSIS TYPE 'T'XXXXXXX HFH WWSYSVRDWF-CAL-ANAL Reference: WW-SYSVARS.WF-CAL-ANAL
HWFMCA23DWF-MC-IS-S-APA Header PS0080ASSET PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-APA
HWFMCA23DWF-MC-IS-S-AT Header PS0080TOTAL ALLOWANCES ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-AT
HWFMCA23DWF-MC-IS-S-CFA Header PS0080CONTRIBUTION FROM ASSETS ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFA
HWFMCA23DWF-MC-IS-S-CFI Header PS0080CONTRIBUTION FROM INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CFI
HWFMCA23DWF-MC-IS-S-CS Header PS0080CONTRIBUTION FOR STUDENT ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CS
HWFMCA23DWF-MC-IS-S-CT Header PS0080TOTAL CONTRIBUTION ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-CT
HWFMCA23DWF-MC-IS-S-DNW Header PS0080DISCRETIONARY NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-DNW
HWFMCA23DWF-MC-IS-S-EA Header PS0080EMPLOYMENT ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-EA
HWFMCA23DWF-MC-IS-S-FT Header PS0080FEDERAL INCOME TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-FT
HWFMCA23DWF-MC-IS-S-IPA Header PS0080INCOME PROTECTION ALLOWANCE ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IPA
HWFMCA23DWF-MC-IS-S-IT Header PS0080TOTAL INCOME ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-IT
HWFMCA23DWF-MC-IS-S-NC Header P 0010FAMILY MEMBERS IN COLLEGE 9 HN Reference: WW-SYSVARS.WF-CAL-NC
HWFMCA23DWF-MC-IS-S-NW Header PS0080NET WORTH ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-NW
HWFMCA23DWF-MC-IS-S-ST Header PS0080STATE/OTHER TAX ZZ,ZZZ,ZZ9- HN Reference: WW-SYSVARS.WF-CAL-ST
HWFMCA23DWF-MCAL-F9 Header 0000INAS FM 9-MONTH SUMMARY GN
HWFMCA23DWF-MCAL-F9-PARENT Header 0000INAS FM 9-MONTH PARENT GN
HWFMCA23DWF-MCAL-F9-STUDENT Header 0000INAS FM 9-MONTH STUDENT GN
HWFMCA23DWF-MCAL-FM Header 0000INAS FM ENR-ADJUSTED SUMMARY GN
HWFMCA23DWF-MCAL-FM-PARENT Header 0000INAS FM ENR-ADJUSTED PARENT GN
HWFMCA23DWF-MCAL-FM-STUDENT Header 0000INAS FM ENR-ADJUSTED STUDENT GN
HWFMCA23DWF-MCAL-IM Header 0000INAS IM ENR-ADJUSTED SUMMARY GN
HWFMCA23DWF-MCAL-IM-PARENT Header 0000INAS IM ENR-ADJUSTED PARENT GN
HWFMCA23DWF-MCAL-IM-STUDENT Header 0000INAS IM ENR-ADJUSTED STUDENT GN
HWFMCA23DWF-MCAL-ISIR Header 0000ISIR FM 9-MONTH SUMMARY GN
HWFMCA23DWF-MCAL-ISIR-PARENT Header 0000ISIR FM 9-MONTH PARENT GN
HWFMCA23DWF-MCAL-ISIR-STUDENTHeader 0000ISIR FM 9-MONTH STUDENT GN
HWFMCA23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFMCA23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
==========================================
= WFNSL23D
==========================================
HWFNSL23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFNSL23DWF-NS-BANKRUPT Header A 0010ACTIVE BANKRUPTCY NXH Active bankruptcy status may affect the student's ability to borrow under federal financial aid programs.
VWFNSL23DWF-NS-BANKRUPT N 0000 Not in act bankrptcy WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
VWFNSL23DWF-NS-BANKRUPT Y 0000 In active bankruptcy WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-BANKRUPT-CHG Header A 0010ACTIVE BANKRUPTCY CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-C-ENR-PATTERN Header A 0010ENROLLMENT PATTERN FLAG NXH Highlights a student with an enrollment history that may require attention.
VWFNSL23DWF-NS-C-ENR-PATTERN 1 0000 For FSA use only Highlights a student with an enrollment history that may require attention.
VWFNSL23DWF-NS-C-ENR-PATTERN 2 0000 Possible problem Highlights a student with an enrollment history that may require attention.
VWFNSL23DWF-NS-C-ENR-PATTERN 3 0000 School must resolve Highlights a student with an enrollment history that may require attention.
VWFNSL23DWF-NS-C-ENR-PATTERN N 0000 No problem Highlights a student with an enrollment history that may require attention.
HWFNSL23DWF-NS-C-LEU Header A 0070PELL LIFETIME ELIG USED % NN The percentage of Pell lifetime limit that has been disbursed to the student. The value accrues at the rate of 100% per year of fully disbursed scheduled award; the limit is 600% (12 semesters' worth).
HWFNSL23DWF-NS-C-LEU-FLAG Header A 0010PELL LIFETIME ELIG USED FLAG NXH Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
VWFNSL23DWF-NS-C-LEU-FLAG C 0000 Close to Pell limit Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
VWFNSL23DWF-NS-C-LEU-FLAG E 0000 At/exceed Pell limit Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
VWFNSL23DWF-NS-C-LEU-FLAG H 0000 High Pell percent Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
VWFNSL23DWF-NS-C-LEU-FLAG N 0000 No problem Highlights a student who is approaching or has exceeded the total lifetime limit for Pell grants.
HWFNSL23DWF-NS-C-SUB-LE-FLAG Header A 0010SUB USAGE LIM APPLIES FLAG NXH Marks the applicant as being monitored for length of time receiving subsidized Direct loans. A student can receive subsidized loans for no more than 150% of the length of the academic program in which the student is enrolled.
VWFNSL23DWF-NS-C-SUB-LE-FLAG N 0000 No Marks the applicant as being monitored for length of time receiving subsidized Direct loans. A student can receive subsidized loans for no more than 150% of the length of the academic program in which the student is enrolled. For the ISIR calculation, reject codes are reported from CPS-computed information in the FINANCIER ISIR file. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
VWFNSL23DWF-NS-C-SUB-LE-FLAG Y 0000 Yes Marks the applicant as being monitored for length of time receiving subsidized Direct loans. A student can receive subsidized loans for no more than 150% of the length of the academic program in which the student is enrolled. For the ISIR calculation, reject codes are reported from CPS-computed information in the FINANCIER ISIR file. For all other methodologies, reject codes are determined whenever need analysis calculations areperformed in FINANCIER.
HWFNSL23DWF-NS-C-SUB-LE-USED Header A 0060SUB LOAN ELIGIBILITY USED NXH The total time (measured in academic years) over which the student has received subsidized Direct loans. A student can receive subsidized loans forno more than 150% of the length of the academic program in which the student is enrolled. The Subsidized Eligibility Used is loaded from thestudent's ISIR and is updated when COD-calulated values are returned in Direct loan response files.
HWFNSL23DWF-NS-C-SUB-USAGE-PDHeader A 0060SUB LOAN USAGE PERIOD N The total time (measured in academic years) over which the student has received subsidized Direct loans. A student can receive subsidized loans forno more than 150% of the length of the academic program in which the student is enrolled. The Subsidized Eligibility Used is loaded from thestudent's ISIR and is updated when COD-calulated values are returned in Direct loan response files.
HWFNSL23DWF-NS-CMB-LIMIT-GR Header A 0010SUB+UNSUB DL/FFEL LIMIT (GR) NXH WFNSL23DWF-NS-SUB-LIMIT-UG Reference: WF-NS-CMB-LIMIT-UG
HWFNSL23DWF-NS-CMB-LIMIT-UG Header A 0010SUB+UNSUB DL/FFEL LIMIT (UG) NXH WFNSL23DWF-NS-SUB-LIMIT-UG The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-CMB-OUT Header A 0060OUTSTANDING SUB+UNSUB DL/FFEL NXH WFNSL23DWF-NS-SUB-OUT The outstanding principal balance may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-CMB-PEND Header A 0060PENDING SUB+UNSUB DL/FFEL DSB NXH WFNSL23DWF-NS-SUB-OUT The pending disbursements may affect the student'seligibility for further Stafford loans.
HWFNSL23DWF-NS-CMB-TOTAL Header A 0060SUB+UNSUB DL/FFEL TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-CON-OUT Header A 0060OUTSTANDING CONSOLIDTD DL/FFEL NXH WFNSL23DWF-NS-SUB-OUT The outstanding principal balance may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-CON-TOTAL Header A 0060CONSOLIDATED DL/FFEL TOTAL NXH The total loan amount may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-DL-MPN Header A 0010DIRECT LOAN MPN STATUS NXH The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
VWFNSL23DWF-NS-DL-MPN A 0000 Active The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
VWFNSL23DWF-NS-DL-MPN C 0000 Closed The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
VWFNSL23DWF-NS-DL-MPN I 0000 Inactive The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
VWFNSL23DWF-NS-DL-MPN N 0000 No MPN on file The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Master Promissory Note.
HWFNSL23DWF-NS-DLG-MPN Header A 0010DIRECT GRAD PLUS MPN STATUS NXH WFNSL23DWF-NS-DLP-MPN The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending Graduate PLUS Master Promissory Note.
HWFNSL23DWF-NS-DLP-MPN Header A 0010DIRECT PLUS LOAN MPN STATUS NXH The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN A 0000 Active The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN C 0000 Closed The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN E 0000 Accepted/Inactive The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN I 0000 Inactive The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
VWFNSL23DWF-NS-DLP-MPN N 0000 No MPN on file The NSLDS information transmitted includes the status (if appropriate) of any Direct Lending PLUS Master Promissory Note.
HWFNSL23DWF-NS-IAAS-OVP Header A 0010IAAS GRANT OVERPAYMENT NXH WFNSL23DWF-NS-PELL-OVP The Iraq and Afghanistan Service (IAAS) Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-IAAS-OVP-CTC Header A 0080IAAS GRANT OVERPAYMT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC Reference: WF-NS-IAAS-OVP
HWFNSL23DWF-NS-L01-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Each loan's original total amount is carried in the student's record.
HWFNSL23DWF-NS-L01-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Each loan's begin and end dates are recorded.
HWFNSL23DWF-NS-L01-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH The student's decision regarding capitalization ofthe interest that accrues on a loan is carried in the student's record.
VWFNSL23DWF-NS-L01-CAP N 0000 Int not capitalized The student's decision regarding capitalization ofthe interest that accrues on a loan is carried in the student's record.
VWFNSL23DWF-NS-L01-CAP Y 0000 Interest capitalized The student's decision regarding capitalization ofthe interest that accrues on a loan is carried in the student's record.
HWFNSL23DWF-NS-L01-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG The loan's change flag indicates a change in some aspect of the loan information since the last transmission of NSLDS information.
HWFNSL23DWF-NS-L01-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Each loan carries a contact and associated contacttype.
HWFNSL23DWF-NS-L01-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L01-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Each loan's last disbursement amount is carried inthe student's record. The last disbursement is associated with the last disbursement date.
HWFNSL23DWF-NS-L01-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L01-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L01-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT The guarantee agency associated with each loan is carried in the student's record.
HWFNSL23DWF-NS-L01-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT The student's grade level at the time of each loanis noted.
HWFNSL23DWF-NS-L01-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH Each loan's outstanding balance is carried in the student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-OUT N/A 0000 Not applicable Each loan's outstanding balance is carried in the student's record. The outstanding balance is associated with the effective date of its determination.
HWFNSL23DWF-NS-L01-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L01-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH Each loan is identified by a loan program.
VWFNSL23DWF-NS-L01-PROG CH 0000 FFEL Cons Health Lns Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG CL 0000 FFEL Consolidated Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG CO 0000 FFEL Cons Other Lns Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG CS 0000 FFEL Cons Sub Lns Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG CU 0000 FFEL Cons Unsub Lns Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D0 0000 Direct Sub-SULA Elig Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D1 0000 Direct Subsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D2 0000 Direct Unsubsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D3 0000 Direct Grad PLUS Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D4 0000 Direct PLUS Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D5 0000 Direct Cons Unsub Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D6 0000 Direct Cons Sub Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D7 0000 Direct Cons PLUS Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D8 0000 Direct TEACH Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG D9 0000 Direct Cons Sub-SULA Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG DU 0000 Nationl Defense Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG EU 0000 Perkins Exp Lending Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG FI 0000 Fed Ins Student Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG GB 0000 Graduate PLUS Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG IC 0000 Income Contngnt Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG NU 0000 Natl Direct Stu Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG PL 0000 FFEL PLUS Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG PU 0000 Federal Perkins Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG RF 0000 FFEL Refinanced Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG SF 0000 FFEL Subsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG SL 0000 Supplemental Loan Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG SN 0000 FFEL Non-Subsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-PROG SU 0000 FFEL Unsubsidized Each loan is identified by a loan program. student's record. The outstanding balance is associated with the effective date of its determination.
HWFNSL23DWF-NS-L01-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT The institution originally associated with each loan is carried in the student's record.
HWFNSL23DWF-NS-L01-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH 01 12 Each loan is assigned a sequence number.
HWFNSL23DWF-NS-L01-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA AL 0000 Abandoned Loan Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA BC 0000 Bankrupt,Discharged Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA BK 0000 Bankrupt,Active Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA CA 0000 Cancelled Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA CS 0000 Closed Sch Discharge Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DA 0000 Deferred Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DB 0000 Defltd,Bnkrpt,Active Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DC 0000 Defltd,Compromise Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DD 0000 Defltd,Death Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DE 0000 Death Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DF 0000 Defltd,Unresolved Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DI 0000 Disability Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DK 0000 Defltd,Bnkrpt,Disch Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DL 0000 Defltd,In litigation Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DN 0000 Defltd,Paid via Cons Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DO 0000 Defltd,Bnkrpt,Act,Ot Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DP 0000 Defltd,Paid in full Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DR 0000 Defltd,Incl Roll-up Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DS 0000 Defltd,Disabled Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DT 0000 Defltd,Collectn term Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DU 0000 Defltd,Unresolved Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DW 0000 Defltd,Writeoff/Comp Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DX 0000 Defltd,6 consec pmts Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA DZ 0000 Defltd,After 6 Pmts Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FB 0000 Forbearance Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FC 0000 False Cert Discharge Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FD 0000 Fraud,Defaulted Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FR 0000 Fraud Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA FX 0000 Fraud,Resolved Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA IA 0000 Loan Originated Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA ID 0000 In school/grace pd Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA IG 0000 In Grace Period Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA IM 0000 In Military Grace Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA IP 0000 In Post-Defrmt Grace Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA OD 0000 Defltd,Bnkrpt disch Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PC 0000 Paid via consol loan Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PD 0000 Permanently disabled Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PF 0000 Paid in full Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PM 0000 Presumed Paid Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PN 0000 Paid via Consol Loan Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PX 0000 Ident Theft,Dischrgd Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA PZ 0000 PLUS Loan,Died Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA RF 0000 Refinanced Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA RP 0000 In repayment Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UA 0000 Temp Unins-No Deflt Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UB 0000 Temp Unins-Deflt Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UC 0000 Perm Unins-No Deflt Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UD 0000 Perm Unins-Deflt Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA UI 0000 Uninsured/Unreimbrsd Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
VWFNSL23DWF-NS-L01-STA XD 0000 Defltd,Satis,6 Pmts Each loan carries a current loan status. The current loan status is associated with the effective date of its determination.
HWFNSL23DWF-NS-L01-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L01-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX Among the NSLDS information summarizing the overall state of the student's outstanding loans. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-SUBSIDY L 0000 Lost subsidy Among the NSLDS information summarizing the overall state of the student's outstanding loans. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-SUBSIDY N 0000 N/A or no change Among the NSLDS information summarizing the overall state of the student's outstanding loans. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-SUBSIDY R 0000 Reinstated subsidy Among the NSLDS information summarizing the overall state of the student's outstanding loans. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
HWFNSL23DWF-NS-L01-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L01-TYPE Header A 0010LOAN TYPE NXH Each loan is flagged as being in default, or a recent loan.
VWFNSL23DWF-NS-L01-TYPE D 0000 Defaulted loan Each loan is flagged as being in default, or a recent loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-TYPE R 0000 Recent loan Each loan is flagged as being in default, or a recent loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-TYPE T 0000 Discharged loan Each loan is flagged as being in default, or a recent loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
HWFNSL23DWF-NS-L01-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan.
VWFNSL23DWF-NS-L01-XUNS B 0000 PLUS denial and HPL An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-XUNS H 0000 Not extended unsub An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-XUNS N 0000 PLUS denial and HPL An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
VWFNSL23DWF-NS-L01-XUNS P 0000 PLUS denial An extended unsubsidized loan may be offered to a student receiving a Health Profession Loan or whose parents have been denied a PLUS loan. The Subsidy Status highlights changes in whether interest on this loan may be subsidized; the Subsidy Status date indicates when the current status was set.
HWFNSL23DWF-NS-L02-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L02-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L02-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L02-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L02-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L02-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L02-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L02-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L02-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L02-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L02-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L02-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L02-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L02-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L02-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L02-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L02-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L02-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L02-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L02-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L02-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L02-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-L03-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L03-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L03-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L03-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L03-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L03-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L03-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L03-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L03-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L03-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L03-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L03-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L03-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L03-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L03-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L03-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L03-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L03-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L03-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L03-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L03-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L03-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-L04-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L04-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L04-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L04-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L04-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L04-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L04-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L04-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L04-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L04-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L04-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L04-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L04-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L04-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L04-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L04-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L04-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L04-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L04-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L04-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L04-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L04-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-L05-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L05-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L05-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L05-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L05-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L05-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L05-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L05-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L05-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L05-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L05-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L05-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L05-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L05-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L05-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L05-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L05-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L05-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L05-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L05-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L05-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L05-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-L06-AMT Header A 0060LOAN AMOUNT XXX,XXX NN Reference: WF-NS-L01-AMT
HWFNSL23DWF-NS-L06-BEG-DATE Header A 0080LOAN BEGIN DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L06-CAP Header A 0010LOAN INTEREST CAPITALIZED NXH WFNSL23DWF-NS-L01-CAP Reference: WF-NS-L01-CAP
HWFNSL23DWF-NS-L06-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-L01-CHG
HWFNSL23DWF-NS-L06-CONTACT Header A 0080LOAN CONTACT NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L06-CTC-TYPE Header A 0030LOAN CONTACT TYPE NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-CONTACT
HWFNSL23DWF-NS-L06-DSB Header A 0060LOAN LAST DISBURSEMENT XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L06-DSB-DATE Header A 0080LOAN LAST DISBURSEMENT DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-DSB
HWFNSL23DWF-NS-L06-END-DATE Header A 0080LOAN END DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-BEG-DATE
HWFNSL23DWF-NS-L06-GA Header A 0030LOAN GUARANTEE AGENCY NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-GA
HWFNSL23DWF-NS-L06-LEVEL Header A 0030LOAN CLASS LEVEL NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-LEVEL
HWFNSL23DWF-NS-L06-OUT Header A 0060LOAN OUTSTANDING BALANCE XXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L06-OUT-DATE Header A 0080LOAN OUTSTANDING BALANCE DATE XXXXXXXXXX NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-OUT
HWFNSL23DWF-NS-L06-PROG Header A 0020LOAN PROGRAM 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-PROG Reference: WF-NS-L01-PROG
HWFNSL23DWF-NS-L06-SCHOOL Header A 0080LOAN INSTITUTION NXH WFNSL23DWF-NS-L01-OUT Reference: WF-NS-L01-SCHOOL
HWFNSL23DWF-NS-L06-SEQ Header A 0020LOAN SEQUENCE NUMBER NXH WFNSL23DWF-NS-L01-SEQ Reference: WF-NS-L01-SEQ
HWFNSL23DWF-NS-L06-STA Header A 0020LOAN STATUS 'T'XXXXXXXXXXXXXXXXXXXX NXH WFNSL23DWF-NS-L01-STA Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L06-STA-DATE Header A 0080LOAN STATUS DATE XX/XX/XXXX NN Reference: WF-NS-L01-STA
HWFNSL23DWF-NS-L06-SUBSIDY Header A 0010LOAN SUBSIDY STATUS 'T'XXXXXXXXXXXXXXXXXXXX N WFNSL23DWF-NS-L01-SUBSIDY Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L06-SUBSIDY-DTHeader A 0080LOAN SUBSIDY STATUS DATE XX/XX/XXXX N Reference: WF-NS-L01-SUBSIDY
HWFNSL23DWF-NS-L06-TYPE Header A 0010LOAN TYPE NXH WFNSL23DWF-NS-L01-TYPE Reference: WF-NS-L01-TYPE
HWFNSL23DWF-NS-L06-XUNS Header A 0010LOAN EXTENDED UNSUBSIDIZED NXH WFNSL23DWF-NS-L01-XUNS Reference: WF-NS-L01-XUNS
HWFNSL23DWF-NS-LOAN-ADTNL Header A 0010ADDITIONAL LOAN INFORMATION NXH WFNSL23DWF-NS-PELL-ADTNL The NSLDS information transmitted is limited to three Pell Grant payments, three ACG payments, three SMART Grant payments, three TEACH Grant payments, and six loans. The availability of additional information in the National Student Loan Data System (NSLDS) for the student is noted.
HWFNSL23DWF-NS-LOAN-CHG Header A 0010LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Changes in the student's status (bankruptcy, loan default status, etc.) since the last transmission of NSLDS information are noted in a variety of change flags.
HWFNSL23DWF-NS-LOAN-DEF Header A 0010DEFAULTED LOAN FLAG NXH The inclusion in the student's record of defaultedloans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DEF N 0000 No defaulted loans The inclusion in the student's record of defaultedloans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DEF Y 0000 Defaulted loan(s) The inclusion in the student's record of defaultedloans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
HWFNSL23DWF-NS-LOAN-DEF-CHG Header A 0010DEFAULTED LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-LOAN-DIS Header A 0010DISCHARGED LOAN FLAG NXH Reference: WF-NS-LOAN-DEF
VWFNSL23DWF-NS-LOAN-DIS C 0000 Conditional Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS D 0000 Death Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS M 0000 Multiple Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS N 0000 None Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS P 0000 Permanent Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-DIS R 0000 Reaffirmed Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
HWFNSL23DWF-NS-LOAN-DIS-CHG Header A 0010DISCHARGED LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-LOAN-FRD Header A 0010FRAUD LOAN FLAG NXH Reference: WF-NS-LOAN-DEF
VWFNSL23DWF-NS-LOAN-FRD N 0000 No fraud loans Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-FRD Y 0000 Fraud loan(s) Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
HWFNSL23DWF-NS-LOAN-FRD-CHG Header A 0010FRAUD LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-LOAN-REP Header A 0010SATISFACTORY REPAYMENT FLAG NXH Reference: WF-NS-LOAN-DEF
VWFNSL23DWF-NS-LOAN-REP N 0000 No satis repmt loans Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
VWFNSL23DWF-NS-LOAN-REP Y 0000 Loan(s) in sat repmt Reference: WF-NS-LOAN-DEF loans, fraud loans, discharged loans, and loans insatisfactory repayment status are noted.
HWFNSL23DWF-NS-LOAN-REP-CHG Header A 0010SATISFACTORY REPMT CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-OVPMT-CHG Header A 0010OVERPAYMENTS CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Changes in the student's overpayment status (in a number of federal programs) since the last NSLDS data transmission are noted.
HWFNSL23DWF-NS-P1-ADDL-ELIG Header A 0010PELL ADDITIONAL ELIGIBILITY NXH The student's eligibility for a second Pell Grant in the same award year is recorded in the grant payment record.
VWFNSL23DWF-NS-P1-ADDL-ELIG N 0000 No The student's eligibility for a second Pell Grant in the same award year is recorded in the grant payment record.
VWFNSL23DWF-NS-P1-ADDL-ELIG Y 0000 Yes The student's eligibility for a second Pell Grant in the same award year is recorded in the grant payment record.
HWFNSL23DWF-NS-P1-AWARD Header A 0060PELL AWARD XXX,XXX NN The amount of the student's grant award (the scheduled award, adjusted for enrollment level and duration) is recorded.
HWFNSL23DWF-NS-P1-DATE Header A 0080PELL MOST RECENT UPDATE XXXXXXXXXX NXH The date of the most recent update is carried in each grant payment record.
VWFNSL23DWF-NS-P1-DATE N/A 0000 Not applicable The date of the most recent update is carried in each grant payment record. and duration) is recorded.
HWFNSL23DWF-NS-P1-EFC Header A 0060PELL FAMILY CONTRIBUTION XXX,XXX NN The EFC and federal verification status associatedwith the recorded federal transaction are capturedin the Pell Grant payment record.
HWFNSL23DWF-NS-P1-PAID Header A 0060PELL AMOUNT PAID XXX,XXX NN The amount of the grant paid to date is recorded in each grant payment record.
HWFNSL23DWF-NS-P1-SCH-AWD Header A 0060PELL SCHEDULED AWARD XXX,XXX NN The amount of the Pell Grant scheduled award and the percentage of that eligibility used are recorded.
HWFNSL23DWF-NS-P1-SCH-PCT Header A 0070PELL PERCENT SCH AWARD USED XXX.XX% NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P1-SCHOOL Header A 0080PELL SCHOOL CODE NN The institution reporting the grant payment is recorded with the payment.
HWFNSL23DWF-NS-P1-SEQ Header A 0020PELL SEQUENCE NUMBER NXH 1 3 Each grant payment is assigned a sequence number.
HWFNSL23DWF-NS-P1-TRAN Header A 0020PELL FEDERAL TRANSACTION NN The federal transaction associated with the grant payment is recorded.
HWFNSL23DWF-NS-P1-VER Header A 0030PELL VERIFICATION FLAG NXH Reference: WF-NS-P1-EFC
VWFNSL23DWF-NS-P1-VER N/A 0000 Not applicable Reference: WF-NS-P1-EFC
VWFNSL23DWF-NS-P1-VER S 0000 Selected/will not be Reference: WF-NS-P1-EFC
VWFNSL23DWF-NS-P1-VER V 0000 Verified Reference: WF-NS-P1-EFC
VWFNSL23DWF-NS-P1-VER W 0000 Selected/not yet ver Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-P2-ADDL-ELIG Header A 0010PELL ADDITIONAL ELIGIBILITY NXH WFNSL23DWF-NS-P1-ADDL-ELIG Reference: WF-NS-P1-ADDL-ELIG
HWFNSL23DWF-NS-P2-AWARD Header A 0060PELL AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-P2-DATE Header A 0080PELL MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-P2-EFC Header A 0060PELL FAMILY CONTRIBUTION XXX,XXX NN Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-P2-PAID Header A 0060PELL AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-P2-SCH-AWD Header A 0060PELL SCHEDULED AWARD XXX,XXX NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P2-SCH-PCT Header A 0070PELL PERCENT SCH AWARD USED XXX.XX% NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P2-SCHOOL Header A 0080PELL SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-P2-SEQ Header A 0020PELL SEQUENCE NUMBER NXH WFNSL23DWF-NS-P1-SEQ Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-P2-TRAN Header A 0020PELL FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-P2-VER Header A 0030PELL VERIFICATION FLAG NXH WFNSL23DWF-NS-P1-VER Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-P3-ADDL-ELIG Header A 0010PELL ADDITIONAL ELIGIBILITY NXH WFNSL23DWF-NS-P1-ADDL-ELIG Reference: WF-NS-P1-ADDL-ELIG
HWFNSL23DWF-NS-P3-AWARD Header A 0060PELL AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-P3-DATE Header A 0080PELL MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-P3-EFC Header A 0060PELL FAMILY CONTRIBUTION XXX,XXX NN Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-P3-PAID Header A 0060PELL AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-P3-SCH-AWD Header A 0060PELL SCHEDULED AWARD XXX,XXX NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P3-SCH-PCT Header A 0070PELL PERCENT SCH AWARD USED XXX.XX% NN Reference: WF-NS-P1-SCH-AWD
HWFNSL23DWF-NS-P3-SCHOOL Header A 0080PELL SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-P3-SEQ Header A 0020PELL SEQUENCE NUMBER NXH WFNSL23DWF-NS-P1-SEQ Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-P3-TRAN Header A 0020PELL FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-P3-VER Header A 0030PELL VERIFICATION FLAG NXH WFNSL23DWF-NS-P1-VER Reference: WF-NS-P1-EFC
HWFNSL23DWF-NS-PELL-ADTNL Header A 0010ADDITIONAL PELL INFORMATION NXH Reference: WF-NS-LOAN-ADTNL
VWFNSL23DWF-NS-PELL-ADTNL N 0000 Additional detail Reference: WF-NS-LOAN-ADTNL
VWFNSL23DWF-NS-PELL-ADTNL Y 0000 No additional detail Reference: WF-NS-LOAN-ADTNL
HWFNSL23DWF-NS-PELL-CHG Header A 0010PELL GRANT CHANGE FLAG NXH Reference: WF-NS-LOAN-CHG
VWFNSL23DWF-NS-PELL-CHG # 0000 Change Reference: WF-NS-LOAN-CHG
VWFNSL23DWF-NS-PELL-CHG N 0000 No change Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-PELL-OVP Header A 0010PELL GRANT OVERPAYMENT NXH The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP D 0000 Overpayment deferred The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP F 0000 Fraud The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP N 0000 No overpayment The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP S 0000 Satis repmt arranged The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP W 0000 Overpayment waived The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP Y 0000 Overpayment The Pell Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-PELL-OVP-CTC Header A 0080PELL GRANT OVERPAYMENT CONTACT NXH Reference: WF-NS-PELL-OVP
VWFNSL23DWF-NS-PELL-OVP-CTC N/A 0000 Not applicable Reference: WF-NS-PELL-OVP the student's eligibility for further federal financial aid. A contact is provided for further information.
VWFNSL23DWF-NS-PELL-OVP-CTC Y 0000 Multiple contacts Reference: WF-NS-PELL-OVP the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-PERK-CHG Header A 0010PERKINS LOAN CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-PERK-CUR Header A 0060CURRENT YEAR PERKINS LOAN NXH WFNSL23DWF-NS-SUB-OUT The current year loan amount may affect the student's eligibility for further Perkins loans.
HWFNSL23DWF-NS-PERK-OVP Header A 0010PERKINS LOAN OVERPAYMENT NXH WFNSL23DWF-NS-PELL-OVP The Perkins loan overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-PERK-OVP-CTC Header A 0080PERKINS LOAN OVERPAYMT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC Reference: WF-NS-PERK-OVP
HWFNSL23DWF-NS-PERK-TOTAL Header A 0060PERKINS LOAN TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further Perkins loans.
HWFNSL23DWF-NS-SEOG-OVP Header A 0010SEOG GRANT OVERPAYMENT NXH WFNSL23DWF-NS-PELL-OVP The SEOG Grant overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-SEOG-OVP-CTC Header A 0080SEOG GRANT OVERPAYMENT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC Reference: WF-NS-SEOG-OVP
HWFNSL23DWF-NS-SUB-LIMIT Header 0000SEOG GRANT OVERPAYMENT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC
HWFNSL23DWF-NS-SUB-LIMIT-GR Header A 0010SUBSIDIZED DL/FFEL LIMIT (GR) NXH WFNSL23DWF-NS-SUB-LIMIT-UG Reference: WF-NS-SUB-LIMIT-UG
HWFNSL23DWF-NS-SUB-LIMIT-UG Header A 0010SUBSIDIZED DL/FFEL LIMIT (UG) NXH The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-LIMIT-UG C 0000 Close to limit The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-LIMIT-UG E 0000 Exceeded limit The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-LIMIT-UG N 0000 No problem The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-LIMIT-UG R 0000 Exc limit,affrmd dbt The total loan amount in relation to the statutoryloan limit may affect the student's eligibility for further subsidized Stafford loans.
HWFNSL23DWF-NS-SUB-OUT Header A 0060OUTSTANDING SUBSIDIZED DL/FFEL NXH The outstanding principal balance may affect the student's eligibility for further subsidized Stafford loans.
VWFNSL23DWF-NS-SUB-OUT N/A 0000 Not applicable The outstanding principal balance may affect the student's eligibility for further subsidized Stafford loans.
HWFNSL23DWF-NS-SUB-PEND Header A 0060PENDING SUBSIDIZED DL/FFEL DSB NXH WFNSL23DWF-NS-SUB-OUT The pending disbursements may affect the student'seligibility for further subsidized Stafford loans.
HWFNSL23DWF-NS-SUB-TOTAL Header A 0060SUBSIDIZED DL/FFEL TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further subsidized Stafford loans.
HWFNSL23DWF-NS-T1-AWARD Header A 0060TEACH AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-T1-AWDYEAR Header A 0040TEACH AWARD YEAR NN The award year during which the federal grant was disbursed is recorded in the grant payment record.
HWFNSL23DWF-NS-T1-CONV Header A 0010TEACH CONVERSION FLAG NXH The TEACH Grant may have been converted to an unsubsidized Direct Loan.
VWFNSL23DWF-NS-T1-CONV N 0000 TEACH not converted The TEACH Grant may have been converted to an unsubsidized Direct Loan.
VWFNSL23DWF-NS-T1-CONV Y 0000 TEACH cnvrtd to loan The TEACH Grant may have been converted to an unsubsidized Direct Loan.
HWFNSL23DWF-NS-T1-DATE Header A 0080TEACH MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-T1-LEVEL Header A 0010TEACH ACADEMIC LEVEL NXH The award year during which the federal grant was disbursed is recorded in the grant payment record.
HWFNSL23DWF-NS-T1-PAID Header A 0060TEACH AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-T1-SCH-AWD Header A 0060TEACH SCHEDULED AWARD XXX,XXX NN The amount of the TEACH Grant scheduled award is recorded.
HWFNSL23DWF-NS-T1-SCHOOL Header A 0080TEACH SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-T1-SEQ Header A 0020TEACH SEQUENCE NUMBER NXH 1 3 Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-T1-SEQCODE Header A 0030TEACH GRANT SEQUENCE CODE NN The grant sequence code is part of the grant ID, assigned sequentially in order to distinguish between multiple grants that may be awarded when a student progresses to a new class level during an aid year.
HWFNSL23DWF-NS-T1-TRAN Header A 0020TEACH FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-T2-AWARD Header A 0060TEACH AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-T2-AWDYEAR Header A 0040TEACH AWARD YEAR NN Reference: WF-NS-T1-AWDYEAR
HWFNSL23DWF-NS-T2-CONV Header A 0010TEACH CONVERSION FLAG NXH WFNSL23DWF-NS-T1-CONV Reference: WF-NS-T1-CONV
HWFNSL23DWF-NS-T2-DATE Header A 0080TEACH MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-T2-LEVEL Header A 0010TEACH ACADEMIC LEVEL NXH Reference: WF-NS-T1-LEVEL
HWFNSL23DWF-NS-T2-PAID Header A 0060TEACH AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-T2-SCH-AWD Header A 0060TEACH SCHEDULED AWARD XXX,XXX NN Reference: WF-NS-T1-SCH-AWD
HWFNSL23DWF-NS-T2-SCHOOL Header A 0080TEACH SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-T2-SEQ Header A 0020TEACH SEQUENCE NUMBER NXH 1 3 Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-T2-SEQCODE Header A 0030TEACH GRANT SEQUENCE CODE NN Reference: WF-NS-T1-SEQCODE
HWFNSL23DWF-NS-T2-TRAN Header A 0020TEACH FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-T3-AWARD Header A 0060TEACH AWARD XXX,XXX NN Reference: WF-NS-P1-AWARD
HWFNSL23DWF-NS-T3-AWDYEAR Header A 0040TEACH AWARD YEAR NN Reference: WF-NS-T1-AWDYEAR
HWFNSL23DWF-NS-T3-CONV Header A 0010TEACH CONVERSION FLAG NXH WFNSL23DWF-NS-T1-CONV Reference: WF-NS-T1-CONV
HWFNSL23DWF-NS-T3-DATE Header A 0080TEACH MOST RECENT UPDATE XXXXXXXXXX NXH WFNSL23DWF-NS-P1-DATE Reference: WF-NS-P1-DATE
HWFNSL23DWF-NS-T3-LEVEL Header A 0010TEACH ACADEMIC LEVEL NXH Reference: WF-NS-T1-LEVEL
HWFNSL23DWF-NS-T3-PAID Header A 0060TEACH AMOUNT PAID XXX,XXX NN Reference: WF-NS-P1-PAID
HWFNSL23DWF-NS-T3-SCH-AWD Header A 0060TEACH SCHEDULED AWARD XXX,XXX NN Reference: WF-NS-T1-SCH-AWD
HWFNSL23DWF-NS-T3-SCHOOL Header A 0080TEACH SCHOOL CODE NN Reference: WF-NS-P1-SCHOOL
HWFNSL23DWF-NS-T3-SEQ Header A 0020TEACH SEQUENCE NUMBER NXH 1 3 Reference: WF-NS-P1-SEQ
HWFNSL23DWF-NS-T3-SEQCODE Header A 0030TEACH GRANT SEQUENCE CODE NN Reference: WF-NS-T1-SEQCODE
HWFNSL23DWF-NS-T3-TRAN Header A 0020TEACH FEDERAL TRANSACTION NN Reference: WF-NS-P1-TRAN
HWFNSL23DWF-NS-TCH-ADTNL Header A 0010ADDITIONAL TEACH INFORMATION NXH WFNSL23DWF-NS-PELL-ADTNL Reference: WF-NS-LOAN-ADTNL
HWFNSL23DWF-NS-TCH-CHG Header A 0010TEACH CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-TCH-CONV Header A 0010TEACH CONVERSION FLAG NXH When a student with TEACH Grants discontinues pursuit of coursework leading to a teaching career, the TEACH Grants are converted to Direct loans.
VWFNSL23DWF-NS-TCH-CONV N 0000 TEACH Grants remain When a student with TEACH Grants discontinues pursuit of coursework leading to a teaching career, the TEACH Grants are converted to Direct loans. an aid year.
VWFNSL23DWF-NS-TCH-CONV Y 0000 TEACH cnvrtd to loan When a student with TEACH Grants discontinues pursuit of coursework leading to a teaching career, the TEACH Grants are converted to Direct loans. an aid year.
HWFNSL23DWF-NS-TCH-CONV-CHG Header A 0010TEACH CONVERSION CHANGE FLAG NXH WFNSL23DWF-NS-PELL-CHG Reference: WF-NS-LOAN-CHG
HWFNSL23DWF-NS-TCH-OUT Header A 0060OUTSTANDING CONVERTED TEACH NXH WFNSL23DWF-NS-SUB-OUT The outstanding principal balance may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-TCH-OVP Header A 0010TEACH OVERPAYMENT NXH WFNSL23DWF-NS-PELL-OVP The TEACH overpayment status may affect the student's eligibility for further federal financial aid. A contact is provided for further information.
HWFNSL23DWF-NS-TCH-OVP-CTC Header A 0080TEACH OVERPAYMT CONTACT NXH WFNSL23DWF-NS-PELL-OVP-CTC Reference: WF-NS-TCH-OVP
HWFNSL23DWF-NS-TCH-TOTAL Header A 0060CONVERTED TEACH TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further Stafford loans.
HWFNSL23DWF-NS-TCH-TOTAL-GR Header A 0060CONVERTED TEACH TOTAL (GR) NXH WFNSL23DWF-NS-SUB-OUT Reference: WF-NS-TCH-TOTAL eligibility for further Stafford loans.
HWFNSL23DWF-NS-TCH-TOTAL-UG Header A 0060CONVERTED TEACH TOTAL (UG) NXH WFNSL23DWF-NS-SUB-OUT Reference: WF-NS-TCH-TOTAL eligibility for further Stafford loans.
HWFNSL23DWF-NS-UNS-OUT Header A 0060OUTSTANDING UNSUBSIDZD DL/FFEL NXH WFNSL23DWF-NS-SUB-OUT The outstanding principal balance may affect the student's eligibility for further unsubsidized Stafford loans.
HWFNSL23DWF-NS-UNS-PEND Header A 0060PENDING UNSUBSIDZD DL/FFEL DSB NXH WFNSL23DWF-NS-SUB-OUT The pending disbursements may affect the student'seligibility for further unsubsidized Stafford loans.
HWFNSL23DWF-NS-UNS-TOTAL Header A 0060UNSUBSIDIZED DL/FFEL TOTAL NXH WFNSL23DWF-NS-SUB-OUT The total loan amount may affect the student's eligibility for further unsubsidized Stafford loans.
HWFNSL23DWF-NSLDS Header 0000NSLDS INFORMATION GN National Student Loan Data System (NSLDS) information is transmitted from the Central Processing System (CPS) in the Institutional Student Information Report (ISIR) record.
HWFNSL23DWF-NSLDS-KEY Header A 0110NSLDS KEY KN The NSLDS key is comprised of FAO and the student's FINANCIER ID. This key is used in all NSLDS file accesss.
HWFNSL23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFNSL23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFNSL23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFNSL23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFNSL23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WFVER23D
==========================================
HWFVER23DWF-FAO Header A 0020FINANCIAL AID OFFICE KUE WWSYSVRDWF-FAO Reference: WW-SYSVARS.
HWFVER23DWF-VE-ID-VER-RSLTS Header A 0010IDENTITY VERIFICATION RESULTS Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group.
VWFVER23DWF-VE-ID-VER-RSLTS 1 0000 Completed in person Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 2 0000 Completed w/ notary Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 3 0000 Issues w/ identity Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 4 0000 Issues w/ HS comp Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 5 0000 No response / locate Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
VWFVER23DWF-VE-ID-VER-RSLTS 6 0000 Issues w/ Id/HS comp Used to store the results of an insitition's verification of a student. Used for students witha V4 or V5 tracking group. This key is used in all NSLDS file accesss. an aid year.
HWFVER23DWF-VE-INS-DATE Header D 0000INSTITUTIONAL VERIF DATE MM/DD/YYYY FN Reference: WF-VE-INS-REQD
HWFVER23DWF-VE-INS-REQD Header A 0010INSTITUTIONAL VERIF REQUIRED UUE For a school that uses an institutional verifica- tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
VWFVER23DWF-VE-INS-REQD 1 0000 Verif Group 1 For a school that uses an institutional verifica- tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
VWFVER23DWF-VE-INS-REQD 4 0000 Verif Group 4 For a school that uses an institutional verifica- tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
VWFVER23DWF-VE-INS-REQD 5 0000 Verif Group 5 For a school that uses an institutional verifica- tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
HWFVER23DWF-VE-INS-STAT Header A 0010INSTITUTIONAL VERIF STATUS UUE Reference: WF-VE-INS-REQD
VWFVER23DWF-VE-INS-STAT F 0000 Fail Reference: WF-VE-INS-REQD tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
VWFVER23DWF-VE-INS-STAT P 0000 Pass Reference: WF-VE-INS-REQD tion process, marks a student as selected by the institution to undergo that process. Values corre-spond to the federal defined verification groups. A value in this field overrides a CPS-assigned verification group.
HWFVER23DWF-VE-P-A-COOP Header P 0070PARENT AFI CO-OP EARNINGS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-A-CPAY Header P 0070PARENT AFI COMBAT PAY Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-A-CSPD Header P 0070PARENT AFI CHILD SUPPORT PAID Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-A-EDCR Header P 0070PARENT AFI EDUCATION CREDITS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-A-GRNT Header P 0070PARENT AFI GRANTS/SCHOLARSHIPSZ,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-A-WORK Header P 0070PARENT AFI NEED-BASED WORK Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-A-EDCR
HWFVER23DWF-VE-P-AGI Header PS0070PARENT ADJUSTED GROSS INCOME Z,ZZZ,ZZ9- UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-BUS-FRM Header P 0070PARENT BUSINESS/FARM ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-AST Include: WF-2223-FEDERAL.WF-FE-P-BUS-FRM
HWFVER23DWF-VE-P-CASH Header P 0070PARENT CASH ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-AST Include: WF-2223-FEDERAL.WF-FE-P-CASH
HWFVER23DWF-VE-P-DLW Header A 0010PARENT DISLOCATED WORKER UFE WFFED23DWF-FE-S-DLW Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-DLW
HWFVER23DWF-VE-P-FAM-COL Header P 0010PARENT FAMILY IN COLLEGE 9 UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-FAM-SIZE Header P 0020PARENT FAMILY SIZE Z9 UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-FED-TAX Header P 0070PARENT FEDERAL TAX Z,ZZZ,ZZ9 UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-FILE-STAT Header A 0010PARENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT
HWFVER23DWF-VE-P-FILER Header A 0010PARENT TAX FILER UFE WFFED23DWF-FE-S-FILER Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-FILER
HWFVER23DWF-VE-P-FORM Header A 0010PARENT TAX FORM UFE WFFED23DWF-FE-S-FORM Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-FILER
HWFVER23DWF-VE-P-INV Header P 0070PARENT INVESTMENT ASSETS ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-AST Include: WF-2223-FEDERAL.WF-FE-P-INV
HWFVER23DWF-VE-P-MAR Header A 0010PARENT MARITAL STATUS UFE WFFED23DWF-FE-P-MAR Include: WF-VERIFY-PAR-ATT Include: WF-2223-FEDERAL.WF-FE-P-MAR
HWFVER23DWF-VE-P-MT-LUNCH Header A 0010PARENT MEANS-TESTED LUNCH PGM UFE WFFED23DWF-FE-S-MT-LUNCH Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFVER23DWF-VE-P-MT-SNAP Header A 0010PARENT MEANS-TESTED SUPP NUTR UFE WFFED23DWF-FE-S-MT-SNAP Include: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-MT-SSI Header A 0010PARENT MEANS-TESTED SSI UFE WFFED23DWF-FE-S-MT-SSI Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFVER23DWF-VE-P-MT-TANF Header A 0010PARENT MEANS-TESTED TANF UFE WFFED23DWF-FE-S-MT-TANF Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFVER23DWF-VE-P-MT-WIC Header A 0010PARENT MEANS-TESTED WIC UFE WFFED23DWF-FE-S-MT-WIC Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-MT-SSI
HWFVER23DWF-VE-P-P1-INC Header PS0070PARENT 1 WORK INCOME Z,ZZZ,ZZ9- UN Include: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-P2-INC Header PS0070PARENT 2 WORK INCOME Z,ZZZ,ZZ9- UN Include: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-P-RES Header A 0020PARENT STATE OF RESIDENCE UFE WWSYSVRDWF-HELP-RES Include: WF-VERIFY-PAR-ATT Include: WF-2223-FEDERAL.WF-FE-P-RES
HWFVER23DWF-VE-P-SCHED1 Header A 0010PARENT SCHEDULE 1 FILED QUEST UFE WFFED23DWF-FE-S-SCHED1
HWFVER23DWF-VE-P-U-CSUP Header P 0070PARENT UTX CHILD SUPPORT RCVD Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-DST-PEN Header P 0070PARENT UNTXD PEN/DIST Z,ZZZ,ZZ9 UN
HWFVER23DWF-VE-P-U-INT Header P 0070PARENT UTX INTEREST INCOME Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-IRA Header P 0070PARENT UTX IRA PAYMENTS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-LIV Header P 0070PARENT UTX LIVING ALLOWANCES Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-OTHER Header P 0070PARENT UTX OTHER UNTAXED INC Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-PEN Header P 0070PARENT UTX PENSION PAYMENTS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-U-VET Header P 0070PARENT UTX VET NON-ED BENEFIT Z,ZZZ,ZZ9 UN Include: WF-VERIFY-PAR-INC Include: WF-2223-FEDERAL.WF-FE-P-U-PEN
HWFVER23DWF-VE-P-UNTAXED Header P 0080PARENT TOTAL UNTAXED INCOME ZZ,ZZZ,ZZ9 UN Reference: WF-VERIFY-PAR-REQ
HWFVER23DWF-VE-S-A-COOP Header P 0070STUDENT AFI CO-OP EARNINGS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-A-CPAY Header P 0070STUDENT AFI COMBAT PAY Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-A-CSPD Header P 0070STUDENT AFI CHILD SUPPORT PAIDZ,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-A-EDCR Header P 0070STUDENT AFI EDUCATION CREDITS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-A-GRNT Header P 0070STUDENT AFI GRANTS/SCHOLARSHPSZ,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-A-WORK Header P 0070STUDENT AFI NEED-BASED WORK Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-A-EDCR
HWFVER23DWF-VE-S-AGI Header PS0070STUDENT ADJUSTED GROSS INCOME Z,ZZZ,ZZ9- UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-BUS-FRM Header P 0070STUDENT BUSINESS/FARM ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-AST Include: WF-2223-FEDERAL.WF-FE-S-BUS-FRM
HWFVER23DWF-VE-S-CASH Header P 0070STUDENT CASH ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-AST Include: WF-2223-FEDERAL.WF-FE-S-CASH
HWFVER23DWF-VE-S-CIT Header A 0010STUDENT CITIZENSHIP STATUS UFE WFFED23DWF-FE-S-CIT Include: WF-VERIFY-STU-ATT Include: WF-2223-FEDERAL.WF-FE-S-CIT
HWFVER23DWF-VE-S-DLW Header A 0010STUDENT DISLOCATED WORKER UFE WFFED23DWF-FE-S-DLW Include: WF-VERIFY-STU-ATT Include: WF-2223-FEDERAL.WF-FE-S-DLW
HWFVER23DWF-VE-S-FAM-COL Header P 0010STUDENT FAMILY IN COLLEGE 9 UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-FAM-SIZE Header P 0020STUDENT FAMILY SIZE Z9 UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-FED-TAX Header P 0070STUDENT FEDERAL TAX Z,ZZZ,ZZ9 UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-FILE-STAT Header A 0010STUDENT TAX RET FILE STAT NXH WF23FEDDWF-FE-S-FILE-STAT
HWFVER23DWF-VE-S-FILER Header A 0010STUDENT TAX FILER UFE WFFED23DWF-FE-S-FILER Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-FILER
HWFVER23DWF-VE-S-FORM Header A 0010STUDENT TAX FORM UFE WFFED23DWF-FE-S-FORM Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-FILER
HWFVER23DWF-VE-S-HS-COMP Header A 0010HIGH SCHOOL COMPLETION CONFIRM U Include: WF-VERIFY-STU-REQ
VWFVER23DWF-VE-S-HS-COMP Y 0000 HS Completn confirmd Include: WF-VERIFY-STU-REQ Include: WF-2223-FEDERAL.WF-FE-S-FILER
HWFVER23DWF-VE-S-INV Header P 0070STUDENT INVESTMENT ASSETS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-AST Include: WF-2223-FEDERAL.WF-FE-S-INV
HWFVER23DWF-VE-S-MAR Header A 0010STUDENT MARITAL STATUS UFE WFFED23DWF-FE-S-MAR Include: WF-VERIFY-STU-ATT Include: WF-2223-FEDERAL.WF-FE-S-MAR
HWFVER23DWF-VE-S-MT-LUNCH Header A 0010STUDENT MEANS-TESTED LUNCH PGM UFE WFFED23DWF-FE-S-MT-LUNCH Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFVER23DWF-VE-S-MT-SNAP Header A 0010STUDENT MEANS-TESTED SUPP NUTR UFE WFFED23DWF-FE-S-MT-SNAP Include: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-MT-SSI Header A 0010STUDENT MEANS-TESTED SSI UFE WFFED23DWF-FE-S-MT-SSI Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFVER23DWF-VE-S-MT-TANF Header A 0010STUDENT MEANS-TESTED TANF UFE WFFED23DWF-FE-S-MT-TANF Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFVER23DWF-VE-S-MT-WIC Header A 0010STUDENT MEANS-TESTED WIC UFE WFFED23DWF-FE-S-MT-WIC Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-MT-SSI
HWFVER23DWF-VE-S-RES Header A 0020STUDENT STATE OF RESIDENCE UFE WWSYSVRDWF-HELP-RES Include: WF-VERIFY-STU-ATT Include: WF-2223-FEDERAL.WF-FE-S-RES
HWFVER23DWF-VE-S-SCHED1 Header A 0010STUDENT FILED SCHEDULE 1 QUEST UFE WFFED23DWF-FE-S-SCHED1
HWFVER23DWF-VE-S-SEP Header A 0010STATEMT OF ED PURPOSE CONFIRM U Include: WF-VERIFY-STU-REQ
VWFVER23DWF-VE-S-SEP Y 0000 Ed Purpose confirmed Include: WF-VERIFY-STU-REQ Include: WF-2223-FEDERAL.WF-FE-S-RES
HWFVER23DWF-VE-S-SP-INC Header PS0070SPOUSE WORK INCOME Z,ZZZ,ZZ9- UN Include: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-ST-INC Header PS0070STUDENT WORK INCOME Z,ZZZ,ZZ9- UN Include: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-S-TEST-ACTV Header A 0010STUDENT ACTIVE DUTY TEST UFE WFFED23DWF-FE-S-TEST-ACTV Include: WF-VERIFY-STU-ATT The student's active duty status is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-CHL Header A 0010STUDENT CHILD DEPENDENTS TEST UFE WFFED23DWF-FE-S-TEST-CHL Include: WF-VERIFY-STU-ATT Whether the student has dependent children is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-DEP Header A 0010STUDENT OTHER DEPENDENTS TEST UFE WFFED23DWF-FE-S-TEST-DEP Include: WF-VERIFY-STU-ATT Whether the student has dependents other than a spouse or children is one of the factors used in determiningdependency status.
HWFVER23DWF-VE-S-TEST-DOB Header A 0010STUDENT DATE OF BIRTH TEST UFE WFFED23DWF-FE-S-TEST-DOB Include: WF-VERIFY-STU-ATT The student's date of birth is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-EMAN Header A 0010STUDENT EMANCIPATED MINOR TEST UFE WFFED23DWF-FE-S-TEST-EMAN Include: WF-VERIFY-STU-ATT Whether the student has been legally designated anemancipated minor is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-GRAD Header A 0010STUDENT GRADUATE TEST UFE WFFED23DWF-FE-S-TEST-GRAD Include: WF-VERIFY-STU-ATT Whether the student is in a graduate-level academic program is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-GUAR Header A 0010STUDENT GUARDIANSHIP TEST UFE WFFED23DWF-FE-S-TEST-GUAR Include: WF-VERIFY-STU-ATT Whether the student is in legal guardianship is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-HMLS Header A 0010STUDENT HOMELESNESS TEST UFE WFFED23DWF-FE-S-TEST-HMLS Include: WF-VERIFY-STU-ATT The student's designation as homeless or as self-supporting and at risk of homelessness is one of the factors used in determining dependencystatus.
HWFVER23DWF-VE-S-TEST-MAR Header A 0010STUDENT MARITAL TEST UFE WFFED23DWF-FE-S-TEST-MAR Include: WF-VERIFY-STU-ATT The student's marital status is one of the factorsused in determining dependency status.
HWFVER23DWF-VE-S-TEST-ORPH Header A 0010STUDENT ORPHAN/WARD TEST UFE WFFED23DWF-FE-S-TEST-ORPH Include: WF-VERIFY-STU-ATT Whether the student is an orphan, in foster care, or a ward of the courts is one of the factors usedin determining dependency status.
HWFVER23DWF-VE-S-TEST-UYHU Header A 0010STUDENT UNACC YOUTH (HUD) TEST UFE WFFED23DWF-FE-S-TEST-UYHU Include: WF-VERIFY-STU-ATT Whether the student has been identified as an unaccompanied youth is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-UYSD Header A 0010STUDENT UNACC YOUTH (SDL) TEST UFE WFFED23DWF-FE-S-TEST-UYSD Include: WF-VERIFY-STU-ATT Whether the student has been identified as an unaccompanied youth is one of the factors used in determining dependency status.
HWFVER23DWF-VE-S-TEST-VET Header A 0010STUDENT VETERAN TEST UFE WFFED23DWF-FE-S-TEST-VET Include: WF-VERIFY-STU-ATT The student's veteran status is one of the factorsused in determining dependency status.
HWFVER23DWF-VE-S-TM-SNAP Header 0000STUDENT VETERAN TEST UFE WFFED23DWF-FE-S-TEST-VET
HWFVER23DWF-VE-S-U-CSUP Header P 0070STUDENT UTX CHILD SUPPORT RCVDZ,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-DST-PEN Header P 0070STUDENT UNTXD PENS/DIST Z,ZZZ,ZZ9 UN
HWFVER23DWF-VE-S-U-INT Header P 0070STUDENT UTX INTEREST INCOME Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-IRA Header P 0070STUDENT UTX IRA PAYMENTS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-LIV Header P 0070STUDENT UTX LIVING ALLOWANCES Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-MONEY Header P 0070STUDENT UTX MONEY RECEIVED Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-OTHER Header P 0070STUDENT UTX OTHER UNTAXED INC Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-PEN Header P 0070STUDENT UTX PENSION PAYMENTS Z,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-U-VET Header P 0070STUDENT UTX VET NON-ED BENEFITZ,ZZZ,ZZ9 UN Include: WF-VERIFY-STU-INC Include: WF-2223-FEDERAL.WF-FE-S-U-PEN
HWFVER23DWF-VE-S-UNTAXED Header P 0080STUDENT TOTAL UNTAXED INCOME ZZ,ZZZ,ZZ9 UN Reference: WF-VERIFY-STU-REQ
HWFVER23DWF-VE-VER Header A 0010VERIFICATION STATUS CFE The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
VWFVER23DWF-VE-VER F 0000 Fail; mismatch The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
VWFVER23DWF-VE-VER N 0000 Not yet verified The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
VWFVER23DWF-VE-VER P 0000 Pass; exact match The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
VWFVER23DWF-VE-VER T 0000 Pass; by tolerance The verification process is one of comparing like information collected from independent sources, and applying rules and tolerances to any differences found. The verification status indicates the results of these comparisons.
HWFVER23DWF-VE-VER-DATE Header D 0000VERIFICATION DATE MM/DD/YYYY FN The date that verification was last attempted documents the verification process.
HWFVER23DWF-VE-VER-FED Header A 0010FEDERAL VERIFICATION STATUS CXE The selection method used and whether verificationhas been completed must be reported as part of thefederal Pell Grant reporting process. In addition, federal funds may not be distributed to federally-selected but unverified students.
VWFVER23DWF-VE-VER-FED S 0000 Selected/will not be The selection method used and whether verificationhas been completed must be reported as part of thefederal Pell Grant reporting process. In addition, federal funds may not be distributed to federally-selected but unverified students.
VWFVER23DWF-VE-VER-FED V 0000 Verified The selection method used and whether verificationhas been completed must be reported as part of thefederal Pell Grant reporting process. In addition, federal funds may not be distributed to federally-selected but unverified students.
VWFVER23DWF-VE-VER-FED W 0000 Selected/not yet ver The selection method used and whether verificationhas been completed must be reported as part of thefederal Pell Grant reporting process. In addition, federal funds may not be distributed to federally-selected but unverified students.
HWFVER23DWF-VE-VER-INS Header A 0010INS SELECTION FOR VERIFICATION UUE The institution may choose to submit students to the federal verification process even if they werenot selected for verification by the Central Processing System (CPS).
VWFVER23DWF-VE-VER-INS N 0000 Not selected The institution may choose to submit students to the federal verification process even if they werenot selected for verification by the Central Processing System (CPS). federally-selected but unverified students.
VWFVER23DWF-VE-VER-INS S 0000 Selected The institution may choose to submit students to the federal verification process even if they werenot selected for verification by the Central Processing System (CPS). federally-selected but unverified students.
HWFVER23DWF-VE-VER-REVER Header A 0010RE-VERIFICATION CCE If the student is verified using an automated process, re-verification will be performed automatically whenever another federal record is processed in the ADD Load. Standard FINANCIER defaults this field to request automatic re-verification if the student was verified by the automated calculation process, andto require manual re-verification if the student was manually verified.
VWFVER23DWF-VE-VER-REVER A 0000 Automatic re-verif If the student is verified using an automated process, re-verification will be performed automatically whenever another federal record is processed in the ADD Load. Standard FINANCIER defaults this field to request automatic re-verification if the student was verified by the automated calculation process, andto require manual re-verification if the student was manually verified.
VWFVER23DWF-VE-VER-REVER M 0000 Manual re-verif If the student is verified using an automated process, re-verification will be performed automatically whenever another federal record is processed in the ADD Load. Standard FINANCIER defaults this field to request automatic re-verification if the student was verified by the automated calculation process, andto require manual re-verification if the student was manually verified.
HWFVER23DWF-VE-VER-TRAN Header A 0020VERIFICATION TRANSACTION FN The information used in calculating the student's need that leads to the disbursement package must be the same information considered in the verification process. The federal transaction documents the "version" of the need analysis information that has been verified.
HWFVER23DWF-VE-VET-DATE Header D 0000VET BENEFITS VERIF DATE MM/DD/YYYY FN Reference: WF-VE-VET-STAT
HWFVER23DWF-VE-VET-REQD Header A 0010VET BENEFITS VERIF REQUIRED 'T'XXXXXXXXXXXXXXXXXXXX UUE Students receiving veteran's educational benefits may be selected for certification of the duration and amount of those benefits. Selection for this certification process may be made for any of a variety of reasons.
VWFVER23DWF-VE-VET-REQD N 0000 Not selected Students receiving veteran's educational benefits may be selected for certification of the duration and amount of those benefits. Selection for this certification process may be made for any of a variety of reasons.
VWFVER23DWF-VE-VET-REQD S 0000 Selected Students receiving veteran's educational benefits may be selected for certification of the duration and amount of those benefits. Selection for this certification process may be made for any of a variety of reasons.
HWFVER23DWF-VE-VET-STAT Header A 0010VET BENEFITS VERIF STATUS UUE For students receiving veteran's benefits, the duration and amount of those benefits may be certified by comparing the benefits reported by the student on the federal financial aid application (FAFSA) with those reported to the school by the Veterans' Administration. The veteran's benefits verification status and its associated date document that this certification has been performed.
VWFVER23DWF-VE-VET-STAT F 0000 Fail For students receiving veteran's benefits, the duration and amount of those benefits may be certified by comparing the benefits reported by the student on the federal financial aid application (FAFSA) with those reported to the school by the Veterans' Administration. The veteran's benefits verification status and its associated date document that this certification has been performed.
VWFVER23DWF-VE-VET-STAT P 0000 Pass For students receiving veteran's benefits, the duration and amount of those benefits may be certified by comparing the benefits reported by the student on the federal financial aid application (FAFSA) with those reported to the school by the Veterans' Administration. The veteran's benefits verification status and its associated date document that this certification has been performed.
HWFVER23DWF-VERIFY-CONTROL Header 0000VERIFICATION CONTROLS GN Pass
HWFVER23DWF-VERIFY-KEY Header 0000VERIFICATION KEY KN The Verification key is comprised of FAO and the student's FINANCIER ID. This key is used in all Verification file accesss.
HWFVER23DWF-VERIFY-PAR-AST Header 0000PARENT VERIFICATION - ASSETS GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional parent asset information as part of theinstitutional verification procedure.
HWFVER23DWF-VERIFY-PAR-ATT Header 0000PARENT VERIFICATION - ATTRIBS GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional parent attribute information as part ofthe institutional verification procedure.
HWFVER23DWF-VERIFY-PAR-INC Header 0000PARENT VERIFICATION - INCOME GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional parent income information as part of the institutional verification procedure.
HWFVER23DWF-VERIFY-PAR-REQ Header 0000PARENT VERIFICATION - FED REQ GN For a dependent student selected for verification,the information that must be collected from inde- pendent sources (typically the parents' signed tax return) to compare with information submitted on the financial aid application. Specific items required for verification depend onthe CPS evaluation of the student's application and the current year's regulations. Mandated fields typically include information such as fam- ily size, number of family memebers in college, adjusted gross income, federal tax paid and un- taxed income; other fields may be required as well.
HWFVER23DWF-VERIFY-STU-AST Header 0000STUDENT VERIFICATION - ASSETS GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional student asset information as part of the institutional verification procedure.
HWFVER23DWF-VERIFY-STU-ATT Header 0000STUDENT VERIFICATION - ATTRIBS GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional student attribute information as part of the institutional verification procedure.
HWFVER23DWF-VERIFY-STU-INC Header 0000STUDENT VERIFICATION - INCOME GN Beyond limited federal verification requirements, the institution may choose to collect and compare additional student income information as part of the institutional verification procedure.
HWFVER23DWF-VERIFY-STU-REQ Header 0000STUDENT VERIFICATION - FED REQ GN For a student selected for verification, the information that must be collected from indepen- dent sources (typically the student's signed tax return) to compare with information submitted on the financial aid application. Specific items required for verification depend onthe CPS evaluation of the student's application and the current year's regulations. Mandated fields typically include information such as fam- ily size, number of family memebers in college, adjusted gross income, federal tax paid and un- taxed income; other fields may be required as well.
HWFVER23DWW-CDATE Header D 0000RECORD CREATION DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFVER23DWW-HOLD Header N 0070RECORD HOLD FIELD FN Reference: WW-SYSVARS.WW-SYSTEM
HWFVER23DWW-MDATE Header D 0000RECORD MAINTENANCE DATE MM/DD/YYYY FN Reference: WW-SYSVARS.WW-SYSTEM
HWFVER23DWW-STUDENT-ID Header A 0090FINANCIER STUDENT ID KN Reference: WW-STUDENT.
HWFVER23DWW-SYSTEM Header 0000SYSTEM MAINTENANCE INFORMATION GN Reference: WW-SYSVARS.
==========================================
= WWSHELPD
==========================================
HWWSHELPDWF-WFA23OVM Header 0000ADD/FINANCIER COMPARISON The ADD/FINANCIER Comparison displays financial information from the imported federal application along with corresponding values as currently stored in FINANCIER for the student. Summary information is presented first; student income and asset data then alternates with parent data. Press PF7 or PF8 to move from page to page.
HWWSHELPDWF-WFA23PAM Header 0000ADD/FINANCIER COMPARISON Reference: WF-WFA23OVM
HWWSHELPDWF-WFA23STM Header 0000ADD/FINANCIER COMPARISON Reference: WF-WFA23OVM
HWWSHELPDWF-WFCPI23M Header 0000CPS COMMUNICATIONS Use the CPS Communications screen to: - View a summary of CPS decisions regarding dependency status, verification selection, Pell eligibility, etc. - Request a first ISIR. Type Y in the Institution change field and supply the student's federal ID and DRN and your college code. - Override an NSLDS loan default setting when you know the default condition to be resolved. Type Y in the Loan Default Override field. - View student and parent identification informa- tion from the current ISIR. Press PF9 from the expansion field after the FedID label.
HWWSHELPDWF-WFF2301M Header 0000FEDERAL DATA (COMPRESSED) Use the Compressed Federal Data screen to examine or correct critical FAFSA data and to see need analysis results. The 4-page display includes need-analysis-related fields and calculation options (page 1), Untaxed Income and Additional Info detail (page 2), supporting data (page 3), and calculated EFCs (page 4). If you change calculation data, contributions are recalculated automatically. Corrections are stored for later export. You can expand the New and Rej correctionflags to see correction detail. For a trial calculation (no updates stored), use the Trial option (page 1). To "lock" a federal record against future update by the ADD Load, use the Lock option (page 1).
HWWSHELPDWF-WFF2302M Header 0000FEDERAL DATA (COMPRESSED) Reference: WF-WFF2301M
HWWSHELPDWF-WFF2303M Header 0000FEDERAL DATA (COMPRESSED) Reference: WF-WFF2301M
HWWSHELPDWF-WFF231AM Header 0000FEDERAL DATA (FAFSA FORMAT) Use the Federal Data, FAFSA Format screen to view the contents of a student's federal application. The screen contains multiple "pages" that correspond to the paper form. If you change need-analysis-related data, corrections are stored for later export processing. The final page contains calculation options, including the Lock option, which enables you to protect a federal record against future update by the ADD Load process.
HWWSHELPDWF-WFF231BM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF232AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF233AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF233BM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF234AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF235AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF235BM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF236AM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFF23CAM Header 0000FEDERAL DATA (FAFSA FORMAT) Reference: WF-WFF231AM
HWWSHELPDWF-WFFGR23M Header 0000FEDERAL GRANT REPORTING Use the Federal Grant Reporting screen to see an overview of the student's Federal Grants (Pell andTEACH). Press EXPAND at any of the grant program headings to see detail information for that program.
HWWSHELPDWF-WFM23P1M Header 0000PARENT CALCULATIONS The Parent Calculations window displays the income and asset figures used to calculate the parent contribution on the ISIR (column 1) and for the NA methodologies in use. Use the PF7/PF8 keys to page through the detail.
HWWSHELPDWF-WFM23P2M Header 0000PARENT CALCULATIONS Reference: WF-WFM23P1M
HWWSHELPDWF-WFM23P3M Header 0000PARENT CALCULATIONS Reference: WF-WFM23P1M
HWWSHELPDWF-WFM23RAM Header 0000REJECTS/ASSUMPTIONS The Rejects/Assumptions window displays the reject and assumption codes in effect for the CPS-calculated EFC (on the ISIR, column 1) and the FINANCIER-calculated EFCs. A difference between the codes generated will help diagnose a discrepancy between the CPS- calculated and FINANCIER EFCs, and should help determine whether corrections are needed.
HWWSHELPDWF-WFM23S1M Header 0000STUDENT CALCULATIONS The Student Calculations window displays the income and asset figures used to calculate the student contribution on the ISIR (column 1) and for the NA methodologies in use. Use the PF7/PF8 keys to page through the detail.
HWWSHELPDWF-WFM23S2M Header 0000STUDENT CALCULATIONS Reference: WF-WFM23S1M
HWWSHELPDWF-WFM23S3M Header 0000STUDENT CALCULATIONS Reference: WF-WFM23S1M
HWWSHELPDWF-WFMCL23M Header 0000NEED ANALYSIS CALCULATIONS Use this screen to review the results of need analysis calculations. The screen displays expected parent and student contributions as calculated for the ISIR (column 1), for Pell grantpurposes (using a 9-month duration; column 2), andby the federal methodology (column 3) and institutional methodology (if used, column 4). This screen comprises the final page of the Compressed Federal Data and Compressed CSS Data screens and is also accessible from the Appl menu as the CSS/Federal Comparison or Need Analysis Calculations screen. Calculation detail is available if you have accessed the screen by menu:expand the Parents or Student heading with PF9.
HWWSHELPDWF-WFN23AGM Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23L1M Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23L2M Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23PGM Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23SGM Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFN23TGM Header 0000NSLDS Reference: WF-WFNSD23M
HWWSHELPDWF-WFNSD23M Header 0000NSLDS Use the NSLDS screen to view information from the National Student Loan Data System for Title IV aidapplicants. The information enters FINANCIER from the student's ISIR. Pell payment and loan detail history are available by expansion, using the PF9 key.
HWWSHELPDWF-WFPEL23M Header 0000PELL GRANT REPORTING Use the Pell Grant Reporting screen to review a student's Pell award disbursements as currently recorded and as reported to COD. The Current column shows information as currently recorded in FINANCIER. The COD Accepted column shows the information most recently acknowledged by COD, as entered by the Pell Payment Import program (WFFLAIMB). The In Process column shows information that has been reported to COD but not yet acknowledged; values are entered by the Federal Grant Export program (WFFLREXB). You can set the Orig and Disb fields to retransmitor hold an origination or disbursement record.
HWWSHELPDWF-WFTCH23M Header 0000SMART GRANT REPORTING Use the TEACH Reporting window to review a student's TEACH Grant attributes and disbursementsas currently recorded and as reported to COD. The Current column shows information as currently recorded in FINANCIER. The COD Accepted column shows the information most recently acknowledged by COD, as entered by the Federal Grant Import program (WFFLAIMB). The In Process column shows information that has been reported to COD but not yet acknowledged; values are entered by the Federal Grant Export program (WFFLREXB). You can set the Orig and Disb fields to retransmitor hold an origination or disbursement record.
HWWSHELPDWF-WFV23PCM Header 0000VERIFICATION The window displays Parent Additional Financial Information and Untaxed Income detail. If the Untaxed Income (needed for federal verification) should be calculated from detail information, enter the values here. You may also enter values as needed for institutional verification.
HWWSHELPDWF-WFV23PVM Header 0000PARENT UNTAXED INCOME H The window displays Parent Untaxed Income detail. As required for the student's verification group, use the verification fields in the top portion of the window to enter verified untaxed income com- ponent amounts. Current federal data from the most recently loaded ISIR is displayed in the lower portion of the window.
HWWSHELPDWF-WFV23SCM Header 0000VERIFICATION The window displays Student Additional Financial Information and Untaxed Income detail. If the Untaxed Income (needed for federal verification) should be calculated from detail information, enter the values here. You may also enter values as needed for institutional verification.
HWWSHELPDWF-WFV23SVM Header 0000STUDENT UNTAXED INCOME H The window displays Student Untaxed Income detail. As required for the student's verification group, use the verification fields in the top portion of the window to enter verified untaxed income com- ponent amounts. Current federal data from the most recently loaded ISIR is displayed in the lower portion of the window.
HWWSHELPDWF-WFVET23M Header 0000VETERAN CERTIFICATION Use the Veteran Certification screen to verify a student's veteran status. The screen displays theamount of veteran's benefits from the ISIR. You can compare the amount reported by the Veteran's Administration and enter changes as needed. A change in amount generates a correction record forsubsequent export processing. As the screen does not generate an award record, benefits must be "awarded" independently; if necessary, use an Award screen to include veteran's benefits in the student's aid package.
HWWSHELPDWF-WFVRF23M Header 0000VERIFICATION Use the Verification screen to enter data for federal verification, in the fields that correspond to the student's Verification Tracking group. Fields not pertinent to the group are protected. To enter Untaxed Income detail, expand (via PF9) the STUDENT or PARENTS heading. To verify a student, press PF5 after typing in theverification data. If the student passes, the Status is set to P and the Reverification flag to A (allowing re-evaluation by automated processes).If you set the status manually to P the system sets the Reverification flag to M (manual evaluation only).
Number of differences: 12
Added(0,0)
Deleted(0,0)
Changed(20)
Changed in changed(20)
Ignored