/* Published: 03/11/2024 */ /************************** COMMENTS *******************************/ /* THIS INPUT STATMENT IS FOR THE 2022 SEER-MEDICAID LINKAGE. */ /* IF YOU RECEIVED MEDICAID FILES BEFORE MAY 2023 THEN YOU WILL */ /* NEED A DIFFERENT INPUT STATEMENT. PLEASE CONTACT IMS VIA E-MAIL AT */ /* SEER-MEDICARE@IMSWEB.COM AND AN INPUT STATEMENT WILL BE SENT TO YOU */ /***********************************************************************/ /*************** IMPORTANT PROGRAMING NOTES ************************/ /* If you are using PC SAS to read in these files you will have to */ /* un-zip the files first and use the un-zipped filename statement, */ /* rather than using the zipped files and statement. */ /***********************************************************************/ *filename tafwver '/directory/taf.demog.waiver.2019.txt'; /* reading in an un-zipped file* / *filename tafwver pipe 'gunzip -c /directory/taf.demog.waiver.2019.txt.gz'; /* reading in a zipped file */ *filename tafwver pipe 'gunzip -c /directory/taf.demog.waiver.*.txt.gz'; /* using wildcard to match multiple files */ options nocenter validvarname=upcase; data taf_waiver; length patient_id $15 MSIS_ID $32 WVR_ID_01_01 $20 WVR_ID_01_02 $20 WVR_ID_01_03 $20 WVR_ID_01_04 $20 WVR_ID_01_05 $20 WVR_ID_01_06 $20 WVR_ID_01_07 $20 WVR_ID_01_08 $20 WVR_ID_01_09 $20 WVR_ID_01_10 $20 WVR_ID_01_11 $20 WVR_ID_01_12 $20 WVR_ID_02_01 $20 WVR_ID_02_02 $20 WVR_ID_02_03 $20 WVR_ID_02_04 $20 WVR_ID_02_05 $20 WVR_ID_02_06 $20 WVR_ID_02_07 $20 WVR_ID_02_08 $20 WVR_ID_02_09 $20 WVR_ID_02_10 $20 WVR_ID_02_11 $20 WVR_ID_02_12 $20 WVR_ID_03_01 $20 WVR_ID_03_02 $20 WVR_ID_03_03 $20 WVR_ID_03_04 $20 WVR_ID_03_05 $20 WVR_ID_03_06 $20 WVR_ID_03_07 $20 WVR_ID_03_08 $20 WVR_ID_03_09 $20 WVR_ID_03_10 $20 WVR_ID_03_11 $20 WVR_ID_03_12 $20 WVR_ID_04_01 $20 WVR_ID_04_02 $20 WVR_ID_04_03 $20 WVR_ID_04_04 $20 WVR_ID_04_05 $20 WVR_ID_04_06 $20 WVR_ID_04_07 $20 WVR_ID_04_08 $20 WVR_ID_04_09 $20 WVR_ID_04_10 $20 WVR_ID_04_11 $20 WVR_ID_04_12 $20 WVR_ID_05_01 $20 WVR_ID_05_02 $20 WVR_ID_05_03 $20 WVR_ID_05_04 $20 WVR_ID_05_05 $20 WVR_ID_05_06 $20 WVR_ID_05_07 $20 WVR_ID_05_08 $20 WVR_ID_05_09 $20 WVR_ID_05_10 $20 WVR_ID_05_11 $20 WVR_ID_05_12 $20 WVR_ID_06_01 $20 WVR_ID_06_02 $20 WVR_ID_06_03 $20 WVR_ID_06_04 $20 WVR_ID_06_05 $20 WVR_ID_06_06 $20 WVR_ID_06_07 $20 WVR_ID_06_08 $20 WVR_ID_06_09 $20 WVR_ID_06_10 $20 WVR_ID_06_11 $20 WVR_ID_06_12 $20 WVR_ID_07_01 $20 WVR_ID_07_02 $20 WVR_ID_07_03 $20 WVR_ID_07_04 $20 WVR_ID_07_05 $20 WVR_ID_07_06 $20 WVR_ID_07_07 $20 WVR_ID_07_08 $20 WVR_ID_07_09 $20 WVR_ID_07_10 $20 WVR_ID_07_11 $20 WVR_ID_07_12 $20 WVR_ID_08_01 $20 WVR_ID_08_02 $20 WVR_ID_08_03 $20 WVR_ID_08_04 $20 WVR_ID_08_05 $20 WVR_ID_08_06 $20 WVR_ID_08_07 $20 WVR_ID_08_08 $20 WVR_ID_08_09 $20 WVR_ID_08_10 $20 WVR_ID_08_11 $20 WVR_ID_08_12 $20 WVR_ID_09_01 $20 WVR_ID_09_02 $20 WVR_ID_09_03 $20 WVR_ID_09_04 $20 WVR_ID_09_05 $20 WVR_ID_09_06 $20 WVR_ID_09_07 $20 WVR_ID_09_08 $20 WVR_ID_09_09 $20 WVR_ID_09_10 $20 WVR_ID_09_11 $20 WVR_ID_09_12 $20 WVR_ID_10_01 $20 WVR_ID_10_02 $20 WVR_ID_10_03 $20 WVR_ID_10_04 $20 WVR_ID_10_05 $20 WVR_ID_10_06 $20 WVR_ID_10_07 $20 WVR_ID_10_08 $20 WVR_ID_10_09 $20 WVR_ID_10_10 $20 WVR_ID_10_11 $20 WVR_ID_10_12 $20 ; infile tafwver lrecl=2729 missover; input @00001 patient_id $CHAR15. @00016 MSIS_ID $CHAR32. /*encrypted*/ @00048 STATE_CD $CHAR2. @00050 SUBMTG_STATE_CD $CHAR2. @00052 WVR_1915C_TYPE_CD $CHAR2. @00054 WVR_1915C_MOS 2. @00056 WVR_1915B_MOS 2. @00058 WVR_1915BC_MOS 2. @00060 WVR_1115_TYPE_CD $CHAR2. @00062 PHRMCY_WVR_1115_MOS 2. @00064 DSTR_RLTD_WVR_1115_MOS 2. @00066 FMLY_PLNG_ONLY_WVR_1115_MOS 2. @00068 HIFA_WVR_1115_MOS 2. @00070 OTH_WVR_1115_MOS 2. @00072 OTH_WVR_TYPE_MOS 2. @00074 CMMI_SECT_1115A_DEMO_IND_01 $CHAR1. @00075 CMMI_SECT_1115A_DEMO_IND_02 $CHAR1. @00076 CMMI_SECT_1115A_DEMO_IND_03 $CHAR1. @00077 CMMI_SECT_1115A_DEMO_IND_04 $CHAR1. @00078 CMMI_SECT_1115A_DEMO_IND_05 $CHAR1. @00079 CMMI_SECT_1115A_DEMO_IND_06 $CHAR1. @00080 CMMI_SECT_1115A_DEMO_IND_07 $CHAR1. @00081 CMMI_SECT_1115A_DEMO_IND_08 $CHAR1. @00082 CMMI_SECT_1115A_DEMO_IND_09 $CHAR1. @00083 CMMI_SECT_1115A_DEMO_IND_10 $CHAR1. @00084 CMMI_SECT_1115A_DEMO_IND_11 $CHAR1. @00085 CMMI_SECT_1115A_DEMO_IND_12 $CHAR1. @00086 WVR_ID_01_01 $CHAR20. @00106 WVR_ID_01_02 $CHAR20. @00126 WVR_ID_01_03 $CHAR20. @00146 WVR_ID_01_04 $CHAR20. @00166 WVR_ID_01_05 $CHAR20. @00186 WVR_ID_01_06 $CHAR20. @00206 WVR_ID_01_07 $CHAR20. @00226 WVR_ID_01_08 $CHAR20. @00246 WVR_ID_01_09 $CHAR20. @00266 WVR_ID_01_10 $CHAR20. @00286 WVR_ID_01_11 $CHAR20. @00306 WVR_ID_01_12 $CHAR20. @00326 WVR_TYPE_CD_01_01 $CHAR2. @00328 WVR_TYPE_CD_01_02 $CHAR2. @00330 WVR_TYPE_CD_01_03 $CHAR2. @00332 WVR_TYPE_CD_01_04 $CHAR2. @00334 WVR_TYPE_CD_01_05 $CHAR2. @00336 WVR_TYPE_CD_01_06 $CHAR2. @00338 WVR_TYPE_CD_01_07 $CHAR2. @00340 WVR_TYPE_CD_01_08 $CHAR2. @00342 WVR_TYPE_CD_01_09 $CHAR2. @00344 WVR_TYPE_CD_01_10 $CHAR2. @00346 WVR_TYPE_CD_01_11 $CHAR2. @00348 WVR_TYPE_CD_01_12 $CHAR2. @00350 WVR_ID_02_01 $CHAR20. @00370 WVR_ID_02_02 $CHAR20. @00390 WVR_ID_02_03 $CHAR20. @00410 WVR_ID_02_04 $CHAR20. @00430 WVR_ID_02_05 $CHAR20. @00450 WVR_ID_02_06 $CHAR20. @00470 WVR_ID_02_07 $CHAR20. @00490 WVR_ID_02_08 $CHAR20. @00510 WVR_ID_02_09 $CHAR20. @00530 WVR_ID_02_10 $CHAR20. @00550 WVR_ID_02_11 $CHAR20. @00570 WVR_ID_02_12 $CHAR20. @00590 WVR_TYPE_CD_02_01 $CHAR2. @00592 WVR_TYPE_CD_02_02 $CHAR2. @00594 WVR_TYPE_CD_02_03 $CHAR2. @00596 WVR_TYPE_CD_02_04 $CHAR2. @00598 WVR_TYPE_CD_02_05 $CHAR2. @00600 WVR_TYPE_CD_02_06 $CHAR2. @00602 WVR_TYPE_CD_02_07 $CHAR2. @00604 WVR_TYPE_CD_02_08 $CHAR2. @00606 WVR_TYPE_CD_02_09 $CHAR2. @00608 WVR_TYPE_CD_02_10 $CHAR2. @00610 WVR_TYPE_CD_02_11 $CHAR2. @00612 WVR_TYPE_CD_02_12 $CHAR2. @00614 WVR_ID_03_01 $CHAR20. @00634 WVR_ID_03_02 $CHAR20. @00654 WVR_ID_03_03 $CHAR20. @00674 WVR_ID_03_04 $CHAR20. @00694 WVR_ID_03_05 $CHAR20. @00714 WVR_ID_03_06 $CHAR20. @00734 WVR_ID_03_07 $CHAR20. @00754 WVR_ID_03_08 $CHAR20. @00774 WVR_ID_03_09 $CHAR20. @00794 WVR_ID_03_10 $CHAR20. @00814 WVR_ID_03_11 $CHAR20. @00834 WVR_ID_03_12 $CHAR20. @00854 WVR_TYPE_CD_03_01 $CHAR2. @00856 WVR_TYPE_CD_03_02 $CHAR2. @00858 WVR_TYPE_CD_03_03 $CHAR2. @00860 WVR_TYPE_CD_03_04 $CHAR2. @00862 WVR_TYPE_CD_03_05 $CHAR2. @00864 WVR_TYPE_CD_03_06 $CHAR2. @00866 WVR_TYPE_CD_03_07 $CHAR2. @00868 WVR_TYPE_CD_03_08 $CHAR2. @00870 WVR_TYPE_CD_03_09 $CHAR2. @00872 WVR_TYPE_CD_03_10 $CHAR2. @00874 WVR_TYPE_CD_03_11 $CHAR2. @00876 WVR_TYPE_CD_03_12 $CHAR2. @00878 WVR_ID_04_01 $CHAR20. @00898 WVR_ID_04_02 $CHAR20. @00918 WVR_ID_04_03 $CHAR20. @00938 WVR_ID_04_04 $CHAR20. @00958 WVR_ID_04_05 $CHAR20. @00978 WVR_ID_04_06 $CHAR20. @00998 WVR_ID_04_07 $CHAR20. @01018 WVR_ID_04_08 $CHAR20. @01038 WVR_ID_04_09 $CHAR20. @01058 WVR_ID_04_10 $CHAR20. @01078 WVR_ID_04_11 $CHAR20. @01098 WVR_ID_04_12 $CHAR20. @01118 WVR_TYPE_CD_04_01 $CHAR2. @01120 WVR_TYPE_CD_04_02 $CHAR2. @01122 WVR_TYPE_CD_04_03 $CHAR2. @01124 WVR_TYPE_CD_04_04 $CHAR2. @01126 WVR_TYPE_CD_04_05 $CHAR2. @01128 WVR_TYPE_CD_04_06 $CHAR2. @01130 WVR_TYPE_CD_04_07 $CHAR2. @01132 WVR_TYPE_CD_04_08 $CHAR2. @01134 WVR_TYPE_CD_04_09 $CHAR2. @01136 WVR_TYPE_CD_04_10 $CHAR2. @01138 WVR_TYPE_CD_04_11 $CHAR2. @01140 WVR_TYPE_CD_04_12 $CHAR2. @01142 WVR_ID_05_01 $CHAR20. @01162 WVR_ID_05_02 $CHAR20. @01182 WVR_ID_05_03 $CHAR20. @01202 WVR_ID_05_04 $CHAR20. @01222 WVR_ID_05_05 $CHAR20. @01242 WVR_ID_05_06 $CHAR20. @01262 WVR_ID_05_07 $CHAR20. @01282 WVR_ID_05_08 $CHAR20. @01302 WVR_ID_05_09 $CHAR20. @01322 WVR_ID_05_10 $CHAR20. @01342 WVR_ID_05_11 $CHAR20. @01362 WVR_ID_05_12 $CHAR20. @01382 WVR_TYPE_CD_05_01 $CHAR2. @01384 WVR_TYPE_CD_05_02 $CHAR2. @01386 WVR_TYPE_CD_05_03 $CHAR2. @01388 WVR_TYPE_CD_05_04 $CHAR2. @01390 WVR_TYPE_CD_05_05 $CHAR2. @01392 WVR_TYPE_CD_05_06 $CHAR2. @01394 WVR_TYPE_CD_05_07 $CHAR2. @01396 WVR_TYPE_CD_05_08 $CHAR2. @01398 WVR_TYPE_CD_05_09 $CHAR2. @01400 WVR_TYPE_CD_05_10 $CHAR2. @01402 WVR_TYPE_CD_05_11 $CHAR2. @01404 WVR_TYPE_CD_05_12 $CHAR2. @01406 WVR_ID_06_01 $CHAR20. @01426 WVR_ID_06_02 $CHAR20. @01446 WVR_ID_06_03 $CHAR20. @01466 WVR_ID_06_04 $CHAR20. @01486 WVR_ID_06_05 $CHAR20. @01506 WVR_ID_06_06 $CHAR20. @01526 WVR_ID_06_07 $CHAR20. @01546 WVR_ID_06_08 $CHAR20. @01566 WVR_ID_06_09 $CHAR20. @01586 WVR_ID_06_10 $CHAR20. @01606 WVR_ID_06_11 $CHAR20. @01626 WVR_ID_06_12 $CHAR20. @01646 WVR_TYPE_CD_06_01 $CHAR2. @01648 WVR_TYPE_CD_06_02 $CHAR2. @01650 WVR_TYPE_CD_06_03 $CHAR2. @01652 WVR_TYPE_CD_06_04 $CHAR2. @01654 WVR_TYPE_CD_06_05 $CHAR2. @01656 WVR_TYPE_CD_06_06 $CHAR2. @01658 WVR_TYPE_CD_06_07 $CHAR2. @01660 WVR_TYPE_CD_06_08 $CHAR2. @01662 WVR_TYPE_CD_06_09 $CHAR2. @01664 WVR_TYPE_CD_06_10 $CHAR2. @01666 WVR_TYPE_CD_06_11 $CHAR2. @01668 WVR_TYPE_CD_06_12 $CHAR2. @01670 WVR_ID_07_01 $CHAR20. @01690 WVR_ID_07_02 $CHAR20. @01710 WVR_ID_07_03 $CHAR20. @01730 WVR_ID_07_04 $CHAR20. @01750 WVR_ID_07_05 $CHAR20. @01770 WVR_ID_07_06 $CHAR20. @01790 WVR_ID_07_07 $CHAR20. @01810 WVR_ID_07_08 $CHAR20. @01830 WVR_ID_07_09 $CHAR20. @01850 WVR_ID_07_10 $CHAR20. @01870 WVR_ID_07_11 $CHAR20. @01890 WVR_ID_07_12 $CHAR20. @01910 WVR_TYPE_CD_07_01 $CHAR2. @01912 WVR_TYPE_CD_07_02 $CHAR2. @01914 WVR_TYPE_CD_07_03 $CHAR2. @01916 WVR_TYPE_CD_07_04 $CHAR2. @01918 WVR_TYPE_CD_07_05 $CHAR2. @01920 WVR_TYPE_CD_07_06 $CHAR2. @01922 WVR_TYPE_CD_07_07 $CHAR2. @01924 WVR_TYPE_CD_07_08 $CHAR2. @01926 WVR_TYPE_CD_07_09 $CHAR2. @01928 WVR_TYPE_CD_07_10 $CHAR2. @01930 WVR_TYPE_CD_07_11 $CHAR2. @01932 WVR_TYPE_CD_07_12 $CHAR2. @01934 WVR_ID_08_01 $CHAR20. @01954 WVR_ID_08_02 $CHAR20. @01974 WVR_ID_08_03 $CHAR20. @01994 WVR_ID_08_04 $CHAR20. @02014 WVR_ID_08_05 $CHAR20. @02034 WVR_ID_08_06 $CHAR20. @02054 WVR_ID_08_07 $CHAR20. @02074 WVR_ID_08_08 $CHAR20. @02094 WVR_ID_08_09 $CHAR20. @02114 WVR_ID_08_10 $CHAR20. @02134 WVR_ID_08_11 $CHAR20. @02154 WVR_ID_08_12 $CHAR20. @02174 WVR_TYPE_CD_08_01 $CHAR2. @02176 WVR_TYPE_CD_08_02 $CHAR2. @02178 WVR_TYPE_CD_08_03 $CHAR2. @02180 WVR_TYPE_CD_08_04 $CHAR2. @02182 WVR_TYPE_CD_08_05 $CHAR2. @02184 WVR_TYPE_CD_08_06 $CHAR2. @02186 WVR_TYPE_CD_08_07 $CHAR2. @02188 WVR_TYPE_CD_08_08 $CHAR2. @02190 WVR_TYPE_CD_08_09 $CHAR2. @02192 WVR_TYPE_CD_08_10 $CHAR2. @02194 WVR_TYPE_CD_08_11 $CHAR2. @02196 WVR_TYPE_CD_08_12 $CHAR2. @02198 WVR_ID_09_01 $CHAR20. @02218 WVR_ID_09_02 $CHAR20. @02238 WVR_ID_09_03 $CHAR20. @02258 WVR_ID_09_04 $CHAR20. @02278 WVR_ID_09_05 $CHAR20. @02298 WVR_ID_09_06 $CHAR20. @02318 WVR_ID_09_07 $CHAR20. @02338 WVR_ID_09_08 $CHAR20. @02358 WVR_ID_09_09 $CHAR20. @02378 WVR_ID_09_10 $CHAR20. @02398 WVR_ID_09_11 $CHAR20. @02418 WVR_ID_09_12 $CHAR20. @02438 WVR_TYPE_CD_09_01 $CHAR2. @02440 WVR_TYPE_CD_09_02 $CHAR2. @02442 WVR_TYPE_CD_09_03 $CHAR2. @02444 WVR_TYPE_CD_09_04 $CHAR2. @02446 WVR_TYPE_CD_09_05 $CHAR2. @02448 WVR_TYPE_CD_09_06 $CHAR2. @02450 WVR_TYPE_CD_09_07 $CHAR2. @02452 WVR_TYPE_CD_09_08 $CHAR2. @02454 WVR_TYPE_CD_09_09 $CHAR2. @02456 WVR_TYPE_CD_09_10 $CHAR2. @02458 WVR_TYPE_CD_09_11 $CHAR2. @02460 WVR_TYPE_CD_09_12 $CHAR2. @02462 WVR_ID_10_01 $CHAR20. @02482 WVR_ID_10_02 $CHAR20. @02502 WVR_ID_10_03 $CHAR20. @02522 WVR_ID_10_04 $CHAR20. @02542 WVR_ID_10_05 $CHAR20. @02562 WVR_ID_10_06 $CHAR20. @02582 WVR_ID_10_07 $CHAR20. @02602 WVR_ID_10_08 $CHAR20. @02622 WVR_ID_10_09 $CHAR20. @02642 WVR_ID_10_10 $CHAR20. @02662 WVR_ID_10_11 $CHAR20. @02682 WVR_ID_10_12 $CHAR20. @02702 WVR_TYPE_CD_10_01 $CHAR2. @02704 WVR_TYPE_CD_10_02 $CHAR2. @02706 WVR_TYPE_CD_10_03 $CHAR2. @02708 WVR_TYPE_CD_10_04 $CHAR2. @02710 WVR_TYPE_CD_10_05 $CHAR2. @02712 WVR_TYPE_CD_10_06 $CHAR2. @02714 WVR_TYPE_CD_10_07 $CHAR2. @02716 WVR_TYPE_CD_10_08 $CHAR2. @02718 WVR_TYPE_CD_10_09 $CHAR2. @02720 WVR_TYPE_CD_10_10 $CHAR2. @02722 WVR_TYPE_CD_10_11 $CHAR2. @02724 WVR_TYPE_CD_10_12 $CHAR2. @02726 RFRNC_YR $CHAR4. ; label patient_id = "Patient ID" MSIS_ID = "Encrypted State Assigned Beneficiary Unique Identifier" STATE_CD = "Submitting State Alpha Abbreviation" SUBMTG_STATE_CD = "Submitting State Entity Code" WVR_1915C_TYPE_CD = "1915(c) Waiver Type Code - Ltst in Yr" WVR_1915C_MOS = "1915(c) Waiver Months" WVR_1915B_MOS = "1915(b) Waiver Months" WVR_1915BC_MOS = "1915(b)(c) Waiver Months" WVR_1115_TYPE_CD = "1115 Waiver Type Code - Ltst in Yr" PHRMCY_WVR_1115_MOS = "1115 Pharmacy Waiver Months" DSTR_RLTD_WVR_1115_MOS = "1115 Disaster-Related Waiver Months" FMLY_PLNG_ONLY_WVR_1115_MOS = "1115 Family Planning Only Waiver Months" HIFA_WVR_1115_MOS = "1115 Hlth Insurance Flexibility and Accountability Waiver Months" OTH_WVR_1115_MOS = "1115 Other Type of Waiver Months" OTH_WVR_TYPE_MOS = "Other Waiver Type Months" CMMI_SECT_1115A_DEMO_IND_01 = "Ind of Enrollment in CMMI Section 1115A Demonstration - January" CMMI_SECT_1115A_DEMO_IND_02 = "Ind of Enrollment in CMMI Section 1115A Demonstration - February" CMMI_SECT_1115A_DEMO_IND_03 = "Ind of Enrollment in CMMI Section 1115A Demonstration - March" CMMI_SECT_1115A_DEMO_IND_04 = "Ind of Enrollment in CMMI Section 1115A Demonstration - April" CMMI_SECT_1115A_DEMO_IND_05 = "Ind of Enrollment in CMMI Section 1115A Demonstration - May" CMMI_SECT_1115A_DEMO_IND_06 = "Ind of Enrollment in CMMI Section 1115A Demonstration - June" CMMI_SECT_1115A_DEMO_IND_07 = "Ind of Enrollment in CMMI Section 1115A Demonstration - July" CMMI_SECT_1115A_DEMO_IND_08 = "Ind of Enrollment in CMMI Section 1115A Demonstration - August" CMMI_SECT_1115A_DEMO_IND_09 = "Ind of Enrollment in CMMI Section 1115A Demonstration - September" CMMI_SECT_1115A_DEMO_IND_10 = "Ind of Enrollment in CMMI Section 1115A Demonstration - October" CMMI_SECT_1115A_DEMO_IND_11 = "Ind of Enrollment in CMMI Section 1115A Demonstration - November" CMMI_SECT_1115A_DEMO_IND_12 = "Ind of Enrollment in CMMI Section 1115A Demonstration - December" WVR_ID_01_01 = "Waiver ID (1st Occurrence) - January" WVR_ID_01_02 = "Waiver ID (1st Occurrence) - February" WVR_ID_01_03 = "Waiver ID (1st Occurrence) - March" WVR_ID_01_04 = "Waiver ID (1st Occurrence) - April" WVR_ID_01_05 = "Waiver ID (1st Occurrence) - May" WVR_ID_01_06 = "Waiver ID (1st Occurrence) - June" WVR_ID_01_07 = "Waiver ID (1st Occurrence) - July" WVR_ID_01_08 = "Waiver ID (1st Occurrence) - August" WVR_ID_01_09 = "Waiver ID (1st Occurrence) - September" WVR_ID_01_10 = "Waiver ID (1st Occurrence) - October" WVR_ID_01_11 = "Waiver ID (1st Occurrence) - November" WVR_ID_01_12 = "Waiver ID (1st Occurrence) - December" WVR_TYPE_CD_01_01 = "Waiver Type Code (1st Occurrence) - January" WVR_TYPE_CD_01_02 = "Waiver Type Code (1st Occurrence) -February" WVR_TYPE_CD_01_03 = "Waiver Type Code (1st Occurrence) - March" WVR_TYPE_CD_01_04 = "Waiver Type Code (1st Occurrence) - April" WVR_TYPE_CD_01_05 = "Waiver Type Code (1st Occurrence) - May" WVR_TYPE_CD_01_06 = "Waiver Type Code (1st Occurrence) - June" WVR_TYPE_CD_01_07 = "Waiver Type Code (1st Occurrence) - July" WVR_TYPE_CD_01_08 = "Waiver Type Code (1st Occurrence) - August" WVR_TYPE_CD_01_09 = "Waiver Type Code (1st Occurrence) - September" WVR_TYPE_CD_01_10 = "Waiver Type Code (1st Occurrence) - October" WVR_TYPE_CD_01_11 = "Waiver Type Code (1st Occurrence) - November" WVR_TYPE_CD_01_12 = "Waiver Type Code (1st Occurrence) - December" WVR_ID_02_01 = "Waiver ID (2nd Occurrence) - January" WVR_ID_02_02 = "Waiver ID (2nd Occurrence) - February" WVR_ID_02_03 = "Waiver ID (2nd Occurrence) - March" WVR_ID_02_04 = "Waiver ID (2nd Occurrence) - April" WVR_ID_02_05 = "Waiver ID (2nd Occurrence) - May" WVR_ID_02_06 = "Waiver ID (2nd Occurrence) - June" WVR_ID_02_07 = "Waiver ID (2nd Occurrence) - July" WVR_ID_02_08 = "Waiver ID (2nd Occurrence) - August" WVR_ID_02_09 = "Waiver ID (2nd Occurrence) - September" WVR_ID_02_10 = "Waiver ID (2nd Occurrence) - October" WVR_ID_02_11 = "Waiver ID (2nd Occurrence) - November" WVR_ID_02_12 = "Waiver ID (2nd Occurrence) - December" WVR_TYPE_CD_02_01 = "Waiver Type Code (2nd Occurrence) - January" WVR_TYPE_CD_02_02 = "Waiver Type Code (2nd Occurrence) -February" WVR_TYPE_CD_02_03 = "Waiver Type Code (2nd Occurrence) - March" WVR_TYPE_CD_02_04 = "Waiver Type Code (2nd Occurrence) - April" WVR_TYPE_CD_02_05 = "Waiver Type Code (2nd Occurrence) - May" WVR_TYPE_CD_02_06 = "Waiver Type Code (2nd Occurrence) - June" WVR_TYPE_CD_02_07 = "Waiver Type Code (2nd Occurrence) - July" WVR_TYPE_CD_02_08 = "Waiver Type Code (2nd Occurrence) - August" WVR_TYPE_CD_02_09 = "Waiver Type Code (2nd Occurrence) - September" WVR_TYPE_CD_02_10 = "Waiver Type Code (2nd Occurrence) - October" WVR_TYPE_CD_02_11 = "Waiver Type Code (2nd Occurrence) - November" WVR_TYPE_CD_02_12 = "Waiver Type Code (2nd Occurrence) - December" WVR_ID_03_01 = "Waiver ID (3rd Occurrence) - January" WVR_ID_03_02 = "Waiver ID (3rd Occurrence) - February" WVR_ID_03_03 = "Waiver ID (3rd Occurrence) - March" WVR_ID_03_04 = "Waiver ID (3rd Occurrence) - April" WVR_ID_03_05 = "Waiver ID (3rd Occurrence) - May" WVR_ID_03_06 = "Waiver ID (3rd Occurrence) - June" WVR_ID_03_07 = "Waiver ID (3rd Occurrence) - July" WVR_ID_03_08 = "Waiver ID (3rd Occurrence) - August" WVR_ID_03_09 = "Waiver ID (3rd Occurrence) - September" WVR_ID_03_10 = "Waiver ID (3rd Occurrence) - October" WVR_ID_03_11 = "Waiver ID (3rd Occurrence) - November" WVR_ID_03_12 = "Waiver ID (3rd Occurrence) - December" WVR_TYPE_CD_03_01 = "Waiver Type Code (3rd Occurrence) - January" WVR_TYPE_CD_03_02 = "Waiver Type Code (3rd Occurrence) - February" WVR_TYPE_CD_03_03 = "Waiver Type Code (3rd Occurrence) - March" WVR_TYPE_CD_03_04 = "Waiver Type Code (3rd Occurrence) - April" WVR_TYPE_CD_03_05 = "Waiver Type Code (3rd Occurrence) - May" WVR_TYPE_CD_03_06 = "Waiver Type Code (3rd Occurrence) - June" WVR_TYPE_CD_03_07 = "Waiver Type Code (3rd Occurrence) - July" WVR_TYPE_CD_03_08 = "Waiver Type Code (3rd Occurrence) - August" WVR_TYPE_CD_03_09 = "Waiver Type Code (3rd Occurrence) - September" WVR_TYPE_CD_03_10 = "Waiver Type Code (3rd Occurrence) - October" WVR_TYPE_CD_03_11 = "Waiver Type Code (3rd Occurrence) - November" WVR_TYPE_CD_03_12 = "Waiver Type Code (3rd Occurrence) - December" WVR_ID_04_01 = "Waiver ID (4th Occurrence) - January" WVR_ID_04_02 = "Waiver ID (4th Occurrence) - February" WVR_ID_04_03 = "Waiver ID (4th Occurrence) - March" WVR_ID_04_04 = "Waiver ID (4th Occurrence) - April" WVR_ID_04_05 = "Waiver ID (4th Occurrence) - May" WVR_ID_04_06 = "Waiver ID (4th Occurrence) - June" WVR_ID_04_07 = "Waiver ID (4th Occurrence) - July" WVR_ID_04_08 = "Waiver ID (4th Occurrence) - August" WVR_ID_04_09 = "Waiver ID (4th Occurrence) - September" WVR_ID_04_10 = "Waiver ID (4th Occurrence) - October" WVR_ID_04_11 = "Waiver ID (4th Occurrence) - November" WVR_ID_04_12 = "Waiver ID (4th Occurrence) - December" WVR_TYPE_CD_04_01 = "Waiver Type Code (4th Occurrence) - January" WVR_TYPE_CD_04_02 = "Waiver Type Code (4th Occurrence) - February" WVR_TYPE_CD_04_03 = "Waiver Type Code (4th Occurrence) - March" WVR_TYPE_CD_04_04 = "Waiver Type Code (4th Occurrence) - April" WVR_TYPE_CD_04_05 = "Waiver Type Code (4th Occurrence) - May" WVR_TYPE_CD_04_06 = "Waiver Type Code (4th Occurrence) - June" WVR_TYPE_CD_04_07 = "Waiver Type Code (4th Occurrence) - July" WVR_TYPE_CD_04_08 = "Waiver Type Code (4th Occurrence) - August" WVR_TYPE_CD_04_09 = "Waiver Type Code (4th Occurrence) - September" WVR_TYPE_CD_04_10 = "Waiver Type Code (4th Occurrence) - October" WVR_TYPE_CD_04_11 = "Waiver Type Code (4th Occurrence) - November" WVR_TYPE_CD_04_12 = "Waiver Type Code (4th Occurrence) - December" WVR_ID_05_01 = "Waiver ID (5th Occurrence) - January" WVR_ID_05_02 = "Waiver ID (5th Occurrence) - February" WVR_ID_05_03 = "Waiver ID (5th Occurrence) - March" WVR_ID_05_04 = "Waiver ID (5th Occurrence) - April" WVR_ID_05_05 = "Waiver ID (5th Occurrence) - May" WVR_ID_05_06 = "Waiver ID (5th Occurrence) - June" WVR_ID_05_07 = "Waiver ID (5th Occurrence) - July" WVR_ID_05_08 = "Waiver ID (5th Occurrence) - August" WVR_ID_05_09 = "Waiver ID (5th Occurrence) - September" WVR_ID_05_10 = "Waiver ID (5th Occurrence) - October" WVR_ID_05_11 = "Waiver ID (5th Occurrence) - November" WVR_ID_05_12 = "Waiver ID (5th Occurrence) - December" WVR_TYPE_CD_05_01 = "Waiver Type Code (5th Occurrence) - January" WVR_TYPE_CD_05_02 = "Waiver Type Code (5th Occurrence) - February" WVR_TYPE_CD_05_03 = "Waiver Type Code (5th Occurrence) - March" WVR_TYPE_CD_05_04 = "Waiver Type Code (5th Occurrence) - April" WVR_TYPE_CD_05_05 = "Waiver Type Code (5th Occurrence) - May" WVR_TYPE_CD_05_06 = "Waiver Type Code (5th Occurrence) - June" WVR_TYPE_CD_05_07 = "Waiver Type Code (5th Occurrence) - July" WVR_TYPE_CD_05_08 = "Waiver Type Code (5th Occurrence) - August" WVR_TYPE_CD_05_09 = "Waiver Type Code (5th Occurrence) - September" WVR_TYPE_CD_05_10 = "Waiver Type Code (5th Occurrence) - October" WVR_TYPE_CD_05_11 = "Waiver Type Code (5th Occurrence) - November" WVR_TYPE_CD_05_12 = "Waiver Type Code (5th Occurrence) - December" WVR_ID_06_01 = "Waiver ID (6th Occurrence) - January" WVR_ID_06_02 = "Waiver ID (6th Occurrence) - February" WVR_ID_06_03 = "Waiver ID (6th Occurrence) - March" WVR_ID_06_04 = "Waiver ID (6th Occurrence) - April" WVR_ID_06_05 = "Waiver ID (6th Occurrence) - May" WVR_ID_06_06 = "Waiver ID (6th Occurrence) - June" WVR_ID_06_07 = "Waiver ID (6th Occurrence) - July" WVR_ID_06_08 = "Waiver ID (6th Occurrence) - August" WVR_ID_06_09 = "Waiver ID (6th Occurrence) - September" WVR_ID_06_10 = "Waiver ID (6th Occurrence) - October" WVR_ID_06_11 = "Waiver ID (6th Occurrence) - November" WVR_ID_06_12 = "Waiver ID (6th Occurrence) - December" WVR_TYPE_CD_06_01 = "Waiver Type Code (6th Occurrence) - January" WVR_TYPE_CD_06_02 = "Waiver Type Code (6th Occurrence) - February" WVR_TYPE_CD_06_03 = "Waiver Type Code (6th Occurrence) - March" WVR_TYPE_CD_06_04 = "Waiver Type Code (6th Occurrence) - April" WVR_TYPE_CD_06_05 = "Waiver Type Code (6th Occurrence) - May" WVR_TYPE_CD_06_06 = "Waiver Type Code (6th Occurrence) - June" WVR_TYPE_CD_06_07 = "Waiver Type Code (6th Occurrence) - July" WVR_TYPE_CD_06_08 = "Waiver Type Code (6th Occurrence) - August" WVR_TYPE_CD_06_09 = "Waiver Type Code (6th Occurrence) - September" WVR_TYPE_CD_06_10 = "Waiver Type Code (6th Occurrence) - October" WVR_TYPE_CD_06_11 = "Waiver Type Code (6th Occurrence) - November" WVR_TYPE_CD_06_12 = "Waiver Type Code (6th Occurrence) - December" WVR_ID_07_01 = "Waiver ID (7th Occurrence) - January" WVR_ID_07_02 = "Waiver ID (7th Occurrence) - February" WVR_ID_07_03 = "Waiver ID (7th Occurrence) - March" WVR_ID_07_04 = "Waiver ID (7th Occurrence) - April" WVR_ID_07_05 = "Waiver ID (7th Occurrence) - May" WVR_ID_07_06 = "Waiver ID (7th Occurrence) - June" WVR_ID_07_07 = "Waiver ID (7th Occurrence) - July" WVR_ID_07_08 = "Waiver ID (7th Occurrence) - August" WVR_ID_07_09 = "Waiver ID (7th Occurrence) - September" WVR_ID_07_10 = "Waiver ID (7th Occurrence) - October" WVR_ID_07_11 = "Waiver ID (7th Occurrence) - November" WVR_ID_07_12 = "Waiver ID (7th Occurrence) - December" WVR_TYPE_CD_07_01 = "Waiver Type Code (7th Occurrence) - January" WVR_TYPE_CD_07_02 = "Waiver Type Code (7th Occurrence) - February" WVR_TYPE_CD_07_03 = "Waiver Type Code (7th Occurrence) - March" WVR_TYPE_CD_07_04 = "Waiver Type Code (7th Occurrence) - April" WVR_TYPE_CD_07_05 = "Waiver Type Code (7th Occurrence) - May" WVR_TYPE_CD_07_06 = "Waiver Type Code (7th Occurrence) - June" WVR_TYPE_CD_07_07 = "Waiver Type Code (7th Occurrence) - July" WVR_TYPE_CD_07_08 = "Waiver Type Code (7th Occurrence) - August" WVR_TYPE_CD_07_09 = "Waiver Type Code (7th Occurrence) - September" WVR_TYPE_CD_07_10 = "Waiver Type Code (7th Occurrence) - October" WVR_TYPE_CD_07_11 = "Waiver Type Code (7th Occurrence) - November" WVR_TYPE_CD_07_12 = "Waiver Type Code (7th Occurrence) - December" WVR_ID_08_01 = "Waiver ID (8th Occurrence) - January" WVR_ID_08_02 = "Waiver ID (8th Occurrence) - February" WVR_ID_08_03 = "Waiver ID (8th Occurrence) - March" WVR_ID_08_04 = "Waiver ID (8th Occurrence) - April" WVR_ID_08_05 = "Waiver ID (8th Occurrence) - May" WVR_ID_08_06 = "Waiver ID (8th Occurrence) - June" WVR_ID_08_07 = "Waiver ID (8th Occurrence) - July" WVR_ID_08_08 = "Waiver ID (8th Occurrence) - August" WVR_ID_08_09 = "Waiver ID (8th Occurrence) - September" WVR_ID_08_10 = "Waiver ID (8th Occurrence) - October" WVR_ID_08_11 = "Waiver ID (8th Occurrence) - November" WVR_ID_08_12 = "Waiver ID (8th Occurrence) - December" WVR_TYPE_CD_08_01 = "Waiver Type Code (8th Occurrence) - January" WVR_TYPE_CD_08_02 = "Waiver Type Code (8th Occurrence) - February" WVR_TYPE_CD_08_03 = "Waiver Type Code (8th Occurrence) - March" WVR_TYPE_CD_08_04 = "Waiver Type Code (8th Occurrence) - April" WVR_TYPE_CD_08_05 = "Waiver Type Code (8th Occurrence) - May" WVR_TYPE_CD_08_06 = "Waiver Type Code (8th Occurrence) - June" WVR_TYPE_CD_08_07 = "Waiver Type Code (8th Occurrence) - July" WVR_TYPE_CD_08_08 = "Waiver Type Code (8th Occurrence) - August" WVR_TYPE_CD_08_09 = "Waiver Type Code (8th Occurrence) - September" WVR_TYPE_CD_08_10 = "Waiver Type Code (8th Occurrence) - October" WVR_TYPE_CD_08_11 = "Waiver Type Code (8th Occurrence) - November" WVR_TYPE_CD_08_12 = "Waiver Type Code (8th Occurrence) - December" WVR_ID_09_01 = "Waiver ID (9th Occurrence) - January" WVR_ID_09_02 = "Waiver ID (9th Occurrence) - February" WVR_ID_09_03 = "Waiver ID (9th Occurrence) - March" WVR_ID_09_04 = "Waiver ID (9th Occurrence) - April" WVR_ID_09_05 = "Waiver ID (9th Occurrence) - May" WVR_ID_09_06 = "Waiver ID (9th Occurrence) - June" WVR_ID_09_07 = "Waiver ID (9th Occurrence) - July" WVR_ID_09_08 = "Waiver ID (9th Occurrence) - August" WVR_ID_09_09 = "Waiver ID (9th Occurrence) - September" WVR_ID_09_10 = "Waiver ID (9th Occurrence) - October" WVR_ID_09_11 = "Waiver ID (9th Occurrence) - November" WVR_ID_09_12 = "Waiver ID (9th Occurrence) - December" WVR_TYPE_CD_09_01 = "Waiver Type Code (9th Occurrence) - January" WVR_TYPE_CD_09_02 = "Waiver Type Code (9th Occurrence) - February" WVR_TYPE_CD_09_03 = "Waiver Type Code (9th Occurrence) - March" WVR_TYPE_CD_09_04 = "Waiver Type Code (9th Occurrence) - April" WVR_TYPE_CD_09_05 = "Waiver Type Code (9th Occurrence) - May" WVR_TYPE_CD_09_06 = "Waiver Type Code (9th Occurrence) - June" WVR_TYPE_CD_09_07 = "Waiver Type Code (9th Occurrence) - July" WVR_TYPE_CD_09_08 = "Waiver Type Code (9th Occurrence) - August" WVR_TYPE_CD_09_09 = "Waiver Type Code (9th Occurrence) - September" WVR_TYPE_CD_09_10 = "Waiver Type Code (9th Occurrence) - October" WVR_TYPE_CD_09_11 = "Waiver Type Code (9th Occurrence) - November" WVR_TYPE_CD_09_12 = "Waiver Type Code (9th Occurrence) - December" WVR_ID_10_01 = "Waiver ID (10th Occurrence) - January" WVR_ID_10_02 = "Waiver ID (10th Occurrence) - February" WVR_ID_10_03 = "Waiver ID (10th Occurrence) - March" WVR_ID_10_04 = "Waiver ID (10th Occurrence) - April" WVR_ID_10_05 = "Waiver ID (10th Occurrence) - May" WVR_ID_10_06 = "Waiver ID (10th Occurrence) - June" WVR_ID_10_07 = "Waiver ID (10th Occurrence) - July" WVR_ID_10_08 = "Waiver ID (10th Occurrence) - August" WVR_ID_10_09 = "Waiver ID (10th Occurrence) - September" WVR_ID_10_10 = "Waiver ID (10th Occurrence) - October" WVR_ID_10_11 = "Waiver ID (10th Occurrence) - November" WVR_ID_10_12 = "Waiver ID (10th Occurrence) - December" WVR_TYPE_CD_10_01 = "Waiver Type Code (10th Occurrence) - January" WVR_TYPE_CD_10_02 = "Waiver Type Code (10th Occurrence) - February" WVR_TYPE_CD_10_03 = "Waiver Type Code (10th Occurrence) - March" WVR_TYPE_CD_10_04 = "Waiver Type Code (10th Occurrence) - April" WVR_TYPE_CD_10_05 = "Waiver Type Code (10th Occurrence) - May" WVR_TYPE_CD_10_06 = "Waiver Type Code (10th Occurrence) - June" WVR_TYPE_CD_10_07 = "Waiver Type Code (10th Occurrence) - July" WVR_TYPE_CD_10_08 = "Waiver Type Code (10th Occurrence) - August" WVR_TYPE_CD_10_09 = "Waiver Type Code (10th Occurrence) - September" WVR_TYPE_CD_10_10 = "Waiver Type Code (10th Occurrence) - October" WVR_TYPE_CD_10_11 = "Waiver Type Code (10th Occurrence) - November" WVR_TYPE_CD_10_12 = "Waiver Type Code (10th Occurrence) - December" RFRNC_YR = "Reference Yr" ; run; title 'T-MSIS ANALYTIC FILE DEMOG/ELIG WAIVER SAS Data Set'; proc contents data=taf_waiver position; * End of Program *;