1 The SAS System 17:48 Tuesday, January 8, 2013 NOTE: Copyright (c) 2002-2010 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.3 (TS1M0) Licensed to NATIONAL BUREAU OF ECONOMIC RESEARCH, Site 70111350. NOTE: This session is executing on the Linux 2.6.32-279.5.1.el6.x86_64 (LIN X64) platform. You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.07 seconds cpu time 0.02 seconds 1 ** POSQ.OTHER.SAS.DEC11.txt modified by Jean Roth , jroth@nber.org , 2012-09-21 ; 2 ** attrib statements added by Jean Roth ; 3 ** Modified dates to be read as numeric dates ; 4 options nocenter ; 5 options obs=100; 6 option mprint ; 7 %let year=2011; 8 %let yr=%substr(&year.,3); ** two-digit year; 9 %let sortit=prvdr_num; 10 libname library "/homes/data/pos/&year." ; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V9 Physical Name: /homes/data/pos/2011 11 12 13 %macro loop(ty=,inname=); 14 %let dataset=pos&year.&ty.; 15 16 * The following line should contain 17 the complete path and name of the raw data file. 18 On a PC, use backslashes in paths as in C:\ ; 19 20 FILENAME datafile pipe "unzip -p /homes/data/pos/&year./&inname..zip"; 21 22 DATA WORK.&dataset.; 23 INFILE datafile LRECL = 5000 missover ; 24 25 /************************************************************************ 26 * Job Number: 66091 2 The SAS System 17:48 Tuesday, January 8, 2013 27 * 28 * Procedure Number: 1 29 * 30 * Report Name: Automatic POS extract for OTHER for quarter 4, 2011 31 * 32 * Report Description: Automatic POS extract for OTHER for quarter 4, 33 * 2011 34 * 35 * Record Length: 4190 36 * 37 * Generation Date: Thu Jan 26 13:59:24 EST 2012 38 * 39 *************************************************************************/ 40 41 INPUT 42 43 @1 PRVDR_CTGRY_SBTYP_CD $CHAR2. 44 @3 PRVDR_CTGRY_CD $CHAR2. 45 @5 CHOW_CNT 2. 46 @7 CHOW_DT YYMMDD8. /*YYYYMMDD*/ 47 @15 CITY_NAME $CHAR28. 48 @43 ACPTBL_POC_SW $CHAR1. 49 @44 CMPLNC_STUS_CD $CHAR1. 50 @45 SSA_CNTY_CD $CHAR3. 51 @48 CROSS_REF_PROVIDER_NUMBER $CHAR10. 52 @58 CRTFCTN_DT YYMMDD8. /*YYYYMMDD*/ 53 @66 ELGBLTY_SW $CHAR1. 54 @67 FAC_NAME $CHAR50. 55 @117 INTRMDRY_CARR_CD $CHAR5. 56 @122 MDCD_VNDR_NUM $CHAR15. 57 @137 ORGNL_PRTCPTN_DT YYMMDD8. /*YYYYMMDD*/ 58 @145 CHOW_PRIOR_DT YYMMDD8. /*YYYYMMDD*/ 59 @153 INTRMDRY_CARR_PRIOR_CD $CHAR5. 60 @158 PRVDR_NUM $CHAR10. 61 @168 REC_STUS_CD $CHAR1. 62 @169 RGN_CD $CHAR2. 63 @171 SKLTN_REC_SW $CHAR1. 64 @172 STATE_CD $CHAR2. 65 @174 SSA_STATE_CD $CHAR2. 66 @176 STATE_RGN_CD $CHAR3. 67 @179 ST_ADR $CHAR50. 68 @229 PHNE_NUM $CHAR10. 69 @239 PGM_TRMNTN_CD $CHAR2. 70 @241 TRMNTN_EXPRTN_DT YYMMDD8. /*YYYYMMDD*/ 71 @249 SRVY_PRPSE_CD $CHAR1. 72 @250 GNRL_CNTL_TYPE_CD $CHAR2. 73 @252 ZIP_CD $CHAR5. 74 @257 FIPS_STATE_CD $CHAR2. 75 @259 FIPS_CNTY_CD $CHAR3. 76 @262 CBSA_URBN_RRL_IND $CHAR1. 77 @263 ACRDTN_EFCTV_DT YYMMDD8. /*YYYYMMDD*/ 78 @271 ACRDTN_EXPRTN_DT YYMMDD8. /*YYYYMMDD*/ 79 @279 ACRDTN_TYPE_CD $CHAR1. 80 @280 ACTVTY_PROFNL_CNTRCT_CNT 8. 81 @288 ACTVTY_PROFNL_FLTM_CNT 8. 82 @296 ACTVTY_PROFNL_PRTM_CNT 8. 83 @304 ACTVTY_STF_OTHR_CNTRCT_CNT 8. 84 @312 ACTVTY_STF_OTHR_FLTM_CNT 8. 3 The SAS System 17:48 Tuesday, January 8, 2013 85 @320 ACTVTY_STF_OTHR_PRTM_CNT 8. 86 @328 ACUTE_RESP_CARE_CD $CHAR1. 87 @329 PROFNL_ADMIN_CNTRCT_CNT 8. 88 @337 PROFNL_ADMIN_FLTM_CNT 8. 89 @345 PROFNL_ADMIN_PRTM_CNT 8. 90 @353 ADMSN_SUSPNSN_DT YYMMDD8. /*YYYYMMDD*/ 91 @361 ADMSN_SUSPNSN_PRIOR_DT YYMMDD8. /*YYYYMMDD*/ 92 @369 HHA_TRNG_PGM_CD $CHAR1. 93 @370 MR_BED_CNT 4. 94 @374 MDCR_SNF_BED_CNT 4. 95 @378 MDCD_SNF_BED_CNT 4. 96 @382 MDCR_MDCD_SNF_BED_CNT 4. 97 @386 CRTFD_BED_CNT 4. 98 @390 BED_CNT 4. 99 @394 BRNCH_OPRTN_SW $CHAR1. 100 @395 BRNCH_CNT 3. 101 @398 CLIA_ID_NUMBER_1 $CHAR10. 102 @408 CLIA_ID_NUMBER_2 $CHAR10. 103 @418 CLIA_ID_NUMBER_3 $CHAR10. 104 @428 CLIA_ID_NUMBER_4 $CHAR10. 105 @438 CLIA_ID_NUMBER_5 $CHAR10. 106 @448 NRS_AIDE_CNTRCT_CNT 8. 107 @456 NRS_AIDE_FLTM_CNT 8. 108 @464 NRS_AIDE_PRTM_CNT 8. 109 @472 CRNA_CNT 8. 110 @480 CHOW_SW $CHAR1. 111 @481 RN_24_HR_WVR_SW $CHAR1. 112 @482 RN_7_DAY_WVR_SW $CHAR1. 113 @483 BED_PER_ROOM_WVR_SW $CHAR1. 114 @484 LSC_WVR_SW $CHAR1. 115 @485 ROOM_SIZE_WVR_SW $CHAR1. 116 @486 SCOPE_OF_SRVC_WVR_SW $CHAR1. 117 @487 TCHNCL_PRSNEL_WVR_SW $CHAR1. 118 @488 CNSLR_EMPLEE_CNT 8. 119 @496 CNSLR_VLNTR_CNT 8. 120 @504 SRVY_EVER_ACRDTD_SW $CHAR1. 121 @505 SRVY_EVER_NACRDTD_SW $CHAR1. 122 @506 SRVY_EVER_SB_SW $CHAR1. 123 @507 ASC_BGN_SRVC_DT YYMMDD8. /*YYYYMMDD*/ 124 @515 VLDTN_SRVY_DT YYMMDD8. /*YYYYMMDD*/ 125 @523 DNTST_CNTRCT_CNT 8. 126 @531 DNTST_FLTM_CNT 8. 127 @539 DNTST_PRTM_CNT 8. 128 @547 DIETN_CNT 8. 129 @555 DIETN_CNTRCT_CNT 8. 130 @563 DIETN_FLTM_CNT 8. 131 @571 DIETN_PRTM_CNT 8. 132 @579 DRCT_CARE_PRSNEL_CNT 8. 133 @587 DRCTR_QUALN_CD $CHAR1. 134 @588 ESRD_NTWRK_NUM $CHAR2. 135 @590 EXPRMT_RSRCH_CNDCTD_SW $CHAR1. 136 @591 FQHC_APPROVED_RHC_PROVIDER_NUM $CHAR10. 137 @601 FAX_PHNE_NUM $CHAR10. 138 @611 FED_PGM_SPRT_SW $CHAR1. 139 @612 FED_FUNDD_FQHC_SW $CHAR1. 140 @613 FY_END_MO_DAY_CD $CHAR4. 141 @617 FOOD_SRVC_CNTRCT_CNT 8. 142 @625 FOOD_SRVC_FLTM_CNT 8. 4 The SAS System 17:48 Tuesday, January 8, 2013 143 @633 FOOD_SRVC_PRTM_CNT 8. 144 @641 FQHC_APRVD_RHC_SW $CHAR1. 145 @642 HHA_QLFYD_OPT_SPCH_SW $CHAR1. 146 @643 HH_AIDE_CNT 8. 147 @651 HH_AIDE_VLNTR_CNT 8. 148 @659 HMMKR_EMPLEE_CNT 8. 149 @667 HMMKR_VLNTR_CNT 8. 150 @675 MDCR_HOSPC_SW $CHAR1. 151 @676 HOSP_BSD_SW $CHAR1. 152 @677 HSEKPNG_CNTRCT_CNT 8. 153 @685 HSEKPNG_FLTM_CNT 8. 154 @693 HSEKPNG_PRTM_CNT 8. 155 @701 LTC_CROSS_REF_PROVIDER_NUMBER $CHAR10. 156 @711 LPN_LVN_CNT 8. 157 @719 LPN_LVN_CNTRCT_CNT 8. 158 @727 LPN_LVN_FLTM_CNT 8. 159 @735 LPN_LVN_PRTM_CNT 8. 160 @743 LPN_LVN_VLNTR_CNT 8. 161 @751 AGRMT_BGN_DT YYMMDD8. /*YYYYMMDD*/ 162 @759 AGRMT_END_DT YYMMDD8. /*YYYYMMDD*/ 163 @767 AGRMT_EXTNSN_DT YYMMDD8. /*YYYYMMDD*/ 164 @775 MEDICARE_HOSPICE_PROVIDER_NUM $CHAR10. 165 @785 MEDICARE_MEDICAID_PRVDR_NUMBER $CHAR6. 166 @791 MDCL_DRCTR_CNTRCT_CNT 8. 167 @799 MDCL_DRCTR_FLTM_CNT 8. 168 @807 MDCL_DRCTR_PRTM_CNT 8. 169 @815 MDCL_SCHL_AFLTN_CD $CHAR1. 170 @816 MDCL_SCL_WORKR_CNT 8. 171 @824 MDCL_SCL_WORKR_VLNTR_CNT 8. 172 @832 MDCL_TCHNLGST_CNT 8. 173 @840 MDCD_MDCR_PRTCPTG_PRVDR_SW $CHAR1. 174 @841 MDCTN_AIDE_CNTRCT_CNT 8. 175 @849 MDCTN_AIDE_FLTM_CNT 8. 176 @857 MDCTN_AIDE_PRTM_CNT 8. 177 @865 MEET_1861_SW $CHAR1. 178 @866 MENTL_HLTH_SRVC_CNTRCT_CNT 8. 179 @874 MENTL_HLTH_SRVC_FLTM_CNT 8. 180 @882 MENTL_HLTH_SRVC_PRTM_CNT 8. 181 @890 MLT_FAC_ORG_NAME $CHAR38. 182 @928 MLT_OWND_FAC_ORG_SW $CHAR1. 183 @929 NUCLR_MDCN_TCHNCN_CNT 8. 184 @937 SHIFT_4_TUE_PTNT_CNT 3. 185 @940 NAT_CNTRCT_CNT 8. 186 @948 NAT_FLTM_CNT 8. 187 @956 NAT_PRTM_CNT 8. 188 @964 NRS_PRCTNR_CNT 8. 189 @972 NRS_ADMINV_CNTRCT_CNT 8. 190 @980 NRS_ADMINV_FLTM_CNT 8. 191 @988 NRS_ADMINV_PRTM_CNT 8. 192 @996 OCPTNL_THRPST_CNTRCT_CNT 8. 193 @1004 OCPTNL_THRPST_FLTM_CNT 8. 194 @1012 OCPTNL_THRPST_PRTM_CNT 8. 195 @1020 OCPTNL_THRPST_CNT 8. 196 @1028 OT_AIDE_CNTRCT_CNT 8. 197 @1036 OT_AIDE_FLTM_CNT 8. 198 @1044 OT_AIDE_PRTM_CNT 8. 199 @1052 OT_ASTNT_AIDE_CNTRCT_CNT 8. 200 @1060 OT_ASTNT_AIDE_FLTM_CNT 8. 5 The SAS System 17:48 Tuesday, January 8, 2013 201 @1068 OT_ASTNT_AIDE_PRTM_CNT 8. 202 @1076 OPRTG_ROOM_CNT 2. 203 @1078 ORGNZ_FMLY_MBR_GRP_SW $CHAR1. 204 @1079 ORGNZ_RSDNT_GRP_SW $CHAR1. 205 @1080 ORTHTC_PRSTHTC_SRVC_CD $CHAR1. 206 @1081 STF_OTHR_CNTRCT_CNT 8. 207 @1089 STF_OTHR_FLTM_CNT 8. 208 @1097 STF_OTHR_PRTM_CNT 8. 209 @1105 PRSNEL_OTHR_CNT 8. 210 @1113 PHYSN_OTHR_CNTRCT_CNT 8. 211 @1121 PHYSN_OTHR_FLTM_CNT 8. 212 @1129 PHYSN_OTHR_PRTM_CNT 8. 213 @1137 SCL_SRVC_OTHR_STF_CNTRCT_CNT 8. 214 @1145 SCL_SRVC_OTHR_STF_FLTM_CNT 8. 215 @1153 SCL_SRVC_OTHR_STF_PRTM_CNT 8. 216 @1161 PARENT_PROVIDER_NUMBER $CHAR10. 217 @1171 MDCR_PRTCPTN_OP_PT_SPCH_SW $CHAR1. 218 @1172 PHRMCST_CNTRCT_CNT 8. 219 @1180 PHRMCST_FLTM_CNT 8. 220 @1188 PHRMCST_PRTM_CNT 8. 221 @1196 PHYS_THRPST_ARNGMT_CNT 8. 222 @1204 PHYS_THRPST_CNT 8. 223 @1212 PHYS_THRPST_CNTRCT_CNT 8. 224 @1220 PHYS_THRPST_FLTM_CNT 8. 225 @1228 PHYS_THRPST_PRTM_CNT 8. 226 @1236 PHYS_THRPST_STF_CNT 8. 227 @1244 PT_AIDE_CNTRCT_CNT 8. 228 @1252 PT_AIDE_FLTM_CNT 8. 229 @1260 PT_AIDE_PRTM_CNT 8. 230 @1268 PT_ASTNT_CNTRCT_CNT 8. 231 @1276 PT_ASTNT_FLTM_CNT 8. 232 @1284 PT_ASTNT_PRTM_CNT 8. 233 @1292 PHYSN_ASTNT_CNT 8. 234 @1300 PHYSN_EXT_CNTRCT_CNT 8. 235 @1308 PHYSN_EXT_FLTM_CNT 8. 236 @1316 PHYSN_EXT_PRTM_CNT 8. 237 @1324 PHYSN_EXT_SRVC_OFSITE_RSDNT_SW $CHAR1. 238 @1325 PHYSN_EXT_SRVC_ONST_NRSDNT_SW $CHAR1. 239 @1326 PHYSN_EXT_SRVC_ONST_RSDNT_SW $CHAR1. 240 @1327 PHYSN_CNT 8. 241 @1335 RSDNT_PHYSN_CNT 8. 242 @1343 PHYSN_VLNTR_CNT 8. 243 @1351 PDTRST_CNTRCT_CNT 8. 244 @1359 PDTRST_FLTM_CNT 8. 245 @1367 PDTRST_PRTM_CNT 8. 246 @1375 AGRMT_END_PRIOR_DT YYMMDD8. /*YYYYMMDD*/ 247 @1383 AGRMT_EXTNSN_PRIOR_DT YYMMDD8. /*YYYYMMDD*/ 248 @1391 RSCND_SUSPNSN_PRIOR_DT YYMMDD8. /*YYYYMMDD*/ 249 @1399 PGM_PRTCPTN_CD $CHAR1. 250 @1400 PRVDR_BSD_FAC_SW $CHAR1. 251 @1401 PSYCH_UNIT_BED_CNT 3. 252 @1404 PSYCH_UNIT_EFCTV_DT YYMMDD8. /*YYYYMMDD*/ 253 @1412 PSYCH_UNIT_SW $CHAR1. 254 @1413 PSYCH_UNIT_TRMNTN_CD $CHAR1. 255 @1414 PSYCH_UNIT_TRMNTN_DT YYMMDD8. /*YYYYMMDD*/ 256 @1422 PSYCHLGST_CNT 8. 257 @1430 RDLGY_TCHNCN_CNT 8. 258 @1438 OVRRD_BED_CNT_SW $CHAR1. 6 The SAS System 17:48 Tuesday, January 8, 2013 259 @1439 OVRRD_STFG_SW $CHAR1. 260 @1440 OVRRD_NRS_BED_SW $CHAR1. 261 @1441 RN_CNTRCT_CNT 8. 262 @1449 RN_FLTM_CNT 8. 263 @1457 RN_PRTM_CNT 8. 264 @1465 RN_CNT 8. 265 @1473 RN_VLNTR_CNT 8. 266 @1481 REG_PHRMCST_CNT 8. 267 @1489 REHAB_UNIT_BED_CNT 3. 268 @1492 REHAB_UNIT_EFCTV_DT YYMMDD8. /*YYYYMMDD*/ 269 @1500 REHAB_UNIT_SW $CHAR1. 270 @1501 REHAB_UNIT_TRMNTN_CD $CHAR1. 271 @1502 REHAB_UNIT_TRMNTN_DT YYMMDD8. /*YYYYMMDD*/ 272 @1510 RELATED_PROVIDER_NUMBER $CHAR10. 273 @1520 RSCND_SUSPNSN_DT YYMMDD8. /*YYYYMMDD*/ 274 @1528 RSDNT_PGM_ADA_APRVD_SW $CHAR1. 275 @1529 RSDNT_PGM_AMA_APRVD_SW $CHAR1. 276 @1530 RSDNT_PGM_AOA_APRVD_SW $CHAR1. 277 @1531 RSDNT_PGM_OTHR_APRVD_SW $CHAR1. 278 @1532 INHLTN_THRPST_CNT 8. 279 @1540 RN_DRCTR_CNTRCT_CNT 8. 280 @1548 RN_DRCTR_FLTM_CNT 8. 281 @1556 RN_DRCTR_PRTM_CNT 8. 282 @1564 ACTVTY_OFSITE_RSDNT_SW $CHAR1. 283 @1565 ACTVTY_ONST_NRSDNT_SW $CHAR1. 284 @1566 ACTVTY_ONST_RSDNT_SW $CHAR1. 285 @1567 APLNC_EQUIP_SRVC_CD $CHAR1. 286 @1568 BLOOD_SRVC_OFSITE_RSDNT_SW $CHAR1. 287 @1569 BLOOD_SRVC_ONST_NRSDNT_SW $CHAR1. 288 @1570 BLOOD_SRVC_ONST_RSDNT_SW $CHAR1. 289 @1571 CL_SRVC_OFSITE_RSDNT_SW $CHAR1. 290 @1572 CL_SRVC_ONST_NRSDNT_SW $CHAR1. 291 @1573 CL_SRVC_ONST_RSDNT_SW $CHAR1. 292 @1574 CNSLNG_SRVC_CD $CHAR1. 293 @1575 DNTL_SRVC_ONST_NRSDNT_SW $CHAR1. 294 @1576 DNTL_SRVC_OFSITE_RSDNT_SW $CHAR1. 295 @1577 DNTL_SRVC_ONST_RSDNT_SW $CHAR1. 296 @1578 DTRY_ONST_NRSDNT_SW $CHAR1. 297 @1579 DTRY_OFSITE_RSDNT_SW $CHAR1. 298 @1580 DTRY_ONST_RSDNT_SW $CHAR1. 299 @1581 EKG_SRVC_CD $CHAR1. 300 @1582 HH_AIDE_SRVC_CD $CHAR1. 301 @1583 HMMKR_SRVC_CD $CHAR1. 302 @1584 HSEKPNG_SRVC_ONST_NRSDNT_SW $CHAR1. 303 @1585 HSEKPNG_SRVC_OFSITE_RSDNT_SW $CHAR1. 304 @1586 HSEKPNG_SRVC_ONST_RSDNT_SW $CHAR1. 305 @1587 INTRN_RSDNT_SRVC_CD $CHAR1. 306 @1588 LAB_SRVC_CD $CHAR1. 307 @1589 MDCL_SCL_SRVC_CD $CHAR1. 308 @1590 MDCL_SUPLY_SRVC_CD $CHAR1. 309 @1591 MENTL_HLTH_OFSITE_RSDNT_SW $CHAR1. 310 @1592 MENTL_HLTH_ONST_RSDNT_SW $CHAR1. 311 @1593 MENTL_HLTH_ONST_NRSDNT_SW $CHAR1. 312 @1594 NRSNG_SRVC_CD $CHAR1. 313 @1595 NRSNG_SRVC_ONST_NRSDNT_SW $CHAR1. 314 @1596 NRSNG_2_SRVC_CD $CHAR1. 315 @1597 NRSNG_3_SRVC_CD $CHAR1. 316 @1598 NRSNG_SRVC_OFSITE_RSDNT_SW $CHAR1. 7 The SAS System 17:48 Tuesday, January 8, 2013 317 @1599 NRSNG_SRVC_ONST_RSDNT_SW $CHAR1. 318 @1600 NTRTNL_GDNC_SRVC_CD $CHAR1. 319 @1601 OT_SRVC_ONST_NRSDNT_SW $CHAR1. 320 @1602 OT_2_SRVC_CD $CHAR1. 321 @1603 OT_3_SRVC_CD $CHAR1. 322 @1604 OT_SRVC_OFSITE_RSDNT_SW $CHAR1. 323 @1605 OT_SRVC_ONST_RSDNT_SW $CHAR1. 324 @1606 ORTHTC_PRSTHTC_2_SRVC_CD $CHAR1. 325 @1607 ORTHTC_PRSTHTC_3_SRVC_CD $CHAR1. 326 @1608 OTHR_SRVC_CD $CHAR1. 327 @1609 ACTVTY_OTHR_OFSITE_RSDNT_SW $CHAR1. 328 @1610 ACTVTY_OTHR_ONST_NRSDNT_SW $CHAR1. 329 @1611 ACTVTY_OTHR_ONST_RSDNT_SW $CHAR1. 330 @1612 SCL_SRVC_OTHR_OFSITE_RSDNT_SW $CHAR1. 331 @1613 SCL_SRVC_OTHR_ONST_NRSDNT_SW $CHAR1. 332 @1614 SCL_SRVC_OTHR_ONST_RSDNT_SW $CHAR1. 333 @1615 PHRMCY_SRVC_OFSITE_RSDNT_SW $CHAR1. 334 @1616 PHRMCY_SRVC_ONST_NRSDNT_SW $CHAR1. 335 @1617 PHRMCY_SRVC_ONST_RSDNT_SW $CHAR1. 336 @1618 PT_2_SRVC_CD $CHAR1. 337 @1619 PT_3_SRVC_CD $CHAR1. 338 @1620 PT_OFSITE_RSDNT_SW $CHAR1. 339 @1621 PT_ONST_NRSDNT_SW $CHAR1. 340 @1622 PT_ONST_RSDNT_SW $CHAR1. 341 @1623 PHYSN_SRVC_CD $CHAR1. 342 @1624 PHYSN_2_SRVC_CD $CHAR1. 343 @1625 PHYSN_3_SRVC_CD $CHAR1. 344 @1626 PHYSN_SRVC_OFSITE_RSDNT_SW $CHAR1. 345 @1627 PHYSN_SRVC_ONST_NRSDNT_SW $CHAR1. 346 @1628 PHYSN_SRVC_ONST_RSDNT_SW $CHAR1. 347 @1629 PDTRY_SRVC_OFSITE_RSDNT_SW $CHAR1. 348 @1630 PDTRY_SRVC_ONST_NRSDNT_SW $CHAR1. 349 @1631 PDTRY_SRVC_ONST_RSDNT_SW $CHAR1. 350 @1632 PSYCHLGCL_SRVC_CD $CHAR1. 351 @1633 PSYCHLGCL_2_SRVC_CD $CHAR1. 352 @1634 PSYCHLGCL_3_SRVC_CD $CHAR1. 353 @1635 RDLGY_SRVC_CD $CHAR1. 354 @1636 RSPRTRY_CARE_2_SRVC_CD $CHAR1. 355 @1637 RSPRTRY_CARE_3_SRVC_CD $CHAR1. 356 @1638 SHRT_TERM_IP_SRVC_CD $CHAR1. 357 @1639 SCL_2_SRVC_CD $CHAR1. 358 @1640 SCL_3_SRVC_CD $CHAR1. 359 @1641 SCL_WORK_SRVC_OFSITE_RSDNT_SW $CHAR1. 360 @1642 SCL_WORK_SRVC_ONST_NRSDNT_SW $CHAR1. 361 @1643 SCL_WORK_SRVC_ONST_RSDNT_SW $CHAR1. 362 @1644 SPCH_PTHLGY_2_SRVC_CD $CHAR1. 363 @1645 SPCH_PTHLGY_3_SRVC_CD $CHAR1. 364 @1646 SPCH_PTHLGY_OFSITE_RSDNT_SW $CHAR1. 365 @1647 SPCH_PTHLGY_ONST_NRSDNT_SW $CHAR1. 366 @1648 SPCH_PTHLGY_ONST_RSDNT_SW $CHAR1. 367 @1649 SPCH_THRPY_SRVC_CD $CHAR1. 368 @1650 THRPTC_RCRTNL_OFSITE_RSDNT_SW $CHAR1. 369 @1651 THRPTC_RCRTNL_ONST_NRSDNT_SW $CHAR1. 370 @1652 THRPTC_RCRTNL_ONST_RSDNT_SW $CHAR1. 371 @1653 VCTNL_GDNC_SRVC_CD $CHAR1. 372 @1654 VCTNL_SRVC_OFSITE_RSDNT_SW $CHAR1. 373 @1655 VCTNL_SRVC_ONST_NRSDNT_SW $CHAR1. 374 @1656 VCTNL_SRVC_ONST_RSDNT_SW $CHAR1. 8 The SAS System 17:48 Tuesday, January 8, 2013 375 @1657 DGNSTC_XRAY_OFSITE_RSDNT_SW $CHAR1. 376 @1658 DGNSTC_XRAY_ONST_NRSDNT_SW $CHAR1. 377 @1659 DGNSTC_XRAY_ONST_RSDNT_SW $CHAR1. 378 @1660 OPEN_HRT_SRGRY_SRVC_CD $CHAR1. 379 @1661 PSTOPRTV_RCVRY_SRVC_CD $CHAR1. 380 @1662 ACUTE_RNL_DLYS_SRVC_CD $CHAR1. 381 @1663 ACUTE_RNL_DLYS_SRVC_DESC $CHAR39. 382 @1702 ALCHL_DRUG_SRVC_DESC $CHAR39. 383 @1741 ALCHL_DRUG_SRVC_CD $CHAR1. 384 @1742 ANSTHSA_SRVC_CD $CHAR1. 385 @1743 ANSTHSA_SRVC_DESC $CHAR39. 386 @1782 AUDLGY_SRVC_CD $CHAR1. 387 @1783 AUDLGY_SRVC_DESC $CHAR39. 388 @1822 BURN_CARE_UNIT_SRVC_CD $CHAR1. 389 @1823 BURN_CARE_UNIT_SRVC_DESC $CHAR39. 390 @1862 OPEN_HRT_SRGRY_SRVC_DESC $CHAR39. 391 @1901 CRDC_CTHTRZTN_LAB_SRVC_CD $CHAR1. 392 @1902 CRDC_CTHTRZTN_LAB_SRVC_DESC $CHAR39. 393 @1941 CARF_IP_REHAB_SRVC_CD $CHAR1. 394 @1942 CARF_IP_REHAB_SRVC_DESC $CHAR39. 395 @1981 CHMTHRPY_SRVC_CD $CHAR1. 396 @1982 CHMTHRPY_SRVC_DESC $CHAR39. 397 @2021 CHLD_ADLSCNT_PSYCH_SRVC_DESC $CHAR39. 398 @2060 CHRPRCTIC_SRVC_CD $CHAR1. 399 @2061 CHRPRCTIC_SRVC_DESC $CHAR39. 400 @2100 CL_SRVC_CD $CHAR1. 401 @2101 CL_SRVC_DESC $CHAR39. 402 @2140 CT_SCAN_SRVC_CD $CHAR1. 403 @2141 CT_SCAN_SRVC_DESC $CHAR39. 404 @2180 DNTL_SRVC_CD $CHAR1. 405 @2181 DNTL_SRVC_DESC $CHAR39. 406 @2220 DGNSTC_RDLGY_SRVC_DESC $CHAR39. 407 @2259 DTRY_SRVC_CD $CHAR1. 408 @2260 DTRY_SRVC_DESC $CHAR39. 409 @2299 DCTD_ER_SRVC_DESC $CHAR39. 410 @2338 DCTD_ER_SRVC_CD $CHAR1. 411 @2339 XTRCRPRL_SHCK_LTHTRPTR_SRVC_CD $CHAR1. 412 @2340 XTRCRPRL_SHCK_LTHTRPTR_SRVCDSC $CHAR39. 413 @2379 GRNTLGCL_SPCLTY_SRVC_CD $CHAR1. 414 @2380 GRNTLGCL_SPCLTY_SRVC_DESC $CHAR39. 415 @2419 CRNRY_CARE_UNIT_SRVC_CD $CHAR1. 416 @2420 CRNRY_CARE_UNIT_SRVC_DESC $CHAR39. 417 @2459 ICU_SRVC_CD $CHAR1. 418 @2460 ICU_SRVC_DESC $CHAR44. 419 @2504 NEONTL_ICU_SRVC_CD $CHAR1. 420 @2505 PED_ICU_SRVC_CD $CHAR1. 421 @2506 SRGCL_ICU_SRVC_CD $CHAR1. 422 @2507 IP_SRGCL_SRVC_CD $CHAR1. 423 @2508 IP_SRGCL_SRVC_DESC $CHAR39. 424 @2547 MGNTC_RSNC_IMG_SRVC_CD $CHAR1. 425 @2548 MGNTC_RSNC_IMG_SRVC_DESC $CHAR39. 426 @2587 NEONTL_ICU_SRVC_DESC $CHAR39. 427 @2626 NEONTL_NRSRY_SRVC_CD $CHAR1. 428 @2627 NEONTL_NRSRY_SRVC_DESC $CHAR39. 429 @2666 NRSRGCL_SRVC_DESC $CHAR39. 430 @2705 NRSRGCL_SRVC_CD $CHAR1. 431 @2706 NUCLR_MDCN_SRVC_CD $CHAR1. 432 @2707 NUCLR_MDCN_SRVC_DESC $CHAR39. 9 The SAS System 17:48 Tuesday, January 8, 2013 433 @2746 OB_SRVC_CD $CHAR1. 434 @2747 OB_SRVC_DESC $CHAR39. 435 @2786 OT_SRVC_CD $CHAR1. 436 @2787 OT_SRVC_DESC $CHAR39. 437 @2826 OPRTG_ROOM_SRVC_DESC $CHAR39. 438 @2865 OPRTG_ROOM_SRVC_CD $CHAR1. 439 @2866 OPTHLMC_SRGY_SRVC_CD $CHAR1. 440 @2867 OPTHLMC_SRGY_SRVC_DESC $CHAR39. 441 @2906 OPTMTRC_SRVC_CD $CHAR1. 442 @2907 OPTMTRC_SRVC_DESC $CHAR44. 443 @2951 ORGN_TRNSPLNT_SRVC_CD $CHAR1. 444 @2952 ORGN_TRNSPLNT_SRVC_DESC $CHAR39. 445 @2991 ORTHPDC_SRGY_SRVC_CD $CHAR1. 446 @2992 ORTHPDC_SRGY_SRVC_DESC $CHAR39. 447 @3031 OP_SRVC_CD $CHAR1. 448 @3032 OP_SRVC_DESC $CHAR39. 449 @3071 OP_SRGRY_UNIT_SRVC_CD $CHAR1. 450 @3072 OP_SRGRY_UNIT_SRVC_DESC $CHAR39. 451 @3111 PED_SRVC_CD $CHAR1. 452 @3112 PED_SRVC_DESC $CHAR39. 453 @3151 PED_ICU_SRVC_DESC $CHAR39. 454 @3190 PET_SCAN_SRVC_CD $CHAR1. 455 @3191 PET_SCAN_SRVC_DESC $CHAR39. 456 @3230 PHRMCY_SRVC_CD $CHAR1. 457 @3231 PHRMCY_SRVC_DESC $CHAR39. 458 @3270 PT_SRVC_CD $CHAR1. 459 @3271 PT_SRVC_DESC $CHAR39. 460 @3310 PSTOPRTV_RCVRY_SRVC_DESC $CHAR39. 461 @3349 PSYCH_SRVC_CD $CHAR1. 462 @3350 PSYCH_SRVC_DESC $CHAR39. 463 @3389 EMER_PSYCH_SRVC_CD $CHAR1. 464 @3390 FRNSC_PSYCH_SRVC_CD $CHAR1. 465 @3391 GRTRC_PSYCH_SRVC_CD $CHAR1. 466 @3392 OP_PSYCH_SRVC_CD $CHAR1. 467 @3393 CHLD_ADLSCNT_PSYCH_SRVC_CD $CHAR1. 468 @3394 EMER_PSYCH_SRVC_DESC $CHAR39. 469 @3433 FRNSC_PSYCH_SRVC_DESC $CHAR39. 470 @3472 GRTRC_PSYCH_SRVC_DESC $CHAR39. 471 @3511 OP_PSYCH_SRVC_DESC $CHAR39. 472 @3550 DGNSTC_RDLGY_SRVC_CD $CHAR1. 473 @3551 THRPTC_RDLGY_SRVC_CD $CHAR1. 474 @3552 THRPTC_RDLGY_SRVC_DESC $CHAR39. 475 @3591 RCNSTRCTN_SRGY_SRVC_DESC $CHAR39. 476 @3630 RCNSTRCTN_SRGY_SRVC_CD $CHAR1. 477 @3631 OP_REHAB_SRVC_CD $CHAR1. 478 @3632 OP_REHAB_SRVC_DESC $CHAR39. 479 @3671 RSPRTRY_CARE_SRVC_CD $CHAR1. 480 @3672 RSPRTRY_CARE_SRVC_DESC $CHAR44. 481 @3716 SCL_SRVC_CD $CHAR1. 482 @3717 SCL_SRVC_DESC $CHAR39. 483 @3756 SPCH_PTHLGY_SRVC_CD $CHAR1. 484 @3757 SPCH_PTHLGY_SRVC_DESC $CHAR39. 485 @3796 SRGCL_ICU_SRVC_DESC $CHAR39. 486 @3835 MDCR_TRNSPLNT_CNTR_SRVC_CD $CHAR1. 487 @3836 MDCR_TRNSPLNT_CNTR_SRVC_DESC $CHAR39. 488 @3875 SHCK_TRMA_SRVC_CD $CHAR1. 489 @3876 SHCK_TRMA_SRVC_DESC $CHAR39. 490 @3915 URGNT_CARE_SRVC_CD $CHAR1. 10 The SAS System 17:48 Tuesday, January 8, 2013 491 @3916 URGNT_CARE_SRVC_DESC $CHAR39. 492 @3955 SCL_WORKR_CNTRCT_CNT 8. 493 @3963 SCL_WORKR_FLTM_CNT 8. 494 @3971 SCL_WORKR_PRTM_CNT 8. 495 @3979 SCL_WORKR_CNT 8. 496 @3987 REHAB_BED_CNT 3. 497 @3990 AIDS_BED_CNT 3. 498 @3993 ALZHMR_BED_CNT 3. 499 @3996 DLYS_BED_CNT 3. 500 @3999 DSBL_CHLDRN_BED_CNT 3. 501 @4002 HEAD_TRMA_BED_CNT 3. 502 @4005 HOSPC_BED_CNT 3. 503 @4008 HNTGTN_DEASE_BED_CNT 3. 504 @4011 VNTLTR_BED_CNT 3. 505 @4014 THORC_SRGRY_SW $CHAR1. 506 @4015 URLGY_SRGRY_SW $CHAR1. 507 @4016 CRDVSCLR_SRGRY_SW $CHAR1. 508 @4017 FT_SRGRY_SW $CHAR1. 509 @4018 NRLGCL_SRGRY_SW $CHAR1. 510 @4019 OB_GYN_SRGRY_SW $CHAR1. 511 @4020 OPTHMLGY_SRGRY_SW $CHAR1. 512 @4021 ORAL_SRGRY_SW $CHAR1. 513 @4022 ORTHPDC_SRGRY_SW $CHAR1. 514 @4023 OTLRYNGLGY_SRGRY_SW $CHAR1. 515 @4024 PLSTC_SRGRY_SW $CHAR1. 516 @4025 GNRL_SRGRY_SW $CHAR1. 517 @4026 SPCH_PTHLGST_CNTRCT_CNT 8. 518 @4034 SPCH_PTHLGST_FLTM_CNT 8. 519 @4042 SPCH_PTHLGST_PRTM_CNT 8. 520 @4050 SPCH_PTHLGST_AUDLGST_CNT 8. 521 @4058 SPCH_PTHLGST_ARNGMT_CNT 8. 522 @4066 SPCH_PTHLGST_CNT 8. 523 @4074 HMDLYS_STN_ESRD_CNT 3. 524 @4077 DLYS_STN_CNT 3. 525 @4080 SBUNIT_OPRTN_SW $CHAR1. 526 @4081 SBUNIT_SW $CHAR1. 527 @4082 SBUNIT_CNT 3. 528 @4085 SRTY_BOND_CD $CHAR1. 529 @4086 SB_SIZE_CD $CHAR1. 530 @4087 SB_SW $CHAR1. 531 @4088 TCHNLGST_2_YR_RDLGC_CNT 8. 532 @4096 TCHNLGST_ASCT_DGR_CNT 8. 533 @4104 TCHNLGST_BS_BA_DGR_CNT 8. 534 @4112 THRPTC_RCRTNL_CNTRCT_CNT 8. 535 @4120 THRPTC_RCRTNL_FLTM_CNT 8. 536 @4128 THRPTC_RCRTNL_PRTM_CNT 8. 537 @4136 FED_PGM_NAME $CHAR26. 538 @4162 EMPLEE_CNT 9. 539 @4171 GNRL_FAC_TYPE_CD $CHAR2. 540 @4173 NPP_TYPE_CD $CHAR1. 541 @4174 VLNTR_OTHR_CNT 8. 542 @4182 VLNTR_CNT 9. 543 ; 544 545 546 attrib prvdr_ctgry_sbtyp_cd length=$2; 547 attrib prvdr_ctgry_cd length=$2; 548 attrib chow_cnt length=3; 11 The SAS System 17:48 Tuesday, January 8, 2013 549 attrib chow_dt length=5; 550 attrib city_name length=$28; 551 attrib acptbl_poc_sw length=$1; 552 attrib cmplnc_stus_cd length=$1; 553 attrib ssa_cnty_cd length=$3; 554 attrib cross_rfrnc_prvdr_num length=$10; 555 attrib crtfctn_dt length=5; 556 attrib elgblty_sw length=$1; 557 attrib fac_name length=$50; 558 attrib intrmdry_carr_cd length=$5; 559 attrib mdcd_vndr_num length=$15; 560 attrib orgnl_prtcptn_dt length=5; 561 attrib chow_prior_dt length=5; 562 attrib intrmdry_carr_prior_cd length=$5; 563 attrib prvdr_num length=$10; 564 attrib rec_stus_cd length=$1; 565 attrib rgn_cd length=$2; 566 attrib skltn_rec_sw length=$1; 567 attrib state_cd length=$2; 568 attrib ssa_state_cd length=$2; 569 attrib state_rgn_cd length=$3; 570 attrib st_adr length=$50; 571 attrib phne_num length=$10; 572 attrib pgm_trmntn_cd length=$2; 573 attrib trmntn_exprtn_dt length=5; 574 attrib srvy_prpse_cd length=$1; 575 attrib gnrl_cntl_type_cd length=$2; 576 attrib zip_cd length=$5; 577 attrib fips_state_cd length=$2; 578 attrib fips_cnty_cd length=$3; 579 attrib cbsa_urbn_rrl_ind length=$1; 580 attrib acrdtn_efctv_dt length=5; 581 attrib acrdtn_exprtn_dt length=5; 582 attrib acrdtn_type_cd length=$1; 583 attrib crtfd_bed_cnt length=4; 584 attrib bed_cnt length=4; 585 attrib crna_cnt length=5; 586 attrib rn_24_hr_wvr_sw length=$1; 587 attrib lsc_wvr_sw length=$1; 588 attrib scope_of_srvc_wvr_sw length=$1; 589 attrib tchncl_prsnel_wvr_sw length=$1; 590 attrib srvy_ever_acrdtd_sw length=$1; 591 attrib srvy_ever_nacrdtd_sw length=$1; 592 attrib srvy_ever_sb_sw length=$1; 593 attrib vldtn_srvy_dt length=5; 594 attrib dietn_cnt length=5; 595 attrib fax_phne_num length=$10; 596 attrib fy_end_mo_day_cd length=$4; 597 attrib lpn_lvn_cnt length=5; 598 attrib mdcl_schl_afltn_cd length=$1; 599 attrib mdcl_scl_workr_cnt length=5; 600 attrib mdcl_tchnlgst_cnt length=5; 601 attrib mdcd_mdcr_prtcptg_prvdr_sw length=$1; 602 attrib meet_1861_sw length=$1; 603 attrib nuclr_mdcn_tchncn_cnt length=5; 604 attrib nrs_prctnr_cnt length=5; 605 attrib ocptnl_thrpst_cnt length=5; 606 attrib prsnel_othr_cnt length=5; 12 The SAS System 17:48 Tuesday, January 8, 2013 607 attrib phys_thrpst_cnt length=5; 608 attrib physn_astnt_cnt length=5; 609 attrib physn_cnt length=5; 610 attrib rsdnt_physn_cnt length=5; 611 attrib pgm_prtcptn_cd length=$1; 612 attrib psych_unit_bed_cnt length=3; 613 attrib psych_unit_efctv_dt length=5; 614 attrib psych_unit_sw length=$1; 615 attrib psych_unit_trmntn_cd length=$1; 616 attrib psych_unit_trmntn_dt length=5; 617 attrib psychlgst_cnt length=5; 618 attrib rdlgy_tchncn_cnt length=5; 619 attrib ovrrd_bed_cnt_sw length=$1; 620 attrib ovrrd_stfg_sw length=$1; 621 attrib ovrrd_nrs_bed_sw length=$1; 622 attrib rn_cnt length=5; 623 attrib reg_phrmcst_cnt length=5; 624 attrib rehab_unit_bed_cnt length=3; 625 attrib rehab_unit_efctv_dt length=5; 626 attrib rehab_unit_sw length=$1; 627 attrib rehab_unit_trmntn_cd length=$1; 628 attrib rehab_unit_trmntn_dt length=5; 629 attrib rltd_prvdr_num length=$10; 630 attrib rsdnt_pgm_ada_aprvd_sw length=$1; 631 attrib rsdnt_pgm_ama_aprvd_sw length=$1; 632 attrib rsdnt_pgm_aoa_aprvd_sw length=$1; 633 attrib rsdnt_pgm_othr_aprvd_sw length=$1; 634 attrib inhltn_thrpst_cnt length=5; 635 attrib open_hrt_srgry_srvc_cd length=$1; 636 attrib pstoprtv_rcvry_srvc_cd length=$1; 637 attrib acute_rnl_dlys_srvc_cd length=$1; 638 attrib acute_rnl_dlys_srvc_desc length=$3; 639 attrib alchl_drug_srvc_desc length=$39; 640 attrib alchl_drug_srvc_cd length=$1; 641 attrib ansthsa_srvc_cd length=$1; 642 attrib ansthsa_srvc_desc length=$39; 643 attrib audlgy_srvc_cd length=$1; 644 attrib audlgy_srvc_desc length=$39; 645 attrib burn_care_unit_srvc_cd length=$1; 646 attrib burn_care_unit_srvc_desc length=$39; 647 attrib open_hrt_srgry_srvc_desc length=$39; 648 attrib crdc_cthtrztn_lab_srvc_cd length=$1; 649 attrib crdc_cthtrztn_lab_srvc_desc length=$39; 650 attrib carf_ip_rehab_srvc_cd length=$39; 651 attrib carf_ip_rehab_srvc_desc length=$39; 652 attrib chmthrpy_srvc_cd length=$1; 653 attrib chmthrpy_srvc_desc length=$39; 654 attrib chld_adlscnt_psych_srvc_desc length=$39; 655 attrib chrprctic_srvc_cd length=$1; 656 attrib chrprctic_srvc_desc length=$39; 657 attrib cl_srvc_cd length=$1; 658 attrib cl_srvc_desc length=$39; 659 attrib ct_scan_srvc_cd length=$1; 660 attrib ct_scan_srvc_desc length=$39; 661 attrib dntl_srvc_cd length=$1; 662 attrib dntl_srvc_desc length=$39; 663 attrib dgnstc_rdlgy_srvc_desc length=$3; 664 attrib dtry_srvc_cd length=$1; 13 The SAS System 17:48 Tuesday, January 8, 2013 665 attrib dtry_srvc_desc length=$39; 666 attrib dctd_er_srvc_desc length=$39; 667 attrib dctd_er_srvc_cd length=$1; 668 attrib xtrcrprl_shck_lthtrptr_srvc_cd length=$1; 669 attrib xtrcrprl_shck_lthtrptr_srvcdsc length=$39; 670 attrib grntlgcl_spclty_srvc_cd length=$1; 671 attrib grntlgcl_spclty_srvc_desc length=$39; 672 attrib crnry_care_unit_srvc_cd length=$1; 673 attrib crnry_care_unit_srvc_desc length=$39; 674 attrib icu_srvc_cd length=$1; 675 attrib icu_srvc_desc length=$4; 676 attrib neontl_icu_srvc_cd length=$1; 677 attrib ped_icu_srvc_cd length=$1; 678 attrib srgcl_icu_srvc_cd length=$1; 679 attrib ip_srgcl_srvc_cd length=$1; 680 attrib ip_srgcl_srvc_desc length=$39; 681 attrib mgntc_rsnc_img_srvc_cd length=$1; 682 attrib mgntc_rsnc_img_srvc_desc length=$39; 683 attrib neontl_icu_srvc_desc length=$39; 684 attrib neontl_nrsry_srvc_cd length=$1; 685 attrib neontl_nrsry_srvc_desc length=$39; 686 attrib nrsrgcl_srvc_desc length=$39; 687 attrib nrsrgcl_srvc_cd length=$1; 688 attrib nuclr_mdcn_srvc_cd length=$1; 689 attrib nuclr_mdcn_srvc_desc length=$39; 690 attrib ob_srvc_cd length=$1; 691 attrib ob_srvc_desc length=$39; 692 attrib ot_srvc_cd length=$1; 693 attrib ot_srvc_desc length=$3; 694 attrib oprtg_room_srvc_desc length=$39; 695 attrib oprtg_room_srvc_cd length=$1; 696 attrib opthlmc_srgy_srvc_cd length=$1; 697 attrib opthlmc_srgy_srvc_desc length=$39; 698 attrib optmtrc_srvc_cd length=$1; 699 attrib optmtrc_srvc_desc length=$44; 700 attrib orgn_trnsplnt_srvc_cd length=$1; 701 attrib orgn_trnsplnt_srvc_desc length=$39; 702 attrib orthpdc_srgy_srvc_cd length=$1; 703 attrib orthpdc_srgy_srvc_desc length=$39; 704 attrib op_srvc_cd length=$1; 705 attrib op_srvc_desc length=$39; 706 attrib op_srgry_unit_srvc_cd length=$1; 707 attrib op_srgry_unit_srvc_desc length=$39; 708 attrib ped_srvc_cd length=$1; 709 attrib ped_srvc_desc length=$39; 710 attrib ped_icu_srvc_desc length=$39; 711 attrib pet_scan_srvc_cd length=$1; 712 attrib pet_scan_srvc_desc length=$39; 713 attrib phrmcy_srvc_cd length=$1; 714 attrib phrmcy_srvc_desc length=$39; 715 attrib pt_srvc_cd length=$1; 716 attrib pt_srvc_desc length=$39; 717 attrib pstoprtv_rcvry_srvc_desc length=$39; 718 attrib psych_srvc_cd length=$1; 719 attrib psych_srvc_desc length=$39; 720 attrib emer_psych_srvc_cd length=$1; 721 attrib frnsc_psych_srvc_cd length=$1; 722 attrib grtrc_psych_srvc_cd length=$1; 14 The SAS System 17:48 Tuesday, January 8, 2013 723 attrib op_psych_srvc_cd length=$1; 724 attrib chld_adlscnt_psych_srvc_cd length=$1; 725 attrib emer_psych_srvc_desc length=$1; 726 attrib frnsc_psych_srvc_desc length=$3; 727 attrib grtrc_psych_srvc_desc length=$3; 728 attrib op_psych_srvc_desc length=$3; 729 attrib dgnstc_rdlgy_srvc_cd length=$1; 730 attrib thrptc_rdlgy_srvc_cd length=$1; 731 attrib thrptc_rdlgy_srvc_desc length=$1; 732 attrib rcnstrctn_srgy_srvc_desc length=$1; 733 attrib rcnstrctn_srgy_srvc_cd length=$1; 734 attrib op_rehab_srvc_cd length=$1; 735 attrib op_rehab_srvc_desc length=$39; 736 attrib rsprtry_care_srvc_cd length=$1; 737 attrib rsprtry_care_srvc_desc length=$44; 738 attrib scl_srvc_cd length=$1; 739 attrib scl_srvc_desc length=$39; 740 attrib spch_pthlgy_srvc_cd length=$1; 741 attrib spch_pthlgy_srvc_desc length=$39; 742 attrib srgcl_icu_srvc_desc length=$39; 743 attrib mdcr_trnsplnt_cntr_srvc_cd length=$1; 744 attrib mdcr_trnsplnt_cntr_srvc_desc length=$39; 745 attrib shck_trma_srvc_cd length=$1; 746 attrib shck_trma_srvc_desc length=$39; 747 attrib urgnt_care_srvc_cd length=$1; 748 attrib urgnt_care_srvc_desc length=$39; 749 attrib spch_pthlgst_audlgst_cnt length=5; 750 attrib sb_size_cd length=$1; 751 attrib sb_sw length=$1; 752 attrib gnrl_fac_type_cd length=$2; 753 attrib npp_type_cd length=$1; 754 attrib prvdr_ctgry_sbtyp_cd length=$2; 755 attrib prvdr_ctgry_cd length=$2; 756 attrib chow_cnt length=3; 757 attrib chow_dt length=5; 758 attrib city_name length=$28; 759 attrib acptbl_poc_sw length=$1; 760 attrib cmplnc_stus_cd length=$1; 761 attrib ssa_cnty_cd length=$3; 762 attrib cross_rfrnc_prvdr_num length=$10; 763 attrib crtfctn_dt length=5; 764 attrib elgblty_sw length=$1; 765 attrib fac_name length=$50; 766 attrib intrmdry_carr_cd length=$5; 767 attrib mdcd_vndr_num length=$15; 768 attrib orgnl_prtcptn_dt length=5; 769 attrib chow_prior_dt length=5; 770 attrib intrmdry_carr_prior_cd length=$5; 771 attrib prvdr_num length=$10; 772 attrib rec_stus_cd length=$1; 773 attrib rgn_cd length=$2; 774 attrib skltn_rec_sw length=$1; 775 attrib state_cd length=$2; 776 attrib ssa_state_cd length=$2; 777 attrib state_rgn_cd length=$3; 778 attrib st_adr length=$50; 779 attrib phne_num length=$10; 780 attrib pgm_trmntn_cd length=$2; 15 The SAS System 17:48 Tuesday, January 8, 2013 781 attrib trmntn_exprtn_dt length=5; 782 attrib srvy_prpse_cd length=$1; 783 attrib gnrl_cntl_type_cd length=$2; 784 attrib zip_cd length=$5; 785 attrib fips_state_cd length=$2; 786 attrib fips_cnty_cd length=$3; 787 attrib cbsa_urbn_rrl_ind length=$1; 788 attrib actvty_profnl_cntrct_cnt length=5; 789 attrib actvty_profnl_fltm_cnt length=5; 790 attrib actvty_profnl_prtm_cnt length=5; 791 attrib actvty_stf_othr_cntrct_cnt length=5; 792 attrib actvty_stf_othr_fltm_cnt length=5; 793 attrib actvty_stf_othr_prtm_cnt length=5; 794 attrib profnl_admin_cntrct_cnt length=5; 795 attrib profnl_admin_fltm_cnt length=5; 796 attrib profnl_admin_prtm_cnt length=5; 797 attrib mdcr_snf_bed_cnt length=4; 798 attrib mdcd_snf_bed_cnt length=4; 799 attrib mdcr_mdcd_snf_bed_cnt length=4; 800 attrib crtfd_bed_cnt length=4; 801 attrib bed_cnt length=4; 802 attrib nrs_aide_cntrct_cnt length=5; 803 attrib nrs_aide_fltm_cnt length=5; 804 attrib nrs_aide_prtm_cnt length=5; 805 attrib rn_24_hr_wvr_sw length=$1; 806 attrib rn_7_day_wvr_sw length=$1; 807 attrib bed_per_room_wvr_sw length=$1; 808 attrib lsc_wvr_sw length=$1; 809 attrib room_size_wvr_sw length=$1; 810 attrib dntst_cntrct_cnt length=5; 811 attrib dntst_fltm_cnt length=5; 812 attrib dntst_prtm_cnt length=5; 813 attrib dietn_cntrct_cnt length=5; 814 attrib dietn_fltm_cnt length=5; 815 attrib dietn_prtm_cnt length=5; 816 attrib exprmt_rsrch_cndctd_sw length=$1; 817 attrib fy_end_mo_day_cd length=$4; 818 attrib food_srvc_cntrct_cnt length=5; 819 attrib food_srvc_fltm_cnt length=5; 820 attrib food_srvc_prtm_cnt length=5; 821 attrib hsekpng_cntrct_cnt length=5; 822 attrib hsekpng_fltm_cnt length=5; 823 attrib hsekpng_prtm_cnt length=5; 824 attrib lpn_lvn_cntrct_cnt length=5; 825 attrib lpn_lvn_fltm_cnt length=5; 826 attrib lpn_lvn_prtm_cnt length=5; 827 attrib mdcl_drctr_cntrct_cnt length=5; 828 attrib mdcl_drctr_fltm_cnt length=5; 829 attrib mdcl_drctr_prtm_cnt length=5; 830 attrib mdctn_aide_cntrct_cnt length=5; 831 attrib mdctn_aide_fltm_cnt length=5; 832 attrib mdctn_aide_prtm_cnt length=5; 833 attrib mentl_hlth_srvc_cntrct_cnt length=5; 834 attrib mentl_hlth_srvc_fltm_cnt length=5; 835 attrib mentl_hlth_srvc_prtm_cnt length=5; 836 attrib mlt_fac_org_name length=$38; 837 attrib mlt_ownd_fac_org_sw length=$1; 838 attrib nat_cntrct_cnt length=5; 16 The SAS System 17:48 Tuesday, January 8, 2013 839 attrib nat_fltm_cnt length=5; 840 attrib nat_prtm_cnt length=5; 841 attrib nrs_adminv_cntrct_cnt length=5; 842 attrib nrs_adminv_fltm_cnt length=5; 843 attrib nrs_adminv_prtm_cnt length=5; 844 attrib ocptnl_thrpst_cntrct_cnt length=5; 845 attrib ocptnl_thrpst_fltm_cnt length=5; 846 attrib ocptnl_thrpst_prtm_cnt length=5; 847 attrib ot_aide_cntrct_cnt length=5; 848 attrib ot_aide_fltm_cnt length=5; 849 attrib ot_aide_prtm_cnt length=5; 850 attrib ot_astnt_aide_cntrct_cnt length=5; 851 attrib ot_astnt_aide_fltm_cnt length=5; 852 attrib ot_astnt_aide_prtm_cnt length=5; 853 attrib orgnz_fmly_mbr_grp_sw length=$1; 854 attrib orgnz_rsdnt_grp_sw length=$1; 855 attrib stf_othr_cntrct_cnt length=5; 856 attrib stf_othr_fltm_cnt length=5; 857 attrib stf_othr_prtm_cnt length=5; 858 attrib physn_othr_cntrct_cnt length=5; 859 attrib physn_othr_fltm_cnt length=5; 860 attrib physn_othr_prtm_cnt length=5; 861 attrib scl_srvc_othr_stf_cntrct_cnt length=5; 862 attrib scl_srvc_othr_stf_fltm_cnt length=5; 863 attrib scl_srvc_othr_stf_prtm_cnt length=5; 864 attrib phrmcst_cntrct_cnt length=5; 865 attrib phrmcst_fltm_cnt length=5; 866 attrib phrmcst_prtm_cnt length=5; 867 attrib phys_thrpst_cntrct_cnt length=5; 868 attrib phys_thrpst_fltm_cnt length=5; 869 attrib phys_thrpst_prtm_cnt length=5; 870 attrib pt_aide_cntrct_cnt length=5; 871 attrib pt_aide_fltm_cnt length=5; 872 attrib pt_aide_prtm_cnt length=5; 873 attrib pt_astnt_cntrct_cnt length=5; 874 attrib pt_astnt_fltm_cnt length=5; 875 attrib pt_astnt_prtm_cnt length=5; 876 attrib physn_ext_cntrct_cnt length=5; 877 attrib physn_ext_fltm_cnt length=5; 878 attrib physn_ext_prtm_cnt length=5; 879 attrib physn_ext_srvc_ofsite_rsdnt_sw length=$1; 880 attrib physn_ext_srvc_onst_nrsdnt_sw length=$1; 881 attrib physn_ext_srvc_onst_rsdnt_sw length=$1; 882 attrib pdtrst_cntrct_cnt length=5; 883 attrib pdtrst_fltm_cnt length=5; 884 attrib pdtrst_prtm_cnt length=5; 885 attrib pgm_prtcptn_cd length=$1; 886 attrib prvdr_bsd_fac_sw length=$1; 887 attrib rn_cntrct_cnt length=5; 888 attrib rn_fltm_cnt length=5; 889 attrib rn_prtm_cnt length=5; 890 attrib rltd_prvdr_num length=$10; 891 attrib rscnd_suspnsn_dt length=5; 892 attrib rn_drctr_cntrct_cnt length=5; 893 attrib rn_drctr_fltm_cnt length=5; 894 attrib rn_drctr_prtm_cnt length=5; 895 attrib actvty_ofsite_rsdnt_sw length=$1; 896 attrib actvty_onst_nrsdnt_sw length=$1; 17 The SAS System 17:48 Tuesday, January 8, 2013 897 attrib actvty_onst_rsdnt_sw length=$1; 898 attrib blood_srvc_ofsite_rsdnt_sw length=$1; 899 attrib blood_srvc_onst_nrsdnt_sw length=$1; 900 attrib blood_srvc_onst_rsdnt_sw length=$1; 901 attrib cl_srvc_ofsite_rsdnt_sw length=$1; 902 attrib cl_srvc_onst_nrsdnt_sw length=$1; 903 attrib cl_srvc_onst_rsdnt_sw length=$1; 904 attrib dntl_srvc_onst_nrsdnt_sw length=$1; 905 attrib dntl_srvc_ofsite_rsdnt_sw length=$1; 906 attrib dntl_srvc_onst_rsdnt_sw length=$1; 907 attrib dtry_onst_nrsdnt_sw length=$1; 908 attrib dtry_ofsite_rsdnt_sw length=$1; 909 attrib dtry_onst_rsdnt_sw length=$1; 910 attrib hsekpng_srvc_onst_nrsdnt_sw length=$1; 911 attrib hsekpng_srvc_ofsite_rsdnt_sw length=$1; 912 attrib hsekpng_srvc_onst_rsdnt_sw length=$1; 913 attrib mentl_hlth_ofsite_rsdnt_sw length=$1; 914 attrib mentl_hlth_onst_rsdnt_sw length=$1; 915 attrib mentl_hlth_onst_nrsdnt_sw length=$1; 916 attrib nrsng_srvc_onst_nrsdnt_sw length=$1; 917 attrib nrsng_srvc_ofsite_rsdnt_sw length=$1; 918 attrib nrsng_srvc_onst_rsdnt_sw length=$1; 919 attrib ot_srvc_onst_nrsdnt_sw length=$1; 920 attrib ot_srvc_ofsite_rsdnt_sw length=$1; 921 attrib ot_srvc_onst_rsdnt_sw length=$1; 922 attrib actvty_othr_ofsite_rsdnt_sw length=$1; 923 attrib actvty_othr_onst_nrsdnt_sw length=$1; 924 attrib actvty_othr_onst_rsdnt_sw length=$1; 925 attrib scl_srvc_othr_ofsite_rsdnt_sw length=$1; 926 attrib scl_srvc_othr_onst_nrsdnt_sw length=$1; 927 attrib scl_srvc_othr_onst_rsdnt_sw length=$1; 928 attrib phrmcy_srvc_ofsite_rsdnt_sw length=$1; 929 attrib phrmcy_srvc_onst_nrsdnt_sw length=$1; 930 attrib phrmcy_srvc_onst_rsdnt_sw length=$1; 931 attrib pt_ofsite_rsdnt_sw length=$1; 932 attrib pt_onst_nrsdnt_sw length=$1; 933 attrib pt_onst_rsdnt_sw length=$1; 934 attrib physn_srvc_ofsite_rsdnt_sw length=$1; 935 attrib physn_srvc_onst_nrsdnt_sw length=$1; 936 attrib physn_srvc_onst_rsdnt_sw length=$1; 937 attrib pdtry_srvc_ofsite_rsdnt_sw length=$1; 938 attrib pdtry_srvc_onst_nrsdnt_sw length=$1; 939 attrib pdtry_srvc_onst_rsdnt_sw length=$1; 940 attrib scl_work_srvc_ofsite_rsdnt_sw length=$1; 941 attrib scl_work_srvc_onst_nrsdnt_sw length=$1; 942 attrib scl_work_srvc_onst_rsdnt_sw length=$1; 943 attrib spch_pthlgy_ofsite_rsdnt_sw length=$1; 944 attrib spch_pthlgy_onst_nrsdnt_sw length=$1; 945 attrib spch_pthlgy_onst_rsdnt_sw length=$1; 946 attrib thrptc_rcrtnl_ofsite_rsdnt_sw length=$1; 947 attrib thrptc_rcrtnl_onst_nrsdnt_sw length=$1; 948 attrib thrptc_rcrtnl_onst_rsdnt_sw length=$1; 949 attrib vctnl_srvc_ofsite_rsdnt_sw length=$1; 950 attrib vctnl_srvc_onst_nrsdnt_sw length=$1; 951 attrib vctnl_srvc_onst_rsdnt_sw length=$1; 952 attrib dgnstc_xray_ofsite_rsdnt_sw length=$1; 953 attrib dgnstc_xray_onst_nrsdnt_sw length=$1; 954 attrib dgnstc_xray_onst_rsdnt_sw length=$1; 18 The SAS System 17:48 Tuesday, January 8, 2013 955 attrib scl_workr_cntrct_cnt length=5; 956 attrib scl_workr_fltm_cnt length=5; 957 attrib scl_workr_prtm_cnt length=5; 958 attrib rehab_bed_cnt length=3; 959 attrib aids_bed_cnt length=3; 960 attrib alzhmr_bed_cnt length=3; 961 attrib dlys_bed_cnt length=3; 962 attrib dsbl_chldrn_bed_cnt length=3; 963 attrib head_trma_bed_cnt length=3; 964 attrib hospc_bed_cnt length=3; 965 attrib hntgtn_dease_bed_cnt length=3; 966 attrib vntltr_bed_cnt length=3; 967 attrib spch_pthlgst_cntrct_cnt length=5; 968 attrib spch_pthlgst_fltm_cnt length=5; 969 attrib spch_pthlgst_prtm_cnt length=5; 970 attrib thrptc_rcrtnl_cntrct_cnt length=5; 971 attrib thrptc_rcrtnl_fltm_cnt length=5; 972 attrib thrptc_rcrtnl_prtm_cnt length=5; 973 attrib prvdr_ctgry_sbtyp_cd length=$2; 974 attrib prvdr_ctgry_cd length=$2; 975 attrib chow_cnt length=3; 976 attrib chow_dt length=5; 977 attrib city_name length=$28; 978 attrib acptbl_poc_sw length=$1; 979 attrib cmplnc_stus_cd length=$1; 980 attrib ssa_cnty_cd length=$3; 981 attrib cross_rfrnc_prvdr_num length=$10; 982 attrib crtfctn_dt length=5; 983 attrib elgblty_sw length=$1; 984 attrib fac_name length=$50; 985 attrib intrmdry_carr_cd length=$5; 986 attrib mdcd_vndr_num length=$15; 987 attrib orgnl_prtcptn_dt length=5; 988 attrib chow_prior_dt length=5; 989 attrib intrmdry_carr_prior_cd length=$5; 990 attrib prvdr_num length=$10; 991 attrib rec_stus_cd length=$1; 992 attrib rgn_cd length=$2; 993 attrib skltn_rec_sw length=$1; 994 attrib state_cd length=$2; 995 attrib ssa_state_cd length=$2; 996 attrib state_rgn_cd length=$3; 997 attrib st_adr length=$50; 998 attrib phne_num length=$10; 999 attrib pgm_trmntn_cd length=$2; 1000 attrib trmntn_exprtn_dt length=5; 1001 attrib srvy_prpse_cd length=$1; 1002 attrib gnrl_cntl_type_cd length=$2; 1003 attrib zip_cd length=$5; 1004 attrib fips_state_cd length=$2; 1005 attrib fips_cnty_cd length=$3; 1006 attrib cbsa_urbn_rrl_ind length=$1; 1007 attrib actvty_profnl_cntrct_cnt length=5; 1008 attrib actvty_profnl_fltm_cnt length=5; 1009 attrib actvty_profnl_prtm_cnt length=5; 1010 attrib actvty_stf_othr_cntrct_cnt length=5; 1011 attrib actvty_stf_othr_fltm_cnt length=5; 1012 attrib actvty_stf_othr_prtm_cnt length=5; 19 The SAS System 17:48 Tuesday, January 8, 2013 1013 attrib profnl_admin_cntrct_cnt length=5; 1014 attrib profnl_admin_fltm_cnt length=5; 1015 attrib profnl_admin_prtm_cnt length=5; 1016 attrib mdcr_snf_bed_cnt length=4; 1017 attrib mdcd_snf_bed_cnt length=4; 1018 attrib mdcr_mdcd_snf_bed_cnt length=4; 1019 attrib crtfd_bed_cnt length=4; 1020 attrib bed_cnt length=4; 1021 attrib nrs_aide_cntrct_cnt length=5; 1022 attrib nrs_aide_fltm_cnt length=5; 1023 attrib nrs_aide_prtm_cnt length=5; 1024 attrib rn_24_hr_wvr_sw length=$1; 1025 attrib rn_7_day_wvr_sw length=$1; 1026 attrib bed_per_room_wvr_sw length=$1; 1027 attrib lsc_wvr_sw length=$1; 1028 attrib room_size_wvr_sw length=$1; 1029 attrib dntst_cntrct_cnt length=5; 1030 attrib dntst_fltm_cnt length=5; 1031 attrib dntst_prtm_cnt length=5; 1032 attrib dietn_cntrct_cnt length=5; 1033 attrib dietn_fltm_cnt length=5; 1034 attrib dietn_prtm_cnt length=5; 1035 attrib exprmt_rsrch_cndctd_sw length=$1; 1036 attrib fy_end_mo_day_cd length=$4; 1037 attrib food_srvc_cntrct_cnt length=5; 1038 attrib food_srvc_fltm_cnt length=5; 1039 attrib food_srvc_prtm_cnt length=5; 1040 attrib hsekpng_cntrct_cnt length=5; 1041 attrib hsekpng_fltm_cnt length=5; 1042 attrib hsekpng_prtm_cnt length=5; 1043 attrib lpn_lvn_cntrct_cnt length=5; 1044 attrib lpn_lvn_fltm_cnt length=5; 1045 attrib lpn_lvn_prtm_cnt length=5; 1046 attrib mdcl_drctr_cntrct_cnt length=5; 1047 attrib mdcl_drctr_fltm_cnt length=5; 1048 attrib mdcl_drctr_prtm_cnt length=5; 1049 attrib mdctn_aide_cntrct_cnt length=5; 1050 attrib mdctn_aide_fltm_cnt length=5; 1051 attrib mdctn_aide_prtm_cnt length=5; 1052 attrib mentl_hlth_srvc_cntrct_cnt length=5; 1053 attrib mentl_hlth_srvc_fltm_cnt length=5; 1054 attrib mentl_hlth_srvc_prtm_cnt length=5; 1055 attrib mlt_fac_org_name length=$38; 1056 attrib mlt_ownd_fac_org_sw length=$1; 1057 attrib nat_cntrct_cnt length=5; 1058 attrib nat_fltm_cnt length=5; 1059 attrib nat_prtm_cnt length=5; 1060 attrib nrs_adminv_cntrct_cnt length=5; 1061 attrib nrs_adminv_fltm_cnt length=5; 1062 attrib nrs_adminv_prtm_cnt length=5; 1063 attrib ocptnl_thrpst_cntrct_cnt length=5; 1064 attrib ocptnl_thrpst_fltm_cnt length=5; 1065 attrib ocptnl_thrpst_prtm_cnt length=5; 1066 attrib ot_aide_cntrct_cnt length=5; 1067 attrib ot_aide_fltm_cnt length=5; 1068 attrib ot_aide_prtm_cnt length=5; 1069 attrib ot_astnt_aide_cntrct_cnt length=5; 1070 attrib ot_astnt_aide_fltm_cnt length=5; 20 The SAS System 17:48 Tuesday, January 8, 2013 1071 attrib ot_astnt_aide_prtm_cnt length=5; 1072 attrib orgnz_fmly_mbr_grp_sw length=$1; 1073 attrib orgnz_rsdnt_grp_sw length=$1; 1074 attrib stf_othr_cntrct_cnt length=5; 1075 attrib stf_othr_fltm_cnt length=5; 1076 attrib stf_othr_prtm_cnt length=5; 1077 attrib physn_othr_cntrct_cnt length=5; 1078 attrib physn_othr_fltm_cnt length=5; 1079 attrib physn_othr_prtm_cnt length=5; 1080 attrib scl_srvc_othr_stf_cntrct_cnt length=5; 1081 attrib scl_srvc_othr_stf_fltm_cnt length=5; 1082 attrib scl_srvc_othr_stf_prtm_cnt length=5; 1083 attrib phrmcst_cntrct_cnt length=5; 1084 attrib phrmcst_fltm_cnt length=5; 1085 attrib phrmcst_prtm_cnt length=5; 1086 attrib phys_thrpst_cntrct_cnt length=5; 1087 attrib phys_thrpst_fltm_cnt length=5; 1088 attrib phys_thrpst_prtm_cnt length=5; 1089 attrib pt_aide_cntrct_cnt length=5; 1090 attrib pt_aide_fltm_cnt length=5; 1091 attrib pt_aide_prtm_cnt length=5; 1092 attrib pt_astnt_cntrct_cnt length=5; 1093 attrib pt_astnt_fltm_cnt length=5; 1094 attrib pt_astnt_prtm_cnt length=5; 1095 attrib physn_ext_cntrct_cnt length=5; 1096 attrib physn_ext_srvc_onst_nrsdnt_sw length=$1; 1097 attrib physn_ext_srvc_onst_rsdnt_sw length=$1; 1098 attrib pdtrst_cntrct_cnt length=5; 1099 attrib pdtrst_fltm_cnt length=5; 1100 attrib pdtrst_prtm_cnt length=5; 1101 attrib pgm_prtcptn_cd length=$1; 1102 attrib prvdr_bsd_fac_sw length=$1; 1103 attrib rn_cntrct_cnt length=5; 1104 attrib rn_fltm_cnt length=5; 1105 attrib rn_prtm_cnt length=5; 1106 attrib rltd_prvdr_num length=$10; 1107 attrib rscnd_suspnsn_dt length=5; 1108 attrib rn_drctr_cntrct_cnt length=5; 1109 attrib rn_drctr_fltm_cnt length=5; 1110 attrib rn_drctr_prtm_cnt length=5; 1111 attrib actvty_ofsite_rsdnt_sw length=$1; 1112 attrib actvty_onst_nrsdnt_sw length=$1; 1113 attrib actvty_onst_rsdnt_sw length=$1; 1114 attrib blood_srvc_ofsite_rsdnt_sw length=$1; 1115 attrib blood_srvc_onst_nrsdnt_sw length=$1; 1116 attrib blood_srvc_onst_rsdnt_sw length=$1; 1117 attrib cl_srvc_ofsite_rsdnt_sw length=$1; 1118 attrib cl_srvc_onst_nrsdnt_sw length=$1; 1119 attrib cl_srvc_onst_rsdnt_sw length=$1; 1120 attrib dntl_srvc_onst_nrsdnt_sw length=$1; 1121 attrib dntl_srvc_ofsite_rsdnt_sw length=$1; 1122 attrib dntl_srvc_onst_rsdnt_sw length=$1; 1123 attrib dtry_onst_nrsdnt_sw length=$1; 1124 attrib dtry_ofsite_rsdnt_sw length=$1; 1125 attrib dtry_onst_rsdnt_sw length=$1; 1126 attrib hsekpng_srvc_onst_nrsdnt_sw length=$1; 1127 attrib hsekpng_srvc_ofsite_rsdnt_sw length=$1; 1128 attrib hsekpng_srvc_onst_rsdnt_sw length=$1; 21 The SAS System 17:48 Tuesday, January 8, 2013 1129 attrib mentl_hlth_ofsite_rsdnt_sw length=$1; 1130 attrib mentl_hlth_onst_rsdnt_sw length=$1; 1131 attrib mentl_hlth_onst_nrsdnt_sw length=$1; 1132 attrib nrsng_srvc_onst_nrsdnt_sw length=$1; 1133 attrib nrsng_srvc_ofsite_rsdnt_sw length=$1; 1134 attrib nrsng_srvc_onst_rsdnt_sw length=$1; 1135 attrib ot_srvc_onst_nrsdnt_sw length=$1; 1136 attrib ot_srvc_ofsite_rsdnt_sw length=$1; 1137 attrib ot_srvc_onst_rsdnt_sw length=$1; 1138 attrib actvty_othr_ofsite_rsdnt_sw length=$1; 1139 attrib actvty_othr_onst_nrsdnt_sw length=$1; 1140 attrib actvty_othr_onst_rsdnt_sw length=$1; 1141 attrib scl_srvc_othr_ofsite_rsdnt_sw length=$1; 1142 attrib scl_srvc_othr_onst_nrsdnt_sw length=$1; 1143 attrib scl_srvc_othr_onst_rsdnt_sw length=$1; 1144 attrib phrmcy_srvc_ofsite_rsdnt_sw length=$1; 1145 attrib phrmcy_srvc_onst_nrsdnt_sw length=$1; 1146 attrib phrmcy_srvc_onst_rsdnt_sw length=$1; 1147 attrib pt_ofsite_rsdnt_sw length=$1; 1148 attrib pt_onst_nrsdnt_sw length=$1; 1149 attrib pt_onst_rsdnt_sw length=$1; 1150 attrib physn_srvc_ofsite_rsdnt_sw length=$1; 1151 attrib physn_srvc_onst_nrsdnt_sw length=$1; 1152 attrib physn_srvc_onst_rsdnt_sw length=$1; 1153 attrib pdtry_srvc_ofsite_rsdnt_sw length=$1; 1154 attrib pdtry_srvc_onst_nrsdnt_sw length=$1; 1155 attrib pdtry_srvc_onst_rsdnt_sw length=$1; 1156 attrib scl_work_srvc_ofsite_rsdnt_sw length=$1; 1157 attrib scl_work_srvc_onst_nrsdnt_sw length=$1; 1158 attrib scl_work_srvc_onst_rsdnt_sw length=$1; 1159 attrib spch_pthlgy_ofsite_rsdnt_sw length=$1; 1160 attrib spch_pthlgy_onst_nrsdnt_sw length=$1; 1161 attrib spch_pthlgy_onst_rsdnt_sw length=$1; 1162 attrib thrptc_rcrtnl_ofsite_rsdnt_sw length=$1; 1163 attrib thrptc_rcrtnl_onst_nrsdnt_sw length=$1; 1164 attrib thrptc_rcrtnl_onst_rsdnt_sw length=$1; 1165 attrib vctnl_srvc_ofsite_rsdnt_sw length=$1; 1166 attrib vctnl_srvc_onst_nrsdnt_sw length=$1; 1167 attrib vctnl_srvc_onst_rsdnt_sw length=$1; 1168 attrib dgnstc_xray_ofsite_rsdnt_sw length=$1; 1169 attrib dgnstc_xray_onst_nrsdnt_sw length=$1; 1170 attrib dgnstc_xray_onst_rsdnt_sw length=$1; 1171 attrib scl_workr_cntrct_cnt length=5; 1172 attrib scl_workr_fltm_cnt length=5; 1173 attrib scl_workr_prtm_cnt length=5; 1174 attrib rehab_bed_cnt length=3; 1175 attrib aids_bed_cnt length=3; 1176 attrib alzhmr_bed_cnt length=3; 1177 attrib dlys_bed_cnt length=3; 1178 attrib dsbl_chldrn_bed_cnt length=3; 1179 attrib head_trma_bed_cnt length=3; 1180 attrib hospc_bed_cnt length=3; 1181 attrib hntgtn_dease_bed_cnt length=3; 1182 attrib vntltr_bed_cnt length=3; 1183 attrib spch_pthlgst_cntrct_cnt length=5; 1184 attrib spch_pthlgst_fltm_cnt length=5; 1185 attrib spch_pthlgst_prtm_cnt length=5; 1186 attrib thrptc_rcrtnl_cntrct_cnt length=5; 22 The SAS System 17:48 Tuesday, January 8, 2013 1187 attrib thrptc_rcrtnl_fltm_cnt length=5; 1188 attrib thrptc_rcrtnl_prtm_cnt length=5; 1189 attrib prvdr_ctgry_sbtyp_cd length=$2; 1190 attrib prvdr_ctgry_cd length=$2; 1191 attrib chow_cnt length=3; 1192 attrib chow_dt length=5; 1193 attrib city_name length=$28; 1194 attrib acptbl_poc_sw length=$1; 1195 attrib cmplnc_stus_cd length=$1; 1196 attrib ssa_cnty_cd length=$3; 1197 attrib cross_rfrnc_prvdr_num length=$10; 1198 attrib crtfctn_dt length=5; 1199 attrib elgblty_sw length=$1; 1200 attrib fac_name length=$50; 1201 attrib intrmdry_carr_cd length=$5; 1202 attrib mdcd_vndr_num length=$15; 1203 attrib orgnl_prtcptn_dt length=5; 1204 attrib chow_prior_dt length=5; 1205 attrib intrmdry_carr_prior_cd length=$5; 1206 attrib prvdr_num length=$10; 1207 attrib rec_stus_cd length=$1; 1208 attrib rgn_cd length=$2; 1209 attrib skltn_rec_sw length=$1; 1210 attrib state_cd length=$2; 1211 attrib ssa_state_cd length=$2; 1212 attrib state_rgn_cd length=$3; 1213 attrib st_adr length=$50; 1214 attrib phne_num length=$10; 1215 attrib pgm_trmntn_cd length=$2; 1216 attrib trmntn_exprtn_dt length=5; 1217 attrib srvy_prpse_cd length=$1; 1218 attrib gnrl_cntl_type_cd length=$2; 1219 attrib zip_cd length=$5; 1220 attrib fips_state_cd length=$2; 1221 attrib fips_cnty_cd length=$3; 1222 attrib cbsa_urbn_rrl_ind length=$1; 1223 attrib actvty_profnl_cntrct_cnt length=5; 1224 attrib actvty_profnl_fltm_cnt length=5; 1225 attrib actvty_profnl_prtm_cnt length=5; 1226 attrib actvty_stf_othr_cntrct_cnt length=5; 1227 attrib actvty_stf_othr_fltm_cnt length=5; 1228 attrib actvty_stf_othr_prtm_cnt length=5; 1229 attrib profnl_admin_cntrct_cnt length=5; 1230 attrib profnl_admin_fltm_cnt length=5; 1231 attrib profnl_admin_prtm_cnt length=5; 1232 attrib mdcr_snf_bed_cnt length=4; 1233 attrib mdcd_snf_bed_cnt length=4; 1234 attrib mdcr_mdcd_snf_bed_cnt length=4; 1235 attrib crtfd_bed_cnt length=4; 1236 attrib bed_cnt length=4; 1237 attrib nrs_aide_cntrct_cnt length=5; 1238 attrib nrs_aide_fltm_cnt length=5; 1239 attrib nrs_aide_prtm_cnt length=5; 1240 attrib rn_24_hr_wvr_sw length=$1; 1241 attrib rn_7_day_wvr_sw length=$1; 1242 attrib bed_per_room_wvr_sw length=$1; 1243 attrib lsc_wvr_sw length=$1; 1244 attrib room_size_wvr_sw length=$1; 23 The SAS System 17:48 Tuesday, January 8, 2013 1245 attrib dntst_cntrct_cnt length=5; 1246 attrib dntst_fltm_cnt length=5; 1247 attrib dntst_prtm_cnt length=5; 1248 attrib dietn_cntrct_cnt length=5; 1249 attrib dietn_fltm_cnt length=5; 1250 attrib dietn_prtm_cnt length=5; 1251 attrib exprmt_rsrch_cndctd_sw length=$1; 1252 attrib fy_end_mo_day_cd length=$4; 1253 attrib food_srvc_cntrct_cnt length=5; 1254 attrib food_srvc_fltm_cnt length=5; 1255 attrib food_srvc_prtm_cnt length=5; 1256 attrib hsekpng_cntrct_cnt length=5; 1257 attrib hsekpng_fltm_cnt length=5; 1258 attrib hsekpng_prtm_cnt length=5; 1259 attrib lpn_lvn_cntrct_cnt length=5; 1260 attrib lpn_lvn_fltm_cnt length=5; 1261 attrib lpn_lvn_prtm_cnt length=5; 1262 attrib mdcl_drctr_cntrct_cnt length=5; 1263 attrib mdcl_drctr_fltm_cnt length=5; 1264 attrib mdcl_drctr_prtm_cnt length=5; 1265 attrib mdctn_aide_cntrct_cnt length=5; 1266 attrib mdctn_aide_fltm_cnt length=5; 1267 attrib mdctn_aide_prtm_cnt length=5; 1268 attrib mentl_hlth_srvc_cntrct_cnt length=5; 1269 attrib mentl_hlth_srvc_fltm_cnt length=5; 1270 attrib mentl_hlth_srvc_prtm_cnt length=5; 1271 attrib mlt_fac_org_name length=$38; 1272 attrib mlt_ownd_fac_org_sw length=$1; 1273 attrib nat_cntrct_cnt length=5; 1274 attrib nat_fltm_cnt length=5; 1275 attrib nat_prtm_cnt length=5; 1276 attrib nrs_adminv_cntrct_cnt length=5; 1277 attrib nrs_adminv_fltm_cnt length=5; 1278 attrib nrs_adminv_prtm_cnt length=5; 1279 attrib ocptnl_thrpst_cntrct_cnt length=5; 1280 attrib ocptnl_thrpst_fltm_cnt length=5; 1281 attrib ocptnl_thrpst_prtm_cnt length=5; 1282 attrib ot_aide_cntrct_cnt length=5; 1283 attrib ot_aide_fltm_cnt length=5; 1284 attrib ot_aide_prtm_cnt length=5; 1285 attrib ot_astnt_aide_cntrct_cnt length=5; 1286 attrib ot_astnt_aide_fltm_cnt length=5; 1287 attrib ot_astnt_aide_prtm_cnt length=5; 1288 attrib orgnz_fmly_mbr_grp_sw length=$1; 1289 attrib orgnz_rsdnt_grp_sw length=$1; 1290 attrib stf_othr_cntrct_cnt length=5; 1291 attrib stf_othr_fltm_cnt length=5; 1292 attrib stf_othr_prtm_cnt length=5; 1293 attrib physn_othr_cntrct_cnt length=5; 1294 attrib physn_othr_fltm_cnt length=5; 1295 attrib physn_othr_prtm_cnt length=5; 1296 attrib scl_srvc_othr_stf_cntrct_cnt length=5; 1297 attrib scl_srvc_othr_stf_fltm_cnt length=5; 1298 attrib scl_srvc_othr_stf_prtm_cnt length=5; 1299 attrib phrmcst_cntrct_cnt length=5; 1300 attrib phrmcst_fltm_cnt length=5; 1301 attrib phrmcst_prtm_cnt length=5; 1302 attrib phys_thrpst_cntrct_cnt length=5; 24 The SAS System 17:48 Tuesday, January 8, 2013 1303 attrib phys_thrpst_fltm_cnt length=5; 1304 attrib phys_thrpst_prtm_cnt length=5; 1305 attrib pt_aide_cntrct_cnt length=5; 1306 attrib pt_aide_fltm_cnt length=5; 1307 attrib pt_aide_prtm_cnt length=5; 1308 attrib pt_astnt_cntrct_cnt length=5; 1309 attrib pt_astnt_fltm_cnt length=5; 1310 attrib pt_astnt_prtm_cnt length=5; 1311 attrib physn_ext_cntrct_cnt length=5; 1312 attrib physn_ext_srvc_onst_nrsdnt_sw length=$1; 1313 attrib physn_ext_srvc_onst_rsdnt_sw length=$1; 1314 attrib pdtrst_cntrct_cnt length=5; 1315 attrib pdtrst_fltm_cnt length=5; 1316 attrib pdtrst_prtm_cnt length=5; 1317 attrib pgm_prtcptn_cd length=$1; 1318 attrib prvdr_bsd_fac_sw length=$1; 1319 attrib rn_cntrct_cnt length=5; 1320 attrib rn_fltm_cnt length=5; 1321 attrib rn_prtm_cnt length=5; 1322 attrib rltd_prvdr_num length=$10; 1323 attrib rscnd_suspnsn_dt length=5; 1324 attrib rn_drctr_cntrct_cnt length=5; 1325 attrib rn_drctr_fltm_cnt length=5; 1326 attrib rn_drctr_prtm_cnt length=5; 1327 attrib actvty_ofsite_rsdnt_sw length=$1; 1328 attrib actvty_onst_nrsdnt_sw length=$1; 1329 attrib actvty_onst_rsdnt_sw length=$1; 1330 attrib blood_srvc_ofsite_rsdnt_sw length=$1; 1331 attrib blood_srvc_onst_nrsdnt_sw length=$1; 1332 attrib blood_srvc_onst_rsdnt_sw length=$1; 1333 attrib cl_srvc_ofsite_rsdnt_sw length=$1; 1334 attrib cl_srvc_onst_nrsdnt_sw length=$1; 1335 attrib cl_srvc_onst_rsdnt_sw length=$1; 1336 attrib dntl_srvc_onst_nrsdnt_sw length=$1; 1337 attrib dntl_srvc_ofsite_rsdnt_sw length=$1; 1338 attrib dntl_srvc_onst_rsdnt_sw length=$1; 1339 attrib dtry_onst_nrsdnt_sw length=$1; 1340 attrib dtry_ofsite_rsdnt_sw length=$1; 1341 attrib dtry_onst_rsdnt_sw length=$1; 1342 attrib hsekpng_srvc_onst_nrsdnt_sw length=$1; 1343 attrib hsekpng_srvc_ofsite_rsdnt_sw length=$1; 1344 attrib hsekpng_srvc_onst_rsdnt_sw length=$1; 1345 attrib mentl_hlth_ofsite_rsdnt_sw length=$1; 1346 attrib mentl_hlth_onst_rsdnt_sw length=$1; 1347 attrib mentl_hlth_onst_nrsdnt_sw length=$1; 1348 attrib nrsng_srvc_onst_nrsdnt_sw length=$1; 1349 attrib nrsng_srvc_ofsite_rsdnt_sw length=$1; 1350 attrib nrsng_srvc_onst_rsdnt_sw length=$1; 1351 attrib ot_srvc_onst_nrsdnt_sw length=$1; 1352 attrib ot_srvc_ofsite_rsdnt_sw length=$1; 1353 attrib ot_srvc_onst_rsdnt_sw length=$1; 1354 attrib actvty_othr_ofsite_rsdnt_sw length=$1; 1355 attrib actvty_othr_onst_nrsdnt_sw length=$1; 1356 attrib actvty_othr_onst_rsdnt_sw length=$1; 1357 attrib scl_srvc_othr_ofsite_rsdnt_sw length=$1; 1358 attrib scl_srvc_othr_onst_nrsdnt_sw length=$1; 1359 attrib scl_srvc_othr_onst_rsdnt_sw length=$1; 1360 attrib phrmcy_srvc_ofsite_rsdnt_sw length=$1; 25 The SAS System 17:48 Tuesday, January 8, 2013 1361 attrib phrmcy_srvc_onst_nrsdnt_sw length=$1; 1362 attrib phrmcy_srvc_onst_rsdnt_sw length=$1; 1363 attrib pt_ofsite_rsdnt_sw length=$1; 1364 attrib pt_onst_nrsdnt_sw length=$1; 1365 attrib pt_onst_rsdnt_sw length=$1; 1366 attrib physn_srvc_ofsite_rsdnt_sw length=$1; 1367 attrib physn_srvc_onst_nrsdnt_sw length=$1; 1368 attrib physn_srvc_onst_rsdnt_sw length=$1; 1369 attrib pdtry_srvc_ofsite_rsdnt_sw length=$1; 1370 attrib pdtry_srvc_onst_nrsdnt_sw length=$1; 1371 attrib pdtry_srvc_onst_rsdnt_sw length=$1; 1372 attrib scl_work_srvc_ofsite_rsdnt_sw length=$1; 1373 attrib scl_work_srvc_onst_nrsdnt_sw length=$1; 1374 attrib scl_work_srvc_onst_rsdnt_sw length=$1; 1375 attrib spch_pthlgy_ofsite_rsdnt_sw length=$1; 1376 attrib spch_pthlgy_onst_nrsdnt_sw length=$1; 1377 attrib spch_pthlgy_onst_rsdnt_sw length=$1; 1378 attrib thrptc_rcrtnl_ofsite_rsdnt_sw length=$1; 1379 attrib thrptc_rcrtnl_onst_nrsdnt_sw length=$1; 1380 attrib thrptc_rcrtnl_onst_rsdnt_sw length=$1; 1381 attrib vctnl_srvc_ofsite_rsdnt_sw length=$1; 1382 attrib vctnl_srvc_onst_nrsdnt_sw length=$1; 1383 attrib vctnl_srvc_onst_rsdnt_sw length=$1; 1384 attrib dgnstc_xray_ofsite_rsdnt_sw length=$1; 1385 attrib dgnstc_xray_onst_nrsdnt_sw length=$1; 1386 attrib dgnstc_xray_onst_rsdnt_sw length=$1; 1387 attrib scl_workr_cntrct_cnt length=5; 1388 attrib scl_workr_fltm_cnt length=5; 1389 attrib scl_workr_prtm_cnt length=5; 1390 attrib rehab_bed_cnt length=3; 1391 attrib aids_bed_cnt length=3; 1392 attrib alzhmr_bed_cnt length=3; 1393 attrib dlys_bed_cnt length=3; 1394 attrib dsbl_chldrn_bed_cnt length=3; 1395 attrib head_trma_bed_cnt length=3; 1396 attrib hospc_bed_cnt length=3; 1397 attrib hntgtn_dease_bed_cnt length=3; 1398 attrib vntltr_bed_cnt length=3; 1399 attrib spch_pthlgst_cntrct_cnt length=5; 1400 attrib spch_pthlgst_fltm_cnt length=5; 1401 attrib spch_pthlgst_prtm_cnt length=5; 1402 attrib thrptc_rcrtnl_cntrct_cnt length=5; 1403 attrib thrptc_rcrtnl_fltm_cnt length=5; 1404 attrib thrptc_rcrtnl_prtm_cnt length=5; 1405 attrib prvdr_ctgry_sbtyp_cd length=$2; 1406 attrib prvdr_ctgry_cd length=$2; 1407 attrib chow_cnt length=3; 1408 attrib chow_dt length=5; 1409 attrib city_name length=$28; 1410 attrib acptbl_poc_sw length=$1; 1411 attrib cmplnc_stus_cd length=$1; 1412 attrib ssa_cnty_cd length=$3; 1413 attrib cross_rfrnc_prvdr_num length=$10; 1414 attrib crtfctn_dt length=5; 1415 attrib elgblty_sw length=$1; 1416 attrib fac_name length=$50; 1417 attrib intrmdry_carr_cd length=$5; 1418 attrib mdcd_vndr_num length=$15; 26 The SAS System 17:48 Tuesday, January 8, 2013 1419 attrib orgnl_prtcptn_dt length=5; 1420 attrib chow_prior_dt length=5; 1421 attrib intrmdry_carr_prior_cd length=$5; 1422 attrib prvdr_num length=$10; 1423 attrib rec_stus_cd length=$1; 1424 attrib rgn_cd length=$2; 1425 attrib skltn_rec_sw length=$1; 1426 attrib state_cd length=$2; 1427 attrib ssa_state_cd length=$2; 1428 attrib state_rgn_cd length=$3; 1429 attrib st_adr length=$50; 1430 attrib phne_num length=$10; 1431 attrib pgm_trmntn_cd length=$2; 1432 attrib trmntn_exprtn_dt length=5; 1433 attrib srvy_prpse_cd length=$1; 1434 attrib gnrl_cntl_type_cd length=$2; 1435 attrib zip_cd length=$5; 1436 attrib fips_state_cd length=$2; 1437 attrib fips_cnty_cd length=$3; 1438 attrib cbsa_urbn_rrl_ind length=$1; 1439 attrib acrdtn_type_cd length=$1; 1440 attrib hha_trng_pgm_cd length=$1; 1441 attrib brnch_oprtn_sw length=$1; 1442 attrib brnch_cnt length=3; 1443 attrib chow_sw length=$1; 1444 attrib vldtn_srvy_dt length=5; 1445 attrib dietn_cnt length=5; 1446 attrib fy_end_mo_day_cd length=$4; 1447 attrib hha_qlfyd_opt_spch_sw length=$1; 1448 attrib hh_aide_cnt length=5; 1449 attrib mdcr_hospc_sw length=$1; 1450 attrib lpn_lvn_cnt length=5; 1451 attrib mdcl_scl_workr_cnt length=5; 1452 attrib ocptnl_thrpst_cnt length=5; 1453 attrib prsnel_othr_cnt length=5; 1454 attrib phys_thrpst_stf_cnt length=5; 1455 attrib pgm_prtcptn_cd length=$1; 1456 attrib rn_cnt length=5; 1457 attrib reg_phrmcst_cnt length=5; 1458 attrib rltd_prvdr_num length=$10; 1459 attrib aplnc_equip_srvc_cd length=$1; 1460 attrib hh_aide_srvc_cd length=$1; 1461 attrib intrn_rsdnt_srvc_cd length=$1; 1462 attrib lab_srvc_cd length=$1; 1463 attrib mdcl_scl_srvc_cd length=$1; 1464 attrib nrsng_srvc_cd length=$1; 1465 attrib ntrtnl_gdnc_srvc_cd length=$1; 1466 attrib othr_srvc_cd length=$1; 1467 attrib spch_thrpy_srvc_cd length=$1; 1468 attrib vctnl_gdnc_srvc_cd length=$1; 1469 attrib ot_srvc_cd length=$1; 1470 attrib ot_srvc_desc length=$3; 1471 attrib phrmcy_srvc_cd length=$1; 1472 attrib phrmcy_srvc_desc length=$39; 1473 attrib pt_srvc_cd length=$1; 1474 attrib pt_srvc_desc length=$39; 1475 attrib scl_workr_cnt length=5; 1476 attrib spch_pthlgst_audlgst_cnt length=5; 27 The SAS System 17:48 Tuesday, January 8, 2013 1477 attrib sbunit_oprtn_sw length=$1; 1478 attrib sbunit_sw length=$1; 1479 attrib sbunit_cnt length=3; 1480 attrib srty_bond_cd length=$1; 1481 attrib gnrl_fac_type_cd length=$2; 1482 attrib prvdr_ctgry_sbtyp_cd length=$2; 1483 attrib prvdr_ctgry_cd length=$2; 1484 attrib chow_cnt length=3; 1485 attrib chow_dt length=5; 1486 attrib city_name length=$28; 1487 attrib acptbl_poc_sw length=$1; 1488 attrib cmplnc_stus_cd length=$1; 1489 attrib ssa_cnty_cd length=$3; 1490 attrib cross_rfrnc_prvdr_num length=$10; 1491 attrib crtfctn_dt length=5; 1492 attrib elgblty_sw length=$1; 1493 attrib fac_name length=$50; 1494 attrib intrmdry_carr_cd length=$5; 1495 attrib mdcd_vndr_num length=$15; 1496 attrib orgnl_prtcptn_dt length=5; 1497 attrib chow_prior_dt length=5; 1498 attrib intrmdry_carr_prior_cd length=$5; 1499 attrib prvdr_num length=$10; 1500 attrib rec_stus_cd length=$1; 1501 attrib rgn_cd length=$2; 1502 attrib skltn_rec_sw length=$1; 1503 attrib state_cd length=$2; 1504 attrib ssa_state_cd length=$2; 1505 attrib state_rgn_cd length=$3; 1506 attrib st_adr length=$50; 1507 attrib phne_num length=$10; 1508 attrib pgm_trmntn_cd length=$2; 1509 attrib trmntn_exprtn_dt length=5; 1510 attrib srvy_prpse_cd length=$1; 1511 attrib gnrl_cntl_type_cd length=$2; 1512 attrib zip_cd length=$5; 1513 attrib fips_state_cd length=$2; 1514 attrib fips_cnty_cd length=$3; 1515 attrib cbsa_urbn_rrl_ind length=$1; 1516 attrib prvdr_ctgry_sbtyp_cd length=$2; 1517 attrib prvdr_ctgry_cd length=$2; 1518 attrib chow_cnt length=3; 1519 attrib chow_dt length=5; 1520 attrib city_name length=$28; 1521 attrib acptbl_poc_sw length=$1; 1522 attrib cmplnc_stus_cd length=$1; 1523 attrib ssa_cnty_cd length=$3; 1524 attrib cross_rfrnc_prvdr_num length=$10; 1525 attrib crtfctn_dt length=5; 1526 attrib elgblty_sw length=$1; 1527 attrib fac_name length=$50; 1528 attrib intrmdry_carr_cd length=$5; 1529 attrib mdcd_vndr_num length=$15; 1530 attrib orgnl_prtcptn_dt length=5; 1531 attrib chow_prior_dt length=5; 1532 attrib intrmdry_carr_prior_cd length=$5; 1533 attrib prvdr_num length=$10; 1534 attrib rec_stus_cd length=$1; 28 The SAS System 17:48 Tuesday, January 8, 2013 1535 attrib rgn_cd length=$2; 1536 attrib skltn_rec_sw length=$1; 1537 attrib state_cd length=$2; 1538 attrib ssa_state_cd length=$2; 1539 attrib state_rgn_cd length=$3; 1540 attrib st_adr length=$50; 1541 attrib phne_num length=$10; 1542 attrib pgm_trmntn_cd length=$2; 1543 attrib trmntn_exprtn_dt length=5; 1544 attrib srvy_prpse_cd length=$1; 1545 attrib gnrl_cntl_type_cd length=$2; 1546 attrib zip_cd length=$5; 1547 attrib fips_state_cd length=$2; 1548 attrib fips_cnty_cd length=$3; 1549 attrib cbsa_urbn_rrl_ind length=$1; 1550 attrib drctr_qualn_cd length=$1; 1551 attrib fy_end_mo_day_cd length=$4; 1552 attrib prsnel_othr_cnt length=5; 1553 attrib tchnlgst_2_yr_rdlgc_cnt length=5; 1554 attrib tchnlgst_asct_dgr_cnt length=5; 1555 attrib tchnlgst_bs_ba_dgr_cnt length=5; 1556 attrib prvdr_ctgry_sbtyp_cd length=$2; 1557 attrib prvdr_ctgry_cd length=$2; 1558 attrib chow_cnt length=3; 1559 attrib chow_dt length=5; 1560 attrib city_name length=$28; 1561 attrib acptbl_poc_sw length=$1; 1562 attrib cmplnc_stus_cd length=$1; 1563 attrib ssa_cnty_cd length=$3; 1564 attrib cross_rfrnc_prvdr_num length=$10; 1565 attrib crtfctn_dt length=5; 1566 attrib elgblty_sw length=$1; 1567 attrib fac_name length=$50; 1568 attrib intrmdry_carr_cd length=$5; 1569 attrib mdcd_vndr_num length=$15; 1570 attrib orgnl_prtcptn_dt length=5; 1571 attrib chow_prior_dt length=5; 1572 attrib intrmdry_carr_prior_cd length=$5; 1573 attrib prvdr_num length=$10; 1574 attrib rec_stus_cd length=$1; 1575 attrib rgn_cd length=$2; 1576 attrib skltn_rec_sw length=$1; 1577 attrib state_cd length=$2; 1578 attrib ssa_state_cd length=$2; 1579 attrib state_rgn_cd length=$3; 1580 attrib st_adr length=$50; 1581 attrib phne_num length=$10; 1582 attrib pgm_trmntn_cd length=$2; 1583 attrib trmntn_exprtn_dt length=5; 1584 attrib srvy_prpse_cd length=$1; 1585 attrib gnrl_cntl_type_cd length=$2; 1586 attrib zip_cd length=$5; 1587 attrib fips_state_cd length=$2; 1588 attrib fips_cnty_cd length=$3; 1589 attrib cbsa_urbn_rrl_ind length=$1; 1590 attrib fy_end_mo_day_cd length=$4; 1591 attrib ocptnl_thrpst_fltm_cnt length=5; 1592 attrib ocptnl_thrpst_cnt length=5; 29 The SAS System 17:48 Tuesday, January 8, 2013 1593 attrib phys_thrpst_arngmt_cnt length=5; 1594 attrib phys_thrpst_cnt length=5; 1595 attrib phys_thrpst_stf_cnt length=5; 1596 attrib rltd_prvdr_num length=$10; 1597 attrib spch_pthlgy_srvc_cd length=$1; 1598 attrib spch_pthlgy_srvc_desc length=$39; 1599 attrib spch_pthlgst_audlgst_cnt length=5; 1600 attrib spch_pthlgst_arngmt_cnt length=5; 1601 attrib spch_pthlgst_cnt length=5; 1602 attrib gnrl_fac_type_cd length=$2; 1603 attrib prvdr_ctgry_sbtyp_cd length=$2; 1604 attrib prvdr_ctgry_cd length=$2; 1605 attrib chow_cnt length=3; 1606 attrib chow_dt length=5; 1607 attrib city_name length=$28; 1608 attrib acptbl_poc_sw length=$1; 1609 attrib cmplnc_stus_cd length=$1; 1610 attrib ssa_cnty_cd length=$3; 1611 attrib cross_rfrnc_prvdr_num length=$10; 1612 attrib crtfctn_dt length=5; 1613 attrib elgblty_sw length=$1; 1614 attrib fac_name length=$50; 1615 attrib intrmdry_carr_cd length=$5; 1616 attrib mdcd_vndr_num length=$15; 1617 attrib orgnl_prtcptn_dt length=5; 1618 attrib chow_prior_dt length=5; 1619 attrib intrmdry_carr_prior_cd length=$5; 1620 attrib prvdr_num length=$10; 1621 attrib rec_stus_cd length=$1; 1622 attrib rgn_cd length=$2; 1623 attrib skltn_rec_sw length=$1; 1624 attrib state_cd length=$2; 1625 attrib ssa_state_cd length=$2; 1626 attrib state_rgn_cd length=$3; 1627 attrib st_adr length=$50; 1628 attrib phne_num length=$10; 1629 attrib pgm_trmntn_cd length=$2; 1630 attrib trmntn_exprtn_dt length=5; 1631 attrib srvy_prpse_cd length=$1; 1632 attrib gnrl_cntl_type_cd length=$2; 1633 attrib zip_cd length=$5; 1634 attrib fips_state_cd length=$2; 1635 attrib fips_cnty_cd length=$3; 1636 attrib cbsa_urbn_rrl_ind length=$1; 1637 attrib dietn_cnt length=5; 1638 attrib esrd_ntwrk_num length=$2; 1639 attrib fy_end_mo_day_cd length=$4; 1640 attrib hosp_bsd_sw length=$1; 1641 attrib mlt_fac_org_name length=$38; 1642 attrib mlt_ownd_fac_org_sw length=$1; 1643 attrib shift_4_tue_ptnt_cnt length=3; 1644 attrib prsnel_othr_cnt length=5; 1645 attrib rn_cnt length=5; 1646 attrib rltd_prvdr_num length=$10; 1647 attrib scl_workr_cnt length=5; 1648 attrib hmdlys_stn_esrd_cnt length=3; 1649 attrib dlys_stn_cnt length=3; 1650 attrib prvdr_ctgry_sbtyp_cd length=$2; 30 The SAS System 17:48 Tuesday, January 8, 2013 1651 attrib prvdr_ctgry_cd length=$2; 1652 attrib chow_cnt length=3; 1653 attrib chow_dt length=5; 1654 attrib city_name length=$28; 1655 attrib acptbl_poc_sw length=$1; 1656 attrib cmplnc_stus_cd length=$1; 1657 attrib ssa_cnty_cd length=$3; 1658 attrib cross_rfrnc_prvdr_num length=$10; 1659 attrib crtfctn_dt length=5; 1660 attrib elgblty_sw length=$1; 1661 attrib fac_name length=$50; 1662 attrib intrmdry_carr_cd length=$5; 1663 attrib mdcd_vndr_num length=$15; 1664 attrib orgnl_prtcptn_dt length=5; 1665 attrib chow_prior_dt length=5; 1666 attrib intrmdry_carr_prior_cd length=$5; 1667 attrib prvdr_num length=$10; 1668 attrib rec_stus_cd length=$1; 1669 attrib rgn_cd length=$2; 1670 attrib skltn_rec_sw length=$1; 1671 attrib state_cd length=$2; 1672 attrib ssa_state_cd length=$2; 1673 attrib state_rgn_cd length=$3; 1674 attrib st_adr length=$50; 1675 attrib phne_num length=$10; 1676 attrib pgm_trmntn_cd length=$2; 1677 attrib trmntn_exprtn_dt length=5; 1678 attrib srvy_prpse_cd length=$1; 1679 attrib gnrl_cntl_type_cd length=$2; 1680 attrib zip_cd length=$5; 1681 attrib fips_state_cd length=$2; 1682 attrib fips_cnty_cd length=$3; 1683 attrib cbsa_urbn_rrl_ind length=$1; 1684 attrib actvty_profnl_cntrct_cnt length=5; 1685 attrib actvty_profnl_fltm_cnt length=5; 1686 attrib actvty_profnl_prtm_cnt length=5; 1687 attrib actvty_stf_othr_cntrct_cnt length=5; 1688 attrib actvty_stf_othr_fltm_cnt length=5; 1689 attrib actvty_stf_othr_prtm_cnt length=5; 1690 attrib profnl_admin_cntrct_cnt length=5; 1691 attrib profnl_admin_fltm_cnt length=5; 1692 attrib profnl_admin_prtm_cnt length=5; 1693 attrib mdcd_snf_bed_cnt length=4; 1694 attrib crtfd_bed_cnt length=4; 1695 attrib bed_cnt length=4; 1696 attrib nrs_aide_cntrct_cnt length=5; 1697 attrib nrs_aide_fltm_cnt length=5; 1698 attrib nrs_aide_prtm_cnt length=5; 1699 attrib rn_24_hr_wvr_sw length=$1; 1700 attrib rn_7_day_wvr_sw length=$1; 1701 attrib bed_per_room_wvr_sw length=$1; 1702 attrib lsc_wvr_sw length=$1; 1703 attrib room_size_wvr_sw length=$1; 1704 attrib dntst_cntrct_cnt length=5; 1705 attrib dntst_fltm_cnt length=5; 1706 attrib dntst_prtm_cnt length=5; 1707 attrib dietn_cntrct_cnt length=5; 1708 attrib dietn_fltm_cnt length=5; 31 The SAS System 17:48 Tuesday, January 8, 2013 1709 attrib dietn_prtm_cnt length=5; 1710 attrib exprmt_rsrch_cndctd_sw length=$1; 1711 attrib fy_end_mo_day_cd length=$4; 1712 attrib food_srvc_cntrct_cnt length=5; 1713 attrib food_srvc_fltm_cnt length=5; 1714 attrib food_srvc_prtm_cnt length=5; 1715 attrib hsekpng_cntrct_cnt length=5; 1716 attrib hsekpng_fltm_cnt length=5; 1717 attrib hsekpng_prtm_cnt length=5; 1718 attrib lpn_lvn_cntrct_cnt length=5; 1719 attrib lpn_lvn_fltm_cnt length=5; 1720 attrib lpn_lvn_prtm_cnt length=5; 1721 attrib mdcl_drctr_cntrct_cnt length=5; 1722 attrib mdcl_drctr_fltm_cnt length=5; 1723 attrib mdcl_drctr_prtm_cnt length=5; 1724 attrib mdctn_aide_cntrct_cnt length=5; 1725 attrib mdctn_aide_fltm_cnt length=5; 1726 attrib mdctn_aide_prtm_cnt length=5; 1727 attrib mentl_hlth_srvc_cntrct_cnt length=5; 1728 attrib mentl_hlth_srvc_fltm_cnt length=5; 1729 attrib mentl_hlth_srvc_prtm_cnt length=5; 1730 attrib mlt_fac_org_name length=$38; 1731 attrib mlt_ownd_fac_org_sw length=$1; 1732 attrib nat_cntrct_cnt length=5; 1733 attrib nat_fltm_cnt length=5; 1734 attrib nat_prtm_cnt length=5; 1735 attrib nrs_adminv_cntrct_cnt length=5; 1736 attrib nrs_adminv_fltm_cnt length=5; 1737 attrib nrs_adminv_prtm_cnt length=5; 1738 attrib ocptnl_thrpst_cntrct_cnt length=5; 1739 attrib ocptnl_thrpst_fltm_cnt length=5; 1740 attrib ocptnl_thrpst_prtm_cnt length=5; 1741 attrib ot_aide_cntrct_cnt length=5; 1742 attrib ot_aide_fltm_cnt length=5; 1743 attrib ot_aide_prtm_cnt length=5; 1744 attrib ot_astnt_aide_cntrct_cnt length=5; 1745 attrib ot_astnt_aide_fltm_cnt length=5; 1746 attrib ot_astnt_aide_prtm_cnt length=5; 1747 attrib orgnz_fmly_mbr_grp_sw length=$1; 1748 attrib orgnz_rsdnt_grp_sw length=$1; 1749 attrib stf_othr_cntrct_cnt length=5; 1750 attrib stf_othr_fltm_cnt length=5; 1751 attrib stf_othr_prtm_cnt length=5; 1752 attrib physn_othr_cntrct_cnt length=5; 1753 attrib physn_othr_fltm_cnt length=5; 1754 attrib physn_othr_prtm_cnt length=5; 1755 attrib scl_srvc_othr_stf_cntrct_cnt length=5; 1756 attrib scl_srvc_othr_stf_fltm_cnt length=5; 1757 attrib scl_srvc_othr_stf_prtm_cnt length=5; 1758 attrib phrmcst_cntrct_cnt length=5; 1759 attrib phrmcst_fltm_cnt length=5; 1760 attrib phrmcst_prtm_cnt length=5; 1761 attrib phys_thrpst_cntrct_cnt length=5; 1762 attrib phys_thrpst_fltm_cnt length=5; 1763 attrib phys_thrpst_prtm_cnt length=5; 1764 attrib pt_aide_cntrct_cnt length=5; 1765 attrib pt_aide_fltm_cnt length=5; 1766 attrib pt_aide_prtm_cnt length=5; 32 The SAS System 17:48 Tuesday, January 8, 2013 1767 attrib pt_astnt_cntrct_cnt length=5; 1768 attrib pt_astnt_fltm_cnt length=5; 1769 attrib pt_astnt_prtm_cnt length=5; 1770 attrib physn_ext_cntrct_cnt length=5; 1771 attrib physn_ext_srvc_onst_nrsdnt_sw length=$1; 1772 attrib physn_ext_srvc_onst_rsdnt_sw length=$1; 1773 attrib pdtrst_cntrct_cnt length=5; 1774 attrib pdtrst_fltm_cnt length=5; 1775 attrib pdtrst_prtm_cnt length=5; 1776 attrib pgm_prtcptn_cd length=$1; 1777 attrib prvdr_bsd_fac_sw length=$1; 1778 attrib rn_cntrct_cnt length=5; 1779 attrib rn_fltm_cnt length=5; 1780 attrib rn_prtm_cnt length=5; 1781 attrib rltd_prvdr_num length=$10; 1782 attrib rscnd_suspnsn_dt length=5; 1783 attrib rn_drctr_cntrct_cnt length=5; 1784 attrib rn_drctr_fltm_cnt length=5; 1785 attrib rn_drctr_prtm_cnt length=5; 1786 attrib actvty_ofsite_rsdnt_sw length=$1; 1787 attrib actvty_onst_nrsdnt_sw length=$1; 1788 attrib actvty_onst_rsdnt_sw length=$1; 1789 attrib blood_srvc_ofsite_rsdnt_sw length=$1; 1790 attrib blood_srvc_onst_nrsdnt_sw length=$1; 1791 attrib blood_srvc_onst_rsdnt_sw length=$1; 1792 attrib cl_srvc_ofsite_rsdnt_sw length=$1; 1793 attrib cl_srvc_onst_nrsdnt_sw length=$1; 1794 attrib cl_srvc_onst_rsdnt_sw length=$1; 1795 attrib dntl_srvc_onst_nrsdnt_sw length=$1; 1796 attrib dntl_srvc_ofsite_rsdnt_sw length=$1; 1797 attrib dntl_srvc_onst_rsdnt_sw length=$1; 1798 attrib dtry_onst_nrsdnt_sw length=$1; 1799 attrib dtry_ofsite_rsdnt_sw length=$1; 1800 attrib dtry_onst_rsdnt_sw length=$1; 1801 attrib hsekpng_srvc_onst_nrsdnt_sw length=$1; 1802 attrib hsekpng_srvc_ofsite_rsdnt_sw length=$1; 1803 attrib hsekpng_srvc_onst_rsdnt_sw length=$1; 1804 attrib mentl_hlth_ofsite_rsdnt_sw length=$1; 1805 attrib mentl_hlth_onst_rsdnt_sw length=$1; 1806 attrib mentl_hlth_onst_nrsdnt_sw length=$1; 1807 attrib nrsng_srvc_onst_nrsdnt_sw length=$1; 1808 attrib nrsng_srvc_ofsite_rsdnt_sw length=$1; 1809 attrib nrsng_srvc_onst_rsdnt_sw length=$1; 1810 attrib ot_srvc_onst_nrsdnt_sw length=$1; 1811 attrib ot_srvc_ofsite_rsdnt_sw length=$1; 1812 attrib ot_srvc_onst_rsdnt_sw length=$1; 1813 attrib actvty_othr_ofsite_rsdnt_sw length=$1; 1814 attrib actvty_othr_onst_nrsdnt_sw length=$1; 1815 attrib actvty_othr_onst_rsdnt_sw length=$1; 1816 attrib scl_srvc_othr_ofsite_rsdnt_sw length=$1; 1817 attrib scl_srvc_othr_onst_nrsdnt_sw length=$1; 1818 attrib scl_srvc_othr_onst_rsdnt_sw length=$1; 1819 attrib phrmcy_srvc_ofsite_rsdnt_sw length=$1; 1820 attrib phrmcy_srvc_onst_nrsdnt_sw length=$1; 1821 attrib phrmcy_srvc_onst_rsdnt_sw length=$1; 1822 attrib pt_ofsite_rsdnt_sw length=$1; 1823 attrib pt_onst_nrsdnt_sw length=$1; 1824 attrib pt_onst_rsdnt_sw length=$1; 33 The SAS System 17:48 Tuesday, January 8, 2013 1825 attrib physn_srvc_ofsite_rsdnt_sw length=$1; 1826 attrib physn_srvc_onst_nrsdnt_sw length=$1; 1827 attrib physn_srvc_onst_rsdnt_sw length=$1; 1828 attrib pdtry_srvc_ofsite_rsdnt_sw length=$1; 1829 attrib pdtry_srvc_onst_nrsdnt_sw length=$1; 1830 attrib pdtry_srvc_onst_rsdnt_sw length=$1; 1831 attrib scl_work_srvc_ofsite_rsdnt_sw length=$1; 1832 attrib scl_work_srvc_onst_nrsdnt_sw length=$1; 1833 attrib scl_work_srvc_onst_rsdnt_sw length=$1; 1834 attrib spch_pthlgy_ofsite_rsdnt_sw length=$1; 1835 attrib spch_pthlgy_onst_nrsdnt_sw length=$1; 1836 attrib spch_pthlgy_onst_rsdnt_sw length=$1; 1837 attrib thrptc_rcrtnl_ofsite_rsdnt_sw length=$1; 1838 attrib thrptc_rcrtnl_onst_nrsdnt_sw length=$1; 1839 attrib thrptc_rcrtnl_onst_rsdnt_sw length=$1; 1840 attrib vctnl_srvc_ofsite_rsdnt_sw length=$1; 1841 attrib vctnl_srvc_onst_nrsdnt_sw length=$1; 1842 attrib vctnl_srvc_onst_rsdnt_sw length=$1; 1843 attrib dgnstc_xray_ofsite_rsdnt_sw length=$1; 1844 attrib dgnstc_xray_onst_nrsdnt_sw length=$1; 1845 attrib dgnstc_xray_onst_rsdnt_sw length=$1; 1846 attrib scl_workr_cntrct_cnt length=5; 1847 attrib scl_workr_fltm_cnt length=5; 1848 attrib scl_workr_prtm_cnt length=5; 1849 attrib rehab_bed_cnt length=3; 1850 attrib aids_bed_cnt length=3; 1851 attrib alzhmr_bed_cnt length=3; 1852 attrib dlys_bed_cnt length=3; 1853 attrib dsbl_chldrn_bed_cnt length=3; 1854 attrib head_trma_bed_cnt length=3; 1855 attrib hospc_bed_cnt length=3; 1856 attrib hntgtn_dease_bed_cnt length=3; 1857 attrib vntltr_bed_cnt length=3; 1858 attrib spch_pthlgst_cntrct_cnt length=5; 1859 attrib spch_pthlgst_fltm_cnt length=5; 1860 attrib spch_pthlgst_prtm_cnt length=5; 1861 attrib thrptc_rcrtnl_cntrct_cnt length=5; 1862 attrib thrptc_rcrtnl_fltm_cnt length=5; 1863 attrib thrptc_rcrtnl_prtm_cnt length=5; 1864 attrib prvdr_ctgry_sbtyp_cd length=$2; 1865 attrib prvdr_ctgry_cd length=$2; 1866 attrib chow_cnt length=3; 1867 attrib chow_dt length=5; 1868 attrib city_name length=$28; 1869 attrib acptbl_poc_sw length=$1; 1870 attrib cmplnc_stus_cd length=$1; 1871 attrib ssa_cnty_cd length=$3; 1872 attrib cross_rfrnc_prvdr_num length=$10; 1873 attrib crtfctn_dt length=5; 1874 attrib elgblty_sw length=$1; 1875 attrib fac_name length=$50; 1876 attrib intrmdry_carr_cd length=$5; 1877 attrib mdcd_vndr_num length=$15; 1878 attrib orgnl_prtcptn_dt length=5; 1879 attrib chow_prior_dt length=5; 1880 attrib intrmdry_carr_prior_cd length=$5; 1881 attrib prvdr_num length=$10; 1882 attrib rec_stus_cd length=$1; 34 The SAS System 17:48 Tuesday, January 8, 2013 1883 attrib rgn_cd length=$2; 1884 attrib skltn_rec_sw length=$1; 1885 attrib state_cd length=$2; 1886 attrib ssa_state_cd length=$2; 1887 attrib state_rgn_cd length=$3; 1888 attrib st_adr length=$50; 1889 attrib phne_num length=$10; 1890 attrib pgm_trmntn_cd length=$2; 1891 attrib trmntn_exprtn_dt length=5; 1892 attrib srvy_prpse_cd length=$1; 1893 attrib gnrl_cntl_type_cd length=$2; 1894 attrib zip_cd length=$5; 1895 attrib fips_state_cd length=$2; 1896 attrib fips_cnty_cd length=$3; 1897 attrib cbsa_urbn_rrl_ind length=$1; 1898 attrib admsn_suspnsn_dt length=5; 1899 attrib admsn_suspnsn_prior_dt length=5; 1900 attrib mr_bed_cnt length=4; 1901 attrib crtfd_bed_cnt length=4; 1902 attrib bed_cnt length=4; 1903 attrib bed_per_room_wvr_sw length=$1; 1904 attrib lsc_wvr_sw length=$1; 1905 attrib room_size_wvr_sw length=$1; 1906 attrib drct_care_prsnel_cnt length=5; 1907 attrib fy_end_mo_day_cd length=$4; 1908 attrib lpn_lvn_cnt length=5; 1909 attrib agrmt_bgn_dt length=5; 1910 attrib agrmt_end_dt length=5; 1911 attrib agrmt_extnsn_dt length=5; 1912 attrib agrmt_end_prior_dt length=5; 1913 attrib agrmt_extnsn_prior_dt length=5; 1914 attrib rscnd_suspnsn_prior_dt length=5; 1915 attrib pgm_prtcptn_cd length=$1; 1916 attrib prvdr_bsd_fac_sw length=$1; 1917 attrib rn_cnt length=5; 1918 attrib rltd_prvdr_num length=$10; 1919 attrib rscnd_suspnsn_dt length=5; 1920 attrib emplee_cnt length=5; 1921 attrib prvdr_ctgry_sbtyp_cd length=$2; 1922 attrib prvdr_ctgry_cd length=$2; 1923 attrib chow_cnt length=3; 1924 attrib chow_dt length=5; 1925 attrib city_name length=$28; 1926 attrib acptbl_poc_sw length=$1; 1927 attrib cmplnc_stus_cd length=$1; 1928 attrib ssa_cnty_cd length=$3; 1929 attrib cross_rfrnc_prvdr_num length=$10; 1930 attrib crtfctn_dt length=5; 1931 attrib elgblty_sw length=$1; 1932 attrib fac_name length=$50; 1933 attrib intrmdry_carr_cd length=$5; 1934 attrib mdcd_vndr_num length=$15; 1935 attrib orgnl_prtcptn_dt length=5; 1936 attrib chow_prior_dt length=5; 1937 attrib intrmdry_carr_prior_cd length=$5; 1938 attrib prvdr_num length=$10; 1939 attrib rec_stus_cd length=$1; 1940 attrib rgn_cd length=$2; 35 The SAS System 17:48 Tuesday, January 8, 2013 1941 attrib skltn_rec_sw length=$1; 1942 attrib state_cd length=$2; 1943 attrib ssa_state_cd length=$2; 1944 attrib state_rgn_cd length=$3; 1945 attrib st_adr length=$50; 1946 attrib phne_num length=$10; 1947 attrib pgm_trmntn_cd length=$2; 1948 attrib trmntn_exprtn_dt length=5; 1949 attrib srvy_prpse_cd length=$1; 1950 attrib gnrl_cntl_type_cd length=$2; 1951 attrib zip_cd length=$5; 1952 attrib fips_state_cd length=$2; 1953 attrib fips_cnty_cd length=$3; 1954 attrib cbsa_urbn_rrl_ind length=$1; 1955 attrib fed_pgm_sprt_sw length=$1; 1956 attrib fy_end_mo_day_cd length=$4; 1957 attrib nrs_prctnr_cnt length=5; 1958 attrib prsnel_othr_cnt length=5; 1959 attrib physn_cnt length=5; 1960 attrib rltd_prvdr_num length=$10; 1961 attrib fed_pgm_name length=$26; 1962 attrib prvdr_ctgry_sbtyp_cd length=$2; 1963 attrib prvdr_ctgry_cd length=$2; 1964 attrib chow_cnt length=3; 1965 attrib chow_dt length=5; 1966 attrib city_name length=$28; 1967 attrib acptbl_poc_sw length=$1; 1968 attrib cmplnc_stus_cd length=$1; 1969 attrib ssa_cnty_cd length=$3; 1970 attrib cross_rfrnc_prvdr_num length=$10; 1971 attrib crtfctn_dt length=5; 1972 attrib elgblty_sw length=$1; 1973 attrib fac_name length=$50; 1974 attrib intrmdry_carr_cd length=$5; 1975 attrib mdcd_vndr_num length=$15; 1976 attrib orgnl_prtcptn_dt length=5; 1977 attrib chow_prior_dt length=5; 1978 attrib intrmdry_carr_prior_cd length=$5; 1979 attrib prvdr_num length=$10; 1980 attrib rec_stus_cd length=$1; 1981 attrib rgn_cd length=$2; 1982 attrib skltn_rec_sw length=$1; 1983 attrib state_cd length=$2; 1984 attrib ssa_state_cd length=$2; 1985 attrib state_rgn_cd length=$3; 1986 attrib st_adr length=$50; 1987 attrib phne_num length=$10; 1988 attrib pgm_trmntn_cd length=$2; 1989 attrib trmntn_exprtn_dt length=5; 1990 attrib srvy_prpse_cd length=$1; 1991 attrib gnrl_cntl_type_cd length=$2; 1992 attrib zip_cd length=$5; 1993 attrib fips_state_cd length=$2; 1994 attrib fips_cnty_cd length=$3; 1995 attrib cbsa_urbn_rrl_ind length=$1; 1996 attrib fy_end_mo_day_cd length=$4; 1997 attrib orthtc_prsthtc_srvc_cd length=$1; 1998 attrib mdcr_prtcptn_op_pt_spch_sw length=$1; 36 The SAS System 17:48 Tuesday, January 8, 2013 1999 attrib rltd_prvdr_num length=$10; 2000 attrib nrsng_srvc_cd length=$1; 2001 attrib nrsng_2_srvc_cd length=$1; 2002 attrib nrsng_3_srvc_cd length=$1; 2003 attrib ot_2_srvc_cd length=$1; 2004 attrib ot_3_srvc_cd length=$1; 2005 attrib orthtc_prsthtc_2_srvc_cd length=$1; 2006 attrib orthtc_prsthtc_3_srvc_cd length=$1; 2007 attrib pt_2_srvc_cd length=$1; 2008 attrib pt_3_srvc_cd length=$1; 2009 attrib physn_srvc_cd length=$1; 2010 attrib physn_2_srvc_cd length=$1; 2011 attrib physn_3_srvc_cd length=$1; 2012 attrib psychlgcl_srvc_cd length=$1; 2013 attrib psychlgcl_2_srvc_cd length=$1; 2014 attrib psychlgcl_3_srvc_cd length=$1; 2015 attrib rsprtry_care_2_srvc_cd length=$1; 2016 attrib rsprtry_care_3_srvc_cd length=$1; 2017 attrib scl_2_srvc_cd length=$1; 2018 attrib scl_3_srvc_cd length=$1; 2019 attrib spch_pthlgy_2_srvc_cd length=$1; 2020 attrib spch_pthlgy_3_srvc_cd length=$1; 2021 attrib rsprtry_care_srvc_cd length=$1; 2022 attrib rsprtry_care_srvc_desc length=$44; 2023 attrib scl_srvc_cd length=$1; 2024 attrib scl_srvc_desc length=$39; 2025 attrib spch_pthlgy_srvc_cd length=$1; 2026 attrib spch_pthlgy_srvc_desc length=$39; 2027 attrib prvdr_ctgry_sbtyp_cd length=$2; 2028 attrib prvdr_ctgry_cd length=$2; 2029 attrib chow_cnt length=3; 2030 attrib chow_dt length=5; 2031 attrib city_name length=$28; 2032 attrib acptbl_poc_sw length=$1; 2033 attrib cmplnc_stus_cd length=$1; 2034 attrib ssa_cnty_cd length=$3; 2035 attrib cross_rfrnc_prvdr_num length=$10; 2036 attrib crtfctn_dt length=5; 2037 attrib elgblty_sw length=$1; 2038 attrib fac_name length=$50; 2039 attrib intrmdry_carr_cd length=$5; 2040 attrib mdcd_vndr_num length=$15; 2041 attrib orgnl_prtcptn_dt length=5; 2042 attrib chow_prior_dt length=5; 2043 attrib intrmdry_carr_prior_cd length=$5; 2044 attrib prvdr_num length=$10; 2045 attrib rec_stus_cd length=$1; 2046 attrib rgn_cd length=$2; 2047 attrib skltn_rec_sw length=$1; 2048 attrib state_cd length=$2; 2049 attrib ssa_state_cd length=$2; 2050 attrib state_rgn_cd length=$3; 2051 attrib st_adr length=$50; 2052 attrib phne_num length=$10; 2053 attrib pgm_trmntn_cd length=$2; 2054 attrib trmntn_exprtn_dt length=5; 2055 attrib srvy_prpse_cd length=$1; 2056 attrib gnrl_cntl_type_cd length=$2; 37 The SAS System 17:48 Tuesday, January 8, 2013 2057 attrib zip_cd length=$5; 2058 attrib fips_state_cd length=$2; 2059 attrib fips_cnty_cd length=$3; 2060 attrib cbsa_urbn_rrl_ind length=$1; 2061 attrib acrdtn_type_cd length=$1; 2062 attrib lsc_wvr_sw length=$1; 2063 attrib asc_bgn_srvc_dt length=5; 2064 attrib vldtn_srvy_dt length=5; 2065 attrib fy_end_mo_day_cd length=$4; 2066 attrib oprtg_room_cnt length=3; 2067 attrib rltd_prvdr_num length=$10; 2068 attrib ekg_srvc_cd length=$1; 2069 attrib lab_srvc_cd length=$1; 2070 attrib othr_srvc_cd length=$1; 2071 attrib rdlgy_srvc_cd length=$1; 2072 attrib phrmcy_srvc_cd length=$1; 2073 attrib phrmcy_srvc_desc length=$39; 2074 attrib thorc_srgry_sw length=$1; 2075 attrib urlgy_srgry_sw length=$1; 2076 attrib crdvsclr_srgry_sw length=$1; 2077 attrib ft_srgry_sw length=$1; 2078 attrib nrlgcl_srgry_sw length=$1; 2079 attrib ob_gyn_srgry_sw length=$1; 2080 attrib opthmlgy_srgry_sw length=$1; 2081 attrib oral_srgry_sw length=$1; 2082 attrib orthpdc_srgry_sw length=$1; 2083 attrib otlrynglgy_srgry_sw length=$1; 2084 attrib plstc_srgry_sw length=$1; 2085 attrib gnrl_srgry_sw length=$1; 2086 attrib prvdr_ctgry_sbtyp_cd length=$2; 2087 attrib prvdr_ctgry_cd length=$2; 2088 attrib chow_cnt length=3; 2089 attrib chow_dt length=5; 2090 attrib city_name length=$28; 2091 attrib acptbl_poc_sw length=$1; 2092 attrib cmplnc_stus_cd length=$1; 2093 attrib ssa_cnty_cd length=$3; 2094 attrib cross_rfrnc_prvdr_num length=$10; 2095 attrib crtfctn_dt length=5; 2096 attrib elgblty_sw length=$1; 2097 attrib fac_name length=$50; 2098 attrib intrmdry_carr_cd length=$5; 2099 attrib mdcd_vndr_num length=$15; 2100 attrib orgnl_prtcptn_dt length=5; 2101 attrib chow_prior_dt length=5; 2102 attrib intrmdry_carr_prior_cd length=$5; 2103 attrib prvdr_num length=$10; 2104 attrib rec_stus_cd length=$1; 2105 attrib rgn_cd length=$2; 2106 attrib skltn_rec_sw length=$1; 2107 attrib state_cd length=$2; 2108 attrib ssa_state_cd length=$2; 2109 attrib state_rgn_cd length=$3; 2110 attrib st_adr length=$50; 2111 attrib phne_num length=$10; 2112 attrib pgm_trmntn_cd length=$2; 2113 attrib trmntn_exprtn_dt length=5; 2114 attrib srvy_prpse_cd length=$1; 38 The SAS System 17:48 Tuesday, January 8, 2013 2115 attrib gnrl_cntl_type_cd length=$2; 2116 attrib zip_cd length=$5; 2117 attrib fips_state_cd length=$2; 2118 attrib fips_cnty_cd length=$3; 2119 attrib cbsa_urbn_rrl_ind length=$1; 2120 attrib acrdtn_type_cd length=$1; 2121 attrib acute_resp_care_cd length=$1; 2122 attrib lsc_wvr_sw length=$1; 2123 attrib cnslr_emplee_cnt length=5; 2124 attrib cnslr_vlntr_cnt length=5; 2125 attrib vldtn_srvy_dt length=5; 2126 attrib fy_end_mo_day_cd length=$4; 2127 attrib hh_aide_cnt length=5; 2128 attrib hh_aide_vlntr_cnt length=5; 2129 attrib hmmkr_emplee_cnt length=5; 2130 attrib hmmkr_vlntr_cnt length=5; 2131 attrib lpn_lvn_cnt length=5; 2132 attrib lpn_lvn_vlntr_cnt length=5; 2133 attrib mdcl_scl_workr_cnt length=5; 2134 attrib mdcl_scl_workr_vlntr_cnt length=5; 2135 attrib prsnel_othr_cnt length=5; 2136 attrib physn_cnt length=5; 2137 attrib physn_vlntr_cnt length=5; 2138 attrib rn_cnt length=5; 2139 attrib rn_vlntr_cnt length=5; 2140 attrib rltd_prvdr_num length=$10; 2141 attrib cnslng_srvc_cd length=$1; 2142 attrib hh_aide_srvc_cd length=$1; 2143 attrib hmmkr_srvc_cd length=$1; 2144 attrib mdcl_scl_srvc_cd length=$1; 2145 attrib mdcl_suply_srvc_cd length=$1; 2146 attrib nrsng_srvc_cd length=$1; 2147 attrib othr_srvc_cd length=$1; 2148 attrib physn_srvc_cd length=$1; 2149 attrib shrt_term_ip_srvc_cd length=$1; 2150 attrib ot_srvc_cd length=$1; 2151 attrib ot_srvc_desc length=$3; 2152 attrib pt_srvc_cd length=$1; 2153 attrib pt_srvc_desc length=$39; 2154 attrib spch_pthlgy_srvc_cd length=$1; 2155 attrib spch_pthlgy_srvc_desc length=$39; 2156 attrib emplee_cnt length=5; 2157 attrib gnrl_fac_type_cd length=$2; 2158 attrib vlntr_othr_cnt length=5; 2159 attrib vlntr_cnt length=5; 2160 attrib prvdr_ctgry_sbtyp_cd length=$2; 2161 attrib prvdr_ctgry_cd length=$2; 2162 attrib chow_cnt length=3; 2163 attrib chow_dt length=5; 2164 attrib city_name length=$28; 2165 attrib acptbl_poc_sw length=$1; 2166 attrib cmplnc_stus_cd length=$1; 2167 attrib ssa_cnty_cd length=$3; 2168 attrib cross_rfrnc_prvdr_num length=$10; 2169 attrib crtfctn_dt length=5; 2170 attrib elgblty_sw length=$1; 2171 attrib fac_name length=$50; 2172 attrib intrmdry_carr_cd length=$5; 39 The SAS System 17:48 Tuesday, January 8, 2013 2173 attrib mdcd_vndr_num length=$15; 2174 attrib orgnl_prtcptn_dt length=5; 2175 attrib chow_prior_dt length=5; 2176 attrib intrmdry_carr_prior_cd length=$5; 2177 attrib prvdr_num length=$10; 2178 attrib rec_stus_cd length=$1; 2179 attrib rgn_cd length=$2; 2180 attrib skltn_rec_sw length=$1; 2181 attrib state_cd length=$2; 2182 attrib ssa_state_cd length=$2; 2183 attrib state_rgn_cd length=$3; 2184 attrib st_adr length=$50; 2185 attrib phne_num length=$10; 2186 attrib pgm_trmntn_cd length=$2; 2187 attrib trmntn_exprtn_dt length=5; 2188 attrib srvy_prpse_cd length=$1; 2189 attrib gnrl_cntl_type_cd length=$2; 2190 attrib zip_cd length=$5; 2191 attrib fips_state_cd length=$2; 2192 attrib fips_cnty_cd length=$3; 2193 attrib cbsa_urbn_rrl_ind length=$1; 2194 attrib prvdr_ctgry_sbtyp_cd length=$2; 2195 attrib prvdr_ctgry_cd length=$2; 2196 attrib chow_cnt length=3; 2197 attrib chow_dt length=5; 2198 attrib city_name length=$28; 2199 attrib acptbl_poc_sw length=$1; 2200 attrib cmplnc_stus_cd length=$1; 2201 attrib ssa_cnty_cd length=$3; 2202 attrib cross_rfrnc_prvdr_num length=$10; 2203 attrib crtfctn_dt length=5; 2204 attrib elgblty_sw length=$1; 2205 attrib fac_name length=$50; 2206 attrib intrmdry_carr_cd length=$5; 2207 attrib mdcd_vndr_num length=$15; 2208 attrib orgnl_prtcptn_dt length=5; 2209 attrib chow_prior_dt length=5; 2210 attrib intrmdry_carr_prior_cd length=$5; 2211 attrib prvdr_num length=$10; 2212 attrib rec_stus_cd length=$1; 2213 attrib rgn_cd length=$2; 2214 attrib skltn_rec_sw length=$1; 2215 attrib state_cd length=$2; 2216 attrib ssa_state_cd length=$2; 2217 attrib state_rgn_cd length=$3; 2218 attrib st_adr length=$50; 2219 attrib phne_num length=$10; 2220 attrib pgm_trmntn_cd length=$2; 2221 attrib trmntn_exprtn_dt length=5; 2222 attrib srvy_prpse_cd length=$1; 2223 attrib gnrl_cntl_type_cd length=$2; 2224 attrib zip_cd length=$5; 2225 attrib fips_state_cd length=$2; 2226 attrib fips_cnty_cd length=$3; 2227 attrib cbsa_urbn_rrl_ind length=$1; 2228 attrib rltd_prvdr_num length=$10; 2229 attrib prvdr_ctgry_sbtyp_cd length=$2; 2230 attrib prvdr_ctgry_cd length=$2; 40 The SAS System 17:48 Tuesday, January 8, 2013 2231 attrib chow_cnt length=3; 2232 attrib chow_dt length=5; 2233 attrib city_name length=$28; 2234 attrib acptbl_poc_sw length=$1; 2235 attrib cmplnc_stus_cd length=$1; 2236 attrib ssa_cnty_cd length=$3; 2237 attrib cross_rfrnc_prvdr_num length=$10; 2238 attrib crtfctn_dt length=5; 2239 attrib elgblty_sw length=$1; 2240 attrib fac_name length=$50; 2241 attrib intrmdry_carr_cd length=$5; 2242 attrib mdcd_vndr_num length=$15; 2243 attrib orgnl_prtcptn_dt length=5; 2244 attrib chow_prior_dt length=5; 2245 attrib intrmdry_carr_prior_cd length=$5; 2246 attrib prvdr_num length=$10; 2247 attrib rec_stus_cd length=$1; 2248 attrib rgn_cd length=$2; 2249 attrib skltn_rec_sw length=$1; 2250 attrib state_cd length=$2; 2251 attrib ssa_state_cd length=$2; 2252 attrib state_rgn_cd length=$3; 2253 attrib st_adr length=$50; 2254 attrib phne_num length=$10; 2255 attrib pgm_trmntn_cd length=$2; 2256 attrib trmntn_exprtn_dt length=5; 2257 attrib srvy_prpse_cd length=$1; 2258 attrib gnrl_cntl_type_cd length=$2; 2259 attrib zip_cd length=$5; 2260 attrib fips_state_cd length=$2; 2261 attrib fips_cnty_cd length=$3; 2262 attrib cbsa_urbn_rrl_ind length=$1; 2263 attrib rltd_prvdr_num length=$10; 2264 attrib prvdr_ctgry_sbtyp_cd length=$2; 2265 attrib prvdr_ctgry_cd length=$2; 2266 attrib chow_cnt length=3; 2267 attrib chow_dt length=5; 2268 attrib city_name length=$28; 2269 attrib acptbl_poc_sw length=$1; 2270 attrib cmplnc_stus_cd length=$1; 2271 attrib ssa_cnty_cd length=$3; 2272 attrib cross_rfrnc_prvdr_num length=$10; 2273 attrib crtfctn_dt length=5; 2274 attrib elgblty_sw length=$1; 2275 attrib fac_name length=$50; 2276 attrib intrmdry_carr_cd length=$5; 2277 attrib mdcd_vndr_num length=$15; 2278 attrib orgnl_prtcptn_dt length=5; 2279 attrib chow_prior_dt length=5; 2280 attrib intrmdry_carr_prior_cd length=$5; 2281 attrib prvdr_num length=$10; 2282 attrib rec_stus_cd length=$1; 2283 attrib rgn_cd length=$2; 2284 attrib skltn_rec_sw length=$1; 2285 attrib state_cd length=$2; 2286 attrib ssa_state_cd length=$2; 2287 attrib state_rgn_cd length=$3; 2288 attrib st_adr length=$50; 41 The SAS System 17:48 Tuesday, January 8, 2013 2289 attrib phne_num length=$10; 2290 attrib pgm_trmntn_cd length=$2; 2291 attrib trmntn_exprtn_dt length=5; 2292 attrib srvy_prpse_cd length=$1; 2293 attrib gnrl_cntl_type_cd length=$2; 2294 attrib zip_cd length=$5; 2295 attrib fips_state_cd length=$2; 2296 attrib fips_cnty_cd length=$3; 2297 attrib cbsa_urbn_rrl_ind length=$1; 2298 attrib fed_fundd_fqhc_sw length=$1; 2299 attrib fqhc_aprvd_rhc_sw length=$1; 2300 attrib rltd_prvdr_num length=$10; 2301 2302 ***************************************************************; 2303 *** ; 2304 *** SAS LABEL Statement Follows ; 2305 *** ; 2306 ***************************************************************; 2307 2308 LABEL 2309 2310 PRVDR_CTGRY_SBTYP_CD = 'Provider Category Subtype Code' 2311 PRVDR_CTGRY_CD = 'Provider Category Code' 2312 CHOW_CNT = 'Change of Ownership Count' 2313 CHOW_DT = 'Change of Ownership Date' 2314 CITY_NAME = 'City' 2315 ACPTBL_POC_SW = 'Compliance: Plan of Correction' 2316 CMPLNC_STUS_CD = 'Compliance: Status' 2317 SSA_CNTY_CD = 'SSA County Code' 2318 CROSS_REF_PROVIDER_NUMBER = 'Cross Ref Provider Number' 2319 CRTFCTN_DT = 'Certification Date' 2320 ELGBLTY_SW = 'Eligibility Switch' 2321 FAC_NAME = 'Facility Name' 2322 INTRMDRY_CARR_CD = 'Intermediary Carrier Code' 2323 MDCD_VNDR_NUM = 'Medicare or Medicaid Vendor Number' 2324 ORGNL_PRTCPTN_DT = 'Participation Date' 2325 CHOW_PRIOR_DT = 'Prior Change of Ownership Date' 2326 INTRMDRY_CARR_PRIOR_CD = 'Intermediary Carrier Prior Code' 2327 PRVDR_NUM = 'Provider Number' 2328 REC_STUS_CD = 'Record Status Code' 2329 RGN_CD = 'Region Code' 2330 SKLTN_REC_SW = 'Skeleton Record Switch' 2331 STATE_CD = 'State Abbreviation' 2332 SSA_STATE_CD = 'SSA State Code' 2333 STATE_RGN_CD = 'State Region Code' 2334 ST_ADR = 'Street Address' 2335 PHNE_NUM = 'Telephone Number' 2336 PGM_TRMNTN_CD = 'Termination Code 1' 2337 TRMNTN_EXPRTN_DT = 'Termination Date / Expiration Date 1' 2338 SRVY_PRPSE_CD = 'Type of Action' 2339 GNRL_CNTL_TYPE_CD = 'General Type of Control Code' 2340 ZIP_CD = 'ZIP Code' 2341 FIPS_STATE_CD = 'FIPS State Code' 2342 FIPS_CNTY_CD = 'FIPS County Code' 2343 CBSA_URBN_RRL_IND = 'CBSA Urban Rural Indicator' 2344 ACRDTN_EFCTV_DT = 'Accreditation Effective Date' 2345 ACRDTN_EXPRTN_DT = 'Accreditation Expiration Date' 2346 ACRDTN_TYPE_CD = 'Accreditation Type Code' 42 The SAS System 17:48 Tuesday, January 8, 2013 2347 ACTVTY_PROFNL_CNTRCT_CNT = 'Activity Professional Contract Count' 2348 ACTVTY_PROFNL_FLTM_CNT = 'Activity Professional Full-Time Count' 2349 ACTVTY_PROFNL_PRTM_CNT = 'Activity Professional Part-Time Count' 2350 ACTVTY_STF_OTHR_CNTRCT_CNT = 'Activity Staff Other Contract Count' 2351 ACTVTY_STF_OTHR_FLTM_CNT = 'Activity Staff Other Full-Time Count' 2352 ACTVTY_STF_OTHR_PRTM_CNT = 'Activity Staff Other Part-Time Count' 2353 ACUTE_RESP_CARE_CD = 'Acute/Respite Care Code' 2354 PROFNL_ADMIN_CNTRCT_CNT = 'Administrator - Contract' 2355 PROFNL_ADMIN_FLTM_CNT = 'Administrator - Full-Time' 2356 PROFNL_ADMIN_PRTM_CNT = 'Administrator - Part-Time' 2357 ADMSN_SUSPNSN_DT = 'Admission Suspension Date' 2358 ADMSN_SUSPNSN_PRIOR_DT = 'Admission Suspension Prior Date' 2359 HHA_TRNG_PGM_CD = 'Aide Training / Competency Programs' 2360 MR_BED_CNT = 'Beds - ICF / MR' 2361 MDCR_SNF_BED_CNT = 'Beds - Medicare SNF' 2362 MDCD_SNF_BED_CNT = 'Beds - Nursing Facility' 2363 MDCR_MDCD_SNF_BED_CNT = 'Beds - SNF / NF' 2364 CRTFD_BED_CNT = 'Beds - Total Certified' 2365 BED_CNT = 'Beds-Total' 2366 BRNCH_OPRTN_SW = 'Branch Operation Switch' 2367 BRNCH_CNT = 'Branches' 2368 CLIA_ID_NUMBER_1 = 'CLIA ID Number 1' 2369 CLIA_ID_NUMBER_2 = 'CLIA ID Number 2' 2370 CLIA_ID_NUMBER_3 = 'CLIA ID Number 3' 2371 CLIA_ID_NUMBER_4 = 'CLIA ID Number 4' 2372 CLIA_ID_NUMBER_5 = 'CLIA ID Number 5' 2373 NRS_AIDE_CNTRCT_CNT = 'Certification Nurse Aides - Contract' 2374 NRS_AIDE_FLTM_CNT = 'Certification Nurse Aides - Full-Time' 2375 NRS_AIDE_PRTM_CNT = 'Certification Nurse Aides - Part-Time' 2376 CRNA_CNT = 'Certified Registered Nurse Anesthetists (CRNA)' 2377 CHOW_SW = 'Change of Ownership Switch' 2378 RN_24_HR_WVR_SW = 'Compliance: 24 Hour Registered Nurse' 2379 RN_7_DAY_WVR_SW = 'Compliance: 7 Day Registered Nurse' 2380 BED_PER_ROOM_WVR_SW = 'Compliance: Beds Per Room Waiver' 2381 LSC_WVR_SW = 'Compliance: Life Safety Code' 2382 ROOM_SIZE_WVR_SW = 'Compliance: Patient Room Size' 2383 SCOPE_OF_SRVC_WVR_SW = 'Compliance: Scope of Service' 2384 TCHNCL_PRSNEL_WVR_SW = 'Compliance: Technical Personnel Waiver' 2385 CNSLR_EMPLEE_CNT = 'Counselors - Staff' 2386 CNSLR_VLNTR_CNT = 'Counselors - Volunteer' 2387 SRVY_EVER_ACRDTD_SW = 'Current Survey Ever Accredited' 2388 SRVY_EVER_NACRDTD_SW = 'Current Survey Ever Non-Accredited' 2389 SRVY_EVER_SB_SW = 'Current Survey Ever Swing Bed' 2390 ASC_BGN_SRVC_DT = 'Date Center Began Providing Services' 2391 VLDTN_SRVY_DT = 'Date of Validation Survey' 2392 DNTST_CNTRCT_CNT = 'Dentists - Contract' 2393 DNTST_FLTM_CNT = 'Dentists - Full-Time' 2394 DNTST_PRTM_CNT = 'Dentists - Part-Time' 2395 DIETN_CNT = 'Dietitians' 2396 DIETN_CNTRCT_CNT = 'Dietitians - Contract' 2397 DIETN_FLTM_CNT = 'Dietitians - Full-Time' 2398 DIETN_PRTM_CNT = 'Dietitians - Part-Time' 2399 DRCT_CARE_PRSNEL_CNT = 'Direct Care Personnel' 2400 DRCTR_QUALN_CD = 'Director Qualifications' 2401 ESRD_NTWRK_NUM = 'ESRD Network Number' 2402 EXPRMT_RSRCH_CNDCTD_SW = 'Experimental Research Conducted' 2403 FQHC_APPROVED_RHC_PROVIDER_NUM = 'FQHC Approved RHC Provider Num' 2404 FAX_PHNE_NUM = 'Fax Phone Number' 43 The SAS System 17:48 Tuesday, January 8, 2013 2405 FED_PGM_SPRT_SW = 'Federal Program Support' 2406 FED_FUNDD_FQHC_SW = 'Federally Funded Health Center' 2407 FY_END_MO_DAY_CD = 'Fiscal Year Ending Date' 2408 FOOD_SRVC_CNTRCT_CNT = 'Food Service - Contract' 2409 FOOD_SRVC_FLTM_CNT = 'Food Service - Full-Time' 2410 FOOD_SRVC_PRTM_CNT = 'Food Service - Part-Time' 2411 FQHC_APRVD_RHC_SW = 'FQHC Approved Rural Health Clinic' 2412 HHA_QLFYD_OPT_SPCH_SW = 'HHA Qualified For Outpatient Physical Therapy' 2413 HH_AIDE_CNT = 'Home Health Aides' 2414 HH_AIDE_VLNTR_CNT = 'Home Health Aides - Volunteer' 2415 HMMKR_EMPLEE_CNT = 'Homemakers - Staff' 2416 HMMKR_VLNTR_CNT = 'Homemakers - Volunteer' 2417 MDCR_HOSPC_SW = 'Hospice Switch' 2418 HOSP_BSD_SW = 'Hospital Based Switch' 2419 HSEKPNG_CNTRCT_CNT = 'Housekeeping - Contract' 2420 HSEKPNG_FLTM_CNT = 'Housekeeping - Full-Time' 2421 HSEKPNG_PRTM_CNT = 'Housekeeping - Part-Time' 2422 LTC_CROSS_REF_PROVIDER_NUMBER = 'LTC Cross Ref Provider Number' 2423 LPN_LVN_CNT = 'Licensed Practical/Vocational Nurses' 2424 LPN_LVN_CNTRCT_CNT = 'LPN/LVN - Contract' 2425 LPN_LVN_FLTM_CNT = 'LPN/LVN - Full-Time' 2426 LPN_LVN_PRTM_CNT = 'LPN/LVN - Part-Time' 2427 LPN_LVN_VLNTR_CNT = 'LPNS/LVNS Volunteer' 2428 AGRMT_BGN_DT = 'LTC Agreement Beginning Date' 2429 AGRMT_END_DT = 'LTC Agreement Ending Date' 2430 AGRMT_EXTNSN_DT = 'LTC Agreement Extension Date' 2431 MEDICARE_HOSPICE_PROVIDER_NUM = 'Medicare Hospice Provider Num' 2432 MEDICARE_MEDICAID_PRVDR_NUMBER = 'Medicare Medicaid Prvdr Number' 2433 MDCL_DRCTR_CNTRCT_CNT = 'Medical Director - Contract' 2434 MDCL_DRCTR_FLTM_CNT = 'Medical Director - Full-Time' 2435 MDCL_DRCTR_PRTM_CNT = 'Medical Director - Part-Time' 2436 MDCL_SCHL_AFLTN_CD = 'Medical School Affiliation' 2437 MDCL_SCL_WORKR_CNT = 'Medical Social Workers' 2438 MDCL_SCL_WORKR_VLNTR_CNT = 'Medical Social Workers - Volunteer' 2439 MDCL_TCHNLGST_CNT = 'Medical Technologist Count' 2440 MDCD_MDCR_PRTCPTG_PRVDR_SW = 'Medicare or Medicaid Participating Provider Switch' 2441 MDCTN_AIDE_CNTRCT_CNT = 'Medication Aides / Techs - Contract' 2442 MDCTN_AIDE_FLTM_CNT = 'Medication Aides / Techs - Full-Time' 2443 MDCTN_AIDE_PRTM_CNT = 'Medication Aides / Techs - Part-Time' 2444 MEET_1861_SW = 'Meets 1861 Definition' 2445 MENTL_HLTH_SRVC_CNTRCT_CNT = 'Mental Health Services - Contract' 2446 MENTL_HLTH_SRVC_FLTM_CNT = 'Mental Health Services - Full-Time' 2447 MENTL_HLTH_SRVC_PRTM_CNT = 'Mental Health Services - Part-Time' 2448 MLT_FAC_ORG_NAME = 'Multi-Facility Organization Name' 2449 MLT_OWND_FAC_ORG_SW = 'Multi-Facility Organization Owned' 2450 NUCLR_MDCN_TCHNCN_CNT = 'Nuclear Medicine Technician Count' 2451 SHIFT_4_TUE_PTNT_CNT = 'Number of Patients Tuesday 4th Shift' 2452 NAT_CNTRCT_CNT = 'Nurse Aides in Training - Contract' 2453 NAT_FLTM_CNT = 'Nurse Aides in Training - Full-Time' 2454 NAT_PRTM_CNT = 'Nurse Aides in Training - Part-Time' 2455 NRS_PRCTNR_CNT = 'Nurse Practitioners' 2456 NRS_ADMINV_CNTRCT_CNT = 'Nurses With Administrative Duties - Contract' 2457 NRS_ADMINV_FLTM_CNT = 'Nurses With Administrative Duties - Full-Time' 2458 NRS_ADMINV_PRTM_CNT = 'Nurses With Administrative Duties - Part-Time' 2459 OCPTNL_THRPST_CNTRCT_CNT = 'Occupational Therapist - Contract' 2460 OCPTNL_THRPST_FLTM_CNT = 'Occupational Therapist - Full-Time' 2461 OCPTNL_THRPST_PRTM_CNT = 'Occupational Therapist - Part-Time' 2462 OCPTNL_THRPST_CNT = 'Occupational Therapists' 44 The SAS System 17:48 Tuesday, January 8, 2013 2463 OT_AIDE_CNTRCT_CNT = 'Occupational Therapy Aide - Contract' 2464 OT_AIDE_FLTM_CNT = 'Occupational Therapy Aide - Full-Time' 2465 OT_AIDE_PRTM_CNT = 'Occupational Therapy Aide - Part-Time' 2466 OT_ASTNT_AIDE_CNTRCT_CNT = 'Occupational Therapy Assistant - Contract' 2467 OT_ASTNT_AIDE_FLTM_CNT = 'Occupational Therapy Assistant - Full-Time' 2468 OT_ASTNT_AIDE_PRTM_CNT = 'Occupational Therapy Assistant - Part-Time' 2469 OPRTG_ROOM_CNT = 'Operating Rooms' 2470 ORGNZ_FMLY_MBR_GRP_SW = 'Organized Family Group' 2471 ORGNZ_RSDNT_GRP_SW = 'Organized Resident Group' 2472 ORTHTC_PRSTHTC_SRVC_CD = 'Orthotic/Prosthetic Service Code' 2473 STF_OTHR_CNTRCT_CNT = 'Other - Contract' 2474 STF_OTHR_FLTM_CNT = 'Other - Full-Time' 2475 STF_OTHR_PRTM_CNT = 'Other - Part-Time' 2476 PRSNEL_OTHR_CNT = 'Other Personnel' 2477 PHYSN_OTHR_CNTRCT_CNT = 'Other Physician Contract' 2478 PHYSN_OTHR_FLTM_CNT = 'Other Physician Full-Time' 2479 PHYSN_OTHR_PRTM_CNT = 'Other Physician Part-Time' 2480 SCL_SRVC_OTHR_STF_CNTRCT_CNT = 'Other Social Service Staff - Contract' 2481 SCL_SRVC_OTHR_STF_FLTM_CNT = 'Other Social Service Staff - Full-Time' 2482 SCL_SRVC_OTHR_STF_PRTM_CNT = 'Other Social Service Staff - Part-Time' 2483 PARENT_PROVIDER_NUMBER = 'Parent Provider Number' 2484 MDCR_PRTCPTN_OP_PT_SPCH_SW = 'Participation Medicare OPT / SP' 2485 PHRMCST_CNTRCT_CNT = 'Pharmacists - Contract' 2486 PHRMCST_FLTM_CNT = 'Pharmacists - Full-Time' 2487 PHRMCST_PRTM_CNT = 'Pharmacists - Part-Time' 2488 PHYS_THRPST_ARNGMT_CNT = 'Physical Therapist - Arrangement' 2489 PHYS_THRPST_CNT = 'Physical Therapists' 2490 PHYS_THRPST_CNTRCT_CNT = 'Physical Therapists - Contract' 2491 PHYS_THRPST_FLTM_CNT = 'Physical Therapists - Full-Time' 2492 PHYS_THRPST_PRTM_CNT = 'Physical Therapists - Part-Time' 2493 PHYS_THRPST_STF_CNT = 'Physical Therapists on Staff' 2494 PT_AIDE_CNTRCT_CNT = 'Physical Therapy Aide - Contract' 2495 PT_AIDE_FLTM_CNT = 'Physical Therapy Aide - Full-Time' 2496 PT_AIDE_PRTM_CNT = 'Physical Therapy Aide - Part-Time' 2497 PT_ASTNT_CNTRCT_CNT = 'Physical Therapy Assistant - Contract' 2498 PT_ASTNT_FLTM_CNT = 'Physical Therapy Assistant - Full-Time' 2499 PT_ASTNT_PRTM_CNT = 'Physical Therapy Assistant - Part-Time' 2500 PHYSN_ASTNT_CNT = 'Physician Assistants (PA)' 2501 PHYSN_EXT_CNTRCT_CNT = 'Physician Extender - Contract' 2502 PHYSN_EXT_FLTM_CNT = 'Physician Extender Full-Time Count (F37B)' 2503 PHYSN_EXT_PRTM_CNT = 'Physician Extender Part-Time Count (F37C)' 2504 PHYSN_EXT_SRVC_OFSITE_RSDNT_SW = 'Physician Extender Service Offsite To Resident Switch (F37A3)' 2505 PHYSN_EXT_SRVC_ONST_NRSDNT_SW = 'Physician Extender Service Onsite To Non-Resident Switch (F37A2)' 2506 PHYSN_EXT_SRVC_ONST_RSDNT_SW = 'Physician Extender Service Onsite To Resident Switch (F37A1)' 2507 PHYSN_CNT = 'Physicians' 2508 RSDNT_PHYSN_CNT = 'Physicians (Residents)' 2509 PHYSN_VLNTR_CNT = 'Physicians - Volunteer' 2510 PDTRST_CNTRCT_CNT = 'Podiatrists - Contract' 2511 PDTRST_FLTM_CNT = 'Podiatrists - Full-Time' 2512 PDTRST_PRTM_CNT = 'Podiatrists - Part-Time' 2513 AGRMT_END_PRIOR_DT = 'Prior LTC Agreement Ending Date' 2514 AGRMT_EXTNSN_PRIOR_DT = 'Prior LTC Agreement Extension Date' 2515 RSCND_SUSPNSN_PRIOR_DT = 'Prior Rescind Suspension Date' 2516 PGM_PRTCPTN_CD = 'Program Participation' 2517 PRVDR_BSD_FAC_SW = 'Provider Based Facility' 2518 PSYCH_UNIT_BED_CNT = 'Psychiatric Unit Bed Count' 2519 PSYCH_UNIT_EFCTV_DT = 'Psychiatric Unit Effective Date' 2520 PSYCH_UNIT_SW = 'Psychiatric Unit Switch' 45 The SAS System 17:48 Tuesday, January 8, 2013 2521 PSYCH_UNIT_TRMNTN_CD = 'Psychiatric Unit Termination Code' 2522 PSYCH_UNIT_TRMNTN_DT = 'Psychiatric Unit Termination Date' 2523 PSYCHLGST_CNT = 'Psychologist Count' 2524 RDLGY_TCHNCN_CNT = 'Radiology Technician Count' 2525 OVRRD_BED_CNT_SW = 'Regional Override # 1 (Number Beds)' 2526 OVRRD_STFG_SW = 'Regional Override # 2 (Staffing)' 2527 OVRRD_NRS_BED_SW = 'Regional Override # 3 (Nurse - Bed)' 2528 RN_CNTRCT_CNT = 'Registered Nurse - Contract' 2529 RN_FLTM_CNT = 'Registered Nurse - Full-Time' 2530 RN_PRTM_CNT = 'Registered Nurse - Part-Time' 2531 RN_CNT = 'Registered Nurses' 2532 RN_VLNTR_CNT = 'Registered Nurses - Volunteer' 2533 REG_PHRMCST_CNT = 'Registered Pharmacists' 2534 REHAB_UNIT_BED_CNT = 'Rehabilitation Unit Bed Count' 2535 REHAB_UNIT_EFCTV_DT = 'Rehabilitation Unit Effective Date' 2536 REHAB_UNIT_SW = 'Rehabilitation Unit Switch' 2537 REHAB_UNIT_TRMNTN_CD = 'Rehabilitation Unit Termination Code' 2538 REHAB_UNIT_TRMNTN_DT = 'Rehabilitation Unit Termination Date' 2539 RELATED_PROVIDER_NUMBER = 'Related Provider Number' 2540 RSCND_SUSPNSN_DT = 'Rescind Suspension Date' 2541 RSDNT_PGM_ADA_APRVD_SW = 'Resident Program Approved by ADA' 2542 RSDNT_PGM_AMA_APRVD_SW = 'Resident Program Approved by AMA' 2543 RSDNT_PGM_AOA_APRVD_SW = 'Resident Program Approved by AOA' 2544 RSDNT_PGM_OTHR_APRVD_SW = 'Resident Program Approved by Other' 2545 INHLTN_THRPST_CNT = 'Respiratory Therapists' 2546 RN_DRCTR_CNTRCT_CNT = 'RN Director of Nursing - Contract' 2547 RN_DRCTR_FLTM_CNT = 'RN Director of Nursing - Full-Time' 2548 RN_DRCTR_PRTM_CNT = 'RN Director of Nursing - Part-Time' 2549 ACTVTY_OFSITE_RSDNT_SW = 'Service: Activities-Offsite-Residents Switch' 2550 ACTVTY_ONST_NRSDNT_SW = 'Service: Activities-Onsite-Nonresidents Switch' 2551 ACTVTY_ONST_RSDNT_SW = 'Service: Activities-Onsite-Residents Switch' 2552 APLNC_EQUIP_SRVC_CD = 'Service: Appliance and Equipment' 2553 BLOOD_SRVC_OFSITE_RSDNT_SW = 'Service: Blood Administered-Offsite-Resident' 2554 BLOOD_SRVC_ONST_NRSDNT_SW = 'Service: Blood Administered-Onsite-Nonresident' 2555 BLOOD_SRVC_ONST_RSDNT_SW = 'Service: Blood Administered-Onsite-Resident' 2556 CL_SRVC_OFSITE_RSDNT_SW = 'Service: Clinical Laboratory-Offsite-Resident' 2557 CL_SRVC_ONST_NRSDNT_SW = 'Service: Clinical Laboratory-Onsite-Nonresident' 2558 CL_SRVC_ONST_RSDNT_SW = 'Service: Clinical Laboratory-Onsite-Resident' 2559 CNSLNG_SRVC_CD = 'Service: Counseling' 2560 DNTL_SRVC_ONST_NRSDNT_SW = 'Service: Dental On-Site Nonresidents' 2561 DNTL_SRVC_OFSITE_RSDNT_SW = 'Service: Dental Off-Site Residents' 2562 DNTL_SRVC_ONST_RSDNT_SW = 'Service: Dental On-Site Residents' 2563 DTRY_ONST_NRSDNT_SW = 'Service: Dietary On-Site Nonresidents' 2564 DTRY_OFSITE_RSDNT_SW = 'Service: Dietary Off-Site Residents' 2565 DTRY_ONST_RSDNT_SW = 'Service: Dietary On-Site Residents' 2566 EKG_SRVC_CD = 'Service: EKG' 2567 HH_AIDE_SRVC_CD = 'Service: Home Health Aide' 2568 HMMKR_SRVC_CD = 'Service: Homemaker' 2569 HSEKPNG_SRVC_ONST_NRSDNT_SW = 'Service: Housekeeping On-Site to Nonresidents' 2570 HSEKPNG_SRVC_OFSITE_RSDNT_SW = 'Service: Housekeeping Off-Site to Residents' 2571 HSEKPNG_SRVC_ONST_RSDNT_SW = 'Service: Housekeeping On-Site to Residents' 2572 INTRN_RSDNT_SRVC_CD = 'Service: Interns and Residents' 2573 LAB_SRVC_CD = 'Service: Laboratory' 2574 MDCL_SCL_SRVC_CD = 'Service: Medical Social' 2575 MDCL_SUPLY_SRVC_CD = 'Service: Medical Supplies' 2576 MENTL_HLTH_OFSITE_RSDNT_SW = 'Service: Mental Health Off-Site to Residents' 2577 MENTL_HLTH_ONST_RSDNT_SW = 'Service: Mental Health On-Site to Residents' 2578 MENTL_HLTH_ONST_NRSDNT_SW = 'Service: Mental Health On-site to Nonresidents' 46 The SAS System 17:48 Tuesday, January 8, 2013 2579 NRSNG_SRVC_CD = 'Service: Nursing' 2580 NRSNG_SRVC_ONST_NRSDNT_SW = 'Service: Nursing On-Site to Nonresidents' 2581 NRSNG_2_SRVC_CD = 'Service: Nursing #2' 2582 NRSNG_3_SRVC_CD = 'Service: Nursing #3' 2583 NRSNG_SRVC_OFSITE_RSDNT_SW = 'Service: Nursing Off-Site to Residents' 2584 NRSNG_SRVC_ONST_RSDNT_SW = 'Service: Nursing On-Site to Residents' 2585 NTRTNL_GDNC_SRVC_CD = 'Service: Nutritional Guidance' 2586 OT_SRVC_ONST_NRSDNT_SW = 'Service: Occupational Therapy On-Site to Nonresidents' 2587 OT_2_SRVC_CD = 'Service: Occupational Therapy #2' 2588 OT_3_SRVC_CD = 'Service: Occupational Therapy #3' 2589 OT_SRVC_OFSITE_RSDNT_SW = 'Service: Occupational Therapy Off-Site to Residents' 2590 OT_SRVC_ONST_RSDNT_SW = 'Service: Occupational Therapy On-Site to Residents' 2591 ORTHTC_PRSTHTC_2_SRVC_CD = 'Service: Orthotic Prosthetic #2' 2592 ORTHTC_PRSTHTC_3_SRVC_CD = 'Service: Orthotic/Prosthetic #3' 2593 OTHR_SRVC_CD = 'Service: Other' 2594 ACTVTY_OTHR_OFSITE_RSDNT_SW = 'Service: Other Activities-Offsite-Residents Switch' 2595 ACTVTY_OTHR_ONST_NRSDNT_SW = 'Service: Other Activities-Onsite-Nonresidents Switch' 2596 ACTVTY_OTHR_ONST_RSDNT_SW = 'Service: Other Activities-Onsite-Residents Switch' 2597 SCL_SRVC_OTHR_OFSITE_RSDNT_SW = 'Service: Other Off-Site to Residents' 2598 SCL_SRVC_OTHR_ONST_NRSDNT_SW = 'Service: Other On-Site to Nonresidents' 2599 SCL_SRVC_OTHR_ONST_RSDNT_SW = 'Service: Other On-Site to Residents' 2600 PHRMCY_SRVC_OFSITE_RSDNT_SW = 'Service: Pharmacy Off-Site to Residents' 2601 PHRMCY_SRVC_ONST_NRSDNT_SW = 'Service: Pharmacy On-Site to Nonresidents' 2602 PHRMCY_SRVC_ONST_RSDNT_SW = 'Service: Pharmacy On-Site to Residents' 2603 PT_2_SRVC_CD = 'Service: Physical Therapy #2' 2604 PT_3_SRVC_CD = 'Service: Physical Therapy #3' 2605 PT_OFSITE_RSDNT_SW = 'Service: Physical Therapy Off-Site to Residents' 2606 PT_ONST_NRSDNT_SW = 'Service: Physical Therapy On-Site to Nonresidents' 2607 PT_ONST_RSDNT_SW = 'Service: Physical Therapy On-Site to Residents' 2608 PHYSN_SRVC_CD = 'Service: Physician' 2609 PHYSN_2_SRVC_CD = 'Service: Physician #2' 2610 PHYSN_3_SRVC_CD = 'Service: Physician #3' 2611 PHYSN_SRVC_OFSITE_RSDNT_SW = 'Service: Physician Off-Site to Residents' 2612 PHYSN_SRVC_ONST_NRSDNT_SW = 'Service: Physician On-Site to Nonresidents' 2613 PHYSN_SRVC_ONST_RSDNT_SW = 'Service: Physician On-Site to Residents' 2614 PDTRY_SRVC_OFSITE_RSDNT_SW = 'Service: Podiatry Off-Site to Residents' 2615 PDTRY_SRVC_ONST_NRSDNT_SW = 'Service: Podiatry On-Site to Nonresidents' 2616 PDTRY_SRVC_ONST_RSDNT_SW = 'Service: Podiatry On-Site to Residents' 2617 PSYCHLGCL_SRVC_CD = 'Service: Psychological' 2618 PSYCHLGCL_2_SRVC_CD = 'Service: Psychological #2' 2619 PSYCHLGCL_3_SRVC_CD = 'Service: Psychological #3' 2620 RDLGY_SRVC_CD = 'Service: Radiology' 2621 RSPRTRY_CARE_2_SRVC_CD = 'Service: Respiratory Care #2' 2622 RSPRTRY_CARE_3_SRVC_CD = 'Service: Respiratory Care #3' 2623 SHRT_TERM_IP_SRVC_CD = 'Service: Short Term Inpatient' 2624 SCL_2_SRVC_CD = 'Service: Social #2' 2625 SCL_3_SRVC_CD = 'Service: Social #3' 2626 SCL_WORK_SRVC_OFSITE_RSDNT_SW = 'Service: Social Work Off-Site to Residents' 2627 SCL_WORK_SRVC_ONST_NRSDNT_SW = 'Service: Social Work On-Site to Nonresidents' 2628 SCL_WORK_SRVC_ONST_RSDNT_SW = 'Service: Social Work On-Site to Residents' 2629 SPCH_PTHLGY_2_SRVC_CD = 'Service: Speech Pathology #2' 2630 SPCH_PTHLGY_3_SRVC_CD = 'Service: Speech Pathology #3' 2631 SPCH_PTHLGY_OFSITE_RSDNT_SW = 'Service: Speech Pathology Off-Site to Residents' 2632 SPCH_PTHLGY_ONST_NRSDNT_SW = 'Service: Speech Pathology On-Site to Nonresidents' 2633 SPCH_PTHLGY_ONST_RSDNT_SW = 'Service: Speech Pathology On-Site to Residents' 2634 SPCH_THRPY_SRVC_CD = 'Service: Speech Therapy' 2635 THRPTC_RCRTNL_OFSITE_RSDNT_SW = 'Service: Therapeutic Recreational Specialty Off-Site to Residents' 2636 THRPTC_RCRTNL_ONST_NRSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Non Residents' 47 The SAS System 17:48 Tuesday, January 8, 2013 2637 THRPTC_RCRTNL_ONST_RSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Residents' 2638 VCTNL_GDNC_SRVC_CD = 'Service: Vocational Guidance' 2639 VCTNL_SRVC_OFSITE_RSDNT_SW = 'Service: Vocational Off-Site to Residents' 2640 VCTNL_SRVC_ONST_NRSDNT_SW = 'Service: Vocational On-Site to Nonresidents' 2641 VCTNL_SRVC_ONST_RSDNT_SW = 'Service: Vocational On-Site to Residents' 2642 DGNSTC_XRAY_OFSITE_RSDNT_SW = 'Service: X-ray Off-Site Residents' 2643 DGNSTC_XRAY_ONST_NRSDNT_SW = 'Service: X-ray On-Site Nonresidents' 2644 DGNSTC_XRAY_ONST_RSDNT_SW = 'Service: X-ray On-Site Residents' 2645 OPEN_HRT_SRGRY_SRVC_CD = 'Services Provided: Cardiac - Thoracic Surgery' 2646 PSTOPRTV_RCVRY_SRVC_CD = 'Services Provided: Postoperative Recovery Room' 2647 ACUTE_RNL_DLYS_SRVC_CD = 'Services Provided: Acute Renal Dialysis' 2648 ACUTE_RNL_DLYS_SRVC_DESC = 'Services Provided: Acute Renal Dialysis Description' 2649 ALCHL_DRUG_SRVC_DESC = 'Services Provided: Alcohol and or Drug Description' 2650 ALCHL_DRUG_SRVC_CD = 'Services Provided: Alcohol and/or Drug' 2651 ANSTHSA_SRVC_CD = 'Services Provided: Anesthesia' 2652 ANSTHSA_SRVC_DESC = 'Services Provided: Anesthesia Description' 2653 AUDLGY_SRVC_CD = 'Services Provided: Audiology' 2654 AUDLGY_SRVC_DESC = 'Services Provided: Audiology Description' 2655 BURN_CARE_UNIT_SRVC_CD = 'Services Provided: Burn Care Unit' 2656 BURN_CARE_UNIT_SRVC_DESC = 'Services Provided: Burn Care Unit Description' 2657 OPEN_HRT_SRGRY_SRVC_DESC = 'Services Provided: Cardiac - Thoracic Surgery Description' 2658 CRDC_CTHTRZTN_LAB_SRVC_CD = 'Services Provided: Cardiac Catheterization Lab' 2659 CRDC_CTHTRZTN_LAB_SRVC_DESC = 'Services Provided: Cardiac Catheterization Lab Description' 2660 CARF_IP_REHAB_SRVC_CD = 'Services Provided: CARF Inpatient Rehabilitation Code' 2661 CARF_IP_REHAB_SRVC_DESC = 'Services Provided: CARF Inpatient Rehabilitation Description' 2662 CHMTHRPY_SRVC_CD = 'Services Provided: Chemotherapy' 2663 CHMTHRPY_SRVC_DESC = 'Services Provided: Chemotherapy Description' 2664 CHLD_ADLSCNT_PSYCH_SRVC_DESC = 'Services Provided: Child Adolescent Psychiatric Description' 2665 CHRPRCTIC_SRVC_CD = 'Services Provided: Chiropractic' 2666 CHRPRCTIC_SRVC_DESC = 'Services Provided: Chiropractic Description' 2667 CL_SRVC_CD = 'Services Provided: Clinical Laboratory' 2668 CL_SRVC_DESC = 'Services Provided: Clinical Laboratory Description' 2669 CT_SCAN_SRVC_CD = 'Services Provided: CT Scanner' 2670 CT_SCAN_SRVC_DESC = 'Services Provided: CT Scanner Description' 2671 DNTL_SRVC_CD = 'Services Provided: Dental' 2672 DNTL_SRVC_DESC = 'Services Provided: Dental Description' 2673 DGNSTC_RDLGY_SRVC_DESC = 'Services Provided: Diagnostic Radiology Description' 2674 DTRY_SRVC_CD = 'Services Provided: Dietary' 2675 DTRY_SRVC_DESC = 'Services Provided: Dietary Description' 2676 DCTD_ER_SRVC_DESC = 'Services Provided: Emergency Dept (Dedicated) Description' 2677 DCTD_ER_SRVC_CD = 'Services Provided: Emergency Dept(Dedicated)' 2678 XTRCRPRL_SHCK_LTHTRPTR_SRVC_CD = 'Services Provided: Extracorporeal Shock Wave' 2679 XTRCRPRL_SHCK_LTHTRPTR_SRVCDSC = 'Services Provided: Extracorporeal Shock Wave Description' 2680 GRNTLGCL_SPCLTY_SRVC_CD = 'Services Provided: Gerontological Specialty' 2681 GRNTLGCL_SPCLTY_SRVC_DESC = 'Services Provided: Gerontological Specialty Description' 2682 CRNRY_CARE_UNIT_SRVC_CD = 'Services Provided: ICU Cardiac (non-surgical)' 2683 CRNRY_CARE_UNIT_SRVC_DESC = 'Services Provided: ICU Cardiac (non-surgical) Description' 2684 ICU_SRVC_CD = 'Services Provided: ICU Medical/Surgical' 2685 ICU_SRVC_DESC = 'Services Provided: ICU Medical/Surgical Description' 2686 NEONTL_ICU_SRVC_CD = 'Services Provided: ICU Neonatal' 2687 PED_ICU_SRVC_CD = 'Services Provided: ICU Pediatric' 2688 SRGCL_ICU_SRVC_CD = 'Services Provided: ICU Surgical' 2689 IP_SRGCL_SRVC_CD = 'Services Provided: Inpatient Surgical' 2690 IP_SRGCL_SRVC_DESC = 'Services Provided: Inpatient Surgical Description' 2691 MGNTC_RSNC_IMG_SRVC_CD = 'Services Provided: Magnetic Resonance Imaging' 2692 MGNTC_RSNC_IMG_SRVC_DESC = 'Services Provided: Magnetic Resonance Imaging Description' 2693 NEONTL_ICU_SRVC_DESC = 'Services Provided: Neonatal ICU Description' 2694 NEONTL_NRSRY_SRVC_CD = 'Services Provided: Neonatal Nursery' 48 The SAS System 17:48 Tuesday, January 8, 2013 2695 NEONTL_NRSRY_SRVC_DESC = 'Services Provided: Neonatal Nursery Description' 2696 NRSRGCL_SRVC_DESC = 'Services Provided: Neurosurgical Description' 2697 NRSRGCL_SRVC_CD = 'Services Provided: Neurosurgical Services' 2698 NUCLR_MDCN_SRVC_CD = 'Services Provided: Nuclear Medicine' 2699 NUCLR_MDCN_SRVC_DESC = 'Services Provided: Nuclear Medicine Description' 2700 OB_SRVC_CD = 'Services Provided: Obstetrics' 2701 OB_SRVC_DESC = 'Services Provided: Obstetrics Description' 2702 OT_SRVC_CD = 'Services Provided: Occupational Therapy' 2703 OT_SRVC_DESC = 'Services Provided: Occupational Therapy Description' 2704 OPRTG_ROOM_SRVC_DESC = 'Services Provided: Operating Room Description' 2705 OPRTG_ROOM_SRVC_CD = 'Services Provided: Operating Rooms' 2706 OPTHLMC_SRGY_SRVC_CD = 'Services Provided: Ophthalmic Surgery' 2707 OPTHLMC_SRGY_SRVC_DESC = 'Services Provided: Ophthalmic Surgery Description' 2708 OPTMTRC_SRVC_CD = 'Services Provided: Optometric' 2709 OPTMTRC_SRVC_DESC = 'Services Provided: Optometric Description' 2710 ORGN_TRNSPLNT_SRVC_CD = 'Services Provided: Organ Transplant (Not Medicare Certified)' 2711 ORGN_TRNSPLNT_SRVC_DESC = 'Services Provided: Organ Transplant (Not Medicare Certified) Description' 2712 ORTHPDC_SRGY_SRVC_CD = 'Services Provided: Orthopedic Surgery' 2713 ORTHPDC_SRGY_SRVC_DESC = 'Services Provided: Orthopedic Surgery Description' 2714 OP_SRVC_CD = 'Services Provided: Outpatient' 2715 OP_SRVC_DESC = 'Services Provided: Outpatient Description' 2716 OP_SRGRY_UNIT_SRVC_CD = 'Services Provided: Outpatient Surgery' 2717 OP_SRGRY_UNIT_SRVC_DESC = 'Services Provided: Outpatient Surgery Description' 2718 PED_SRVC_CD = 'Services Provided: Pediatric' 2719 PED_SRVC_DESC = 'Services Provided: Pediatric Description' 2720 PED_ICU_SRVC_DESC = 'Services Provided: Pediatric ICU Description' 2721 PET_SCAN_SRVC_CD = 'Services Provided: PET Scan Services' 2722 PET_SCAN_SRVC_DESC = 'Services Provided: PET Scanner Description' 2723 PHRMCY_SRVC_CD = 'Services Provided: Pharmacy' 2724 PHRMCY_SRVC_DESC = 'Services Provided: Pharmacy Description' 2725 PT_SRVC_CD = 'Services Provided: Physical Therapy' 2726 PT_SRVC_DESC = 'Services Provided: Physical Therapy Description' 2727 PSTOPRTV_RCVRY_SRVC_DESC = 'Services Provided: Postoperative Recovery Room Description' 2728 PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Adult Inpatient' 2729 PSYCH_SRVC_DESC = 'Services Provided: Psychiatric - Adult Inpatient Description' 2730 EMER_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Emergency' 2731 FRNSC_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Forensic' 2732 GRTRC_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Geriatric' 2733 OP_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Outpatient' 2734 CHLD_ADLSCNT_PSYCH_SRVC_CD = 'Services Provided: Psychiatric Child/Adolescent' 2735 EMER_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Emergency Description' 2736 FRNSC_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Forensic Description' 2737 GRTRC_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Geriatric Description' 2738 OP_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Outpatient Description' 2739 DGNSTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Diagnostic)' 2740 THRPTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Therapeutic)' 2741 THRPTC_RDLGY_SRVC_DESC = 'Services Provided: Radiology Therapeutic Description' 2742 RCNSTRCTN_SRGY_SRVC_DESC = 'Services Provided: Reconstruction Surgery Description' 2743 RCNSTRCTN_SRGY_SRVC_CD = 'Services Provided: Reconstructive Surgery' 2744 OP_REHAB_SRVC_CD = 'Services Provided: Rehabilitation Outpatient' 2745 OP_REHAB_SRVC_DESC = 'Services Provided: Rehabilitation Outpatient Description' 2746 RSPRTRY_CARE_SRVC_CD = 'Services Provided: Respiratory Care' 2747 RSPRTRY_CARE_SRVC_DESC = 'Services Provided: Respiratory Care Description' 2748 SCL_SRVC_CD = 'Services Provided: Social' 2749 SCL_SRVC_DESC = 'Services Provided: Social Description' 2750 SPCH_PTHLGY_SRVC_CD = 'Services Provided: Speech Pathology' 2751 SPCH_PTHLGY_SRVC_DESC = 'Services Provided: Speech Pathology Description' 2752 SRGCL_ICU_SRVC_DESC = 'Services Provided: Surgical ICU Description' 49 The SAS System 17:48 Tuesday, January 8, 2013 2753 MDCR_TRNSPLNT_CNTR_SRVC_CD = 'Services Provided: Transplant Center (Medicare Certified)' 2754 MDCR_TRNSPLNT_CNTR_SRVC_DESC = 'Services Provided: Transplant Center (Medicare Certified) Description' 2755 SHCK_TRMA_SRVC_CD = 'Services Provided: Trauma Center (Designated)' 2756 SHCK_TRMA_SRVC_DESC = 'Services Provided: Trauma Center (Designated) Description' 2757 URGNT_CARE_SRVC_CD = 'Services Provided: Urgent Care Center Services' 2758 URGNT_CARE_SRVC_DESC = 'Services Provided: Urgent Care Description' 2759 SCL_WORKR_CNTRCT_CNT = 'Social Worker - Contract' 2760 SCL_WORKR_FLTM_CNT = 'Social Worker - Full-Time' 2761 SCL_WORKR_PRTM_CNT = 'Social Worker - Part-Time' 2762 SCL_WORKR_CNT = 'Social Workers' 2763 REHAB_BED_CNT = 'Special Care Bed - Specialized Rehab' 2764 AIDS_BED_CNT = 'Special Care Beds - AIDS' 2765 ALZHMR_BED_CNT = 'Special Care Beds - Alzheimers' 2766 DLYS_BED_CNT = 'Special Care Beds - Dialysis' 2767 DSBL_CHLDRN_BED_CNT = 'Special Care Beds - Disabled Child' 2768 HEAD_TRMA_BED_CNT = 'Special Care Beds - Head Trauma' 2769 HOSPC_BED_CNT = 'Special Care Beds - Hospice' 2770 HNTGTN_DEASE_BED_CNT = 'Special Care Beds - Huntingtons' 2771 VNTLTR_BED_CNT = 'Special Care Beds - Ventilator' 2772 THORC_SRGRY_SW = 'Speciality: Thoracic Surgery' 2773 URLGY_SRGRY_SW = 'Speciality: Urology' 2774 CRDVSCLR_SRGRY_SW = 'Specialty: Cardiovascular' 2775 FT_SRGRY_SW = 'Specialty: Foot' 2776 NRLGCL_SRGRY_SW = 'Specialty: Neurological' 2777 OB_GYN_SRGRY_SW = 'Specialty: Obstetrics / Gynecology' 2778 OPTHMLGY_SRGRY_SW = 'Specialty: Opthamology' 2779 ORAL_SRGRY_SW = 'Specialty: Oral' 2780 ORTHPDC_SRGRY_SW = 'Specialty: Orthopedic' 2781 OTLRYNGLGY_SRGRY_SW = 'Specialty: Otolaryngology' 2782 PLSTC_SRGRY_SW = 'Specialty: Plastic Surgery' 2783 GNRL_SRGRY_SW = 'Specialty: Surgery' 2784 SPCH_PTHLGST_CNTRCT_CNT = 'Speech Pathologist - Contract' 2785 SPCH_PTHLGST_FLTM_CNT = 'Speech Pathologist - Full-Time' 2786 SPCH_PTHLGST_PRTM_CNT = 'Speech Pathologist - Part-Time' 2787 SPCH_PTHLGST_AUDLGST_CNT = 'Speech Pathologist or Audiologist' 2788 SPCH_PTHLGST_ARNGMT_CNT = 'Speech Pathologists - Arrangement' 2789 SPCH_PTHLGST_CNT = 'Speech Pathologists - Total' 2790 HMDLYS_STN_ESRD_CNT = 'Stations - Hemodialysis' 2791 DLYS_STN_CNT = 'Stations - Total' 2792 SBUNIT_OPRTN_SW = 'Subunit Operation Switch' 2793 SBUNIT_SW = 'Subunit Switch' 2794 SBUNIT_CNT = 'Subunits' 2795 SRTY_BOND_CD = 'Surety Bond Indicator' 2796 SB_SIZE_CD = 'Swing Bed Size Code' 2797 SB_SW = 'Swing Bed Switch' 2798 TCHNLGST_2_YR_RDLGC_CNT = 'Technologists - 2 Year Radiology' 2799 TCHNLGST_ASCT_DGR_CNT = 'Technologists - Associate Degree' 2800 TCHNLGST_BS_BA_DGR_CNT = 'Technologists - BS/BA Degree' 2801 THRPTC_RCRTNL_CNTRCT_CNT = 'Therapeutic Recreational Specialty - Contract' 2802 THRPTC_RCRTNL_FLTM_CNT = 'Therapeutic Recreational Specialty - Full-Time' 2803 THRPTC_RCRTNL_PRTM_CNT = 'Therapeutic Recreational Specialty - Part-Time' 2804 FED_PGM_NAME = 'Title of Federal Program' 2805 EMPLEE_CNT = 'Total Number of Employees' 2806 GNRL_FAC_TYPE_CD = 'Type of Facility' 2807 NPP_TYPE_CD = 'Type of Non-Participating Provider' 2808 VLNTR_OTHR_CNT = 'Volunteers - Other' 2809 VLNTR_CNT = 'Volunteers - Total' 2810 ; 50 The SAS System 17:48 Tuesday, January 8, 2013 2811 2812 format 2813 CHOW_DT 2814 CRTFCTN_DT 2815 ORGNL_PRTCPTN_DT 2816 CHOW_PRIOR_DT 2817 TRMNTN_EXPRTN_DT 2818 ACRDTN_EFCTV_DT 2819 ACRDTN_EXPRTN_DT 2820 ADMSN_SUSPNSN_DT 2821 ADMSN_SUSPNSN_PRIOR_DT 2822 ASC_BGN_SRVC_DT 2823 VLDTN_SRVY_DT 2824 AGRMT_BGN_DT 2825 AGRMT_END_DT 2826 AGRMT_EXTNSN_DT 2827 AGRMT_END_PRIOR_DT 2828 AGRMT_EXTNSN_PRIOR_DT 2829 RSCND_SUSPNSN_PRIOR_DT 2830 PSYCH_UNIT_EFCTV_DT 2831 PSYCH_UNIT_TRMNN_DT 2832 REHAB_UNIT_EFCTV_DT 2833 REHAB_UNIT_TRMNTN_DT 2834 RSCND_SUSPNSN_DT 2835 date9. ; 2836 2837 proc sort data=WORK.&dataset.; 2838 by &sortit.; 2839 proc format; 2840 value $pcat 2841 "01"="01 Hospitals" 2842 "02"="02 SNF/NF (Dually Certified)" 2843 "03"="03 SNF/NF (Distinct Part)" 2844 "04"="04 Skilled Nursing Facility" 2845 "05"="05 Home Health Agencies" 2846 "07"="07 Portable X-ray Suppliers" 2847 "08"="08 Outpatient Physical Therapy/Speech Pathology" 2848 "09"="09 End Stage Renal Disease" 2849 "10"="10 Nursing Facilities" 2850 "11"="11 Intermediate Care Facility-Mentally Retarded" 2851 "12"="12 Rural Health Clinics" 2852 "13"="13 Physical Therapists in Independent Practice" 2853 "14"="14 Comprehensive Outpatient Rehab Facilities" 2854 "15"="15 Ambulatory Surgical Center" 2855 "16"="16 Hospices" 2856 "17"="17 Organ Procurement Organizations" 2857 "19"="19 Community Mental Health Centers" 2858 "21"="21 Federally Qualified Health Centers" 2859 "22"="22 CLIA88 Laboratories" 2860 ; 2861 2862 proc freq; 2863 tables PRVDR_CTGRY_CD; 2864 format PRVDR_CTGRY_CD $pcat.; 2865 proc print DATA = WORK.&dataset. ( obs = 5 ); 2866 proc contents data = WORK.&dataset. ; 2867 2868 %mend; 51 The SAS System 17:48 Tuesday, January 8, 2013 2869 %loop(ty=,inname=POSQ.OTHER.DATA.DEC11); MPRINT(LOOP): * The following line should contain the complete path and name of the raw data file. On a PC, use backslashes in paths as in C:\ ; MPRINT(LOOP): FILENAME datafile pipe "unzip -p /homes/data/pos/2011/POSQ.OTHER.DATA.DEC11.zip"; MPRINT(LOOP): DATA WORK.pos2011; MPRINT(LOOP): INFILE datafile LRECL = 5000 missover ; MPRINT(LOOP): INPUT @1 PRVDR_CTGRY_SBTYP_CD $CHAR2. @3 PRVDR_CTGRY_CD $CHAR2. @5 CHOW_CNT 2. @7 CHOW_DT YYMMDD8. @15 CITY_NAME $CHAR28. @43 ACPTBL_POC_SW $CHAR1. @44 CMPLNC_STUS_CD $CHAR1. @45 SSA_CNTY_CD $CHAR3. @48 CROSS_REF_PROVIDER_NUMBER $CHAR10. @58 CRTFCTN_DT YYMMDD8. @66 ELGBLTY_SW $CHAR1. @67 FAC_NAME $CHAR50. @117 INTRMDRY_CARR_CD $CHAR5. @122 MDCD_VNDR_NUM $CHAR15. @137 ORGNL_PRTCPTN_DT YYMMDD8. @145 CHOW_PRIOR_DT YYMMDD8. @153 INTRMDRY_CARR_PRIOR_CD $CHAR5. @158 PRVDR_NUM $CHAR10. @168 REC_STUS_CD $CHAR1. @169 RGN_CD $CHAR2. @171 SKLTN_REC_SW $CHAR1. @172 STATE_CD $CHAR2. @174 SSA_STATE_CD $CHAR2. @176 STATE_RGN_CD $CHAR3. @179 ST_ADR $CHAR50. @229 PHNE_NUM $CHAR10. @239 PGM_TRMNTN_CD $CHAR2. @241 TRMNTN_EXPRTN_DT YYMMDD8. @249 SRVY_PRPSE_CD $CHAR1. @250 GNRL_CNTL_TYPE_CD $CHAR2. @252 ZIP_CD $CHAR5. @257 FIPS_STATE_CD $CHAR2. @259 FIPS_CNTY_CD $CHAR3. @262 CBSA_URBN_RRL_IND $CHAR1. @263 ACRDTN_EFCTV_DT YYMMDD8. @271 ACRDTN_EXPRTN_DT YYMMDD8. @279 ACRDTN_TYPE_CD $CHAR1. @280 ACTVTY_PROFNL_CNTRCT_CNT 8. @288 ACTVTY_PROFNL_FLTM_CNT 8. @296 ACTVTY_PROFNL_PRTM_CNT 8. @304 ACTVTY_STF_OTHR_CNTRCT_CNT 8. @312 ACTVTY_STF_OTHR_FLTM_CNT 8. @320 ACTVTY_STF_OTHR_PRTM_CNT 8. @328 ACUTE_RESP_CARE_CD $CHAR1. @329 PROFNL_ADMIN_CNTRCT_CNT 8. @337 PROFNL_ADMIN_FLTM_CNT 8. @345 PROFNL_ADMIN_PRTM_CNT 8. @353 ADMSN_SUSPNSN_DT YYMMDD8. @361 ADMSN_SUSPNSN_PRIOR_DT YYMMDD8. @369 HHA_TRNG_PGM_CD $CHAR1. @370 MR_BED_CNT 4. @374 MDCR_SNF_BED_CNT 4. @378 MDCD_SNF_BED_CNT 4. @382 MDCR_MDCD_SNF_BED_CNT 4. @386 CRTFD_BED_CNT 4. @390 BED_CNT 4. @394 BRNCH_OPRTN_SW $CHAR1. @395 BRNCH_CNT 3. @398 CLIA_ID_NUMBER_1 $CHAR10. @408 CLIA_ID_NUMBER_2 $CHAR10. @418 CLIA_ID_NUMBER_3 $CHAR10. @428 CLIA_ID_NUMBER_4 $CHAR10. @438 CLIA_ID_NUMBER_5 $CHAR10. @448 NRS_AIDE_CNTRCT_CNT 8. @456 NRS_AIDE_FLTM_CNT 8. @464 NRS_AIDE_PRTM_CNT 8. @472 CRNA_CNT 8. @480 CHOW_SW $CHAR1. @481 RN_24_HR_WVR_SW $CHAR1. @482 RN_7_DAY_WVR_SW $CHAR1. @483 BED_PER_ROOM_WVR_SW $CHAR1. @484 LSC_WVR_SW $CHAR1. @485 ROOM_SIZE_WVR_SW $CHAR1. @486 SCOPE_OF_SRVC_WVR_SW $CHAR1. @487 TCHNCL_PRSNEL_WVR_SW $CHAR1. @488 CNSLR_EMPLEE_CNT 8. @496 CNSLR_VLNTR_CNT 8. @504 SRVY_EVER_ACRDTD_SW $CHAR1. @505 SRVY_EVER_NACRDTD_SW $CHAR1. @506 SRVY_EVER_SB_SW $CHAR1. @507 ASC_BGN_SRVC_DT YYMMDD8. @515 VLDTN_SRVY_DT YYMMDD8. @523 DNTST_CNTRCT_CNT 8. @531 DNTST_FLTM_CNT 8. @539 DNTST_PRTM_CNT 8. @547 DIETN_CNT 8. @555 DIETN_CNTRCT_CNT 8. @563 DIETN_FLTM_CNT 8. @571 DIETN_PRTM_CNT 8. @579 DRCT_CARE_PRSNEL_CNT 8. @587 DRCTR_QUALN_CD $CHAR1. @588 ESRD_NTWRK_NUM $CHAR2. @590 EXPRMT_RSRCH_CNDCTD_SW $CHAR1. @591 FQHC_APPROVED_RHC_PROVIDER_NUM $CHAR10. @601 FAX_PHNE_NUM $CHAR10. @611 FED_PGM_SPRT_SW $CHAR1. @612 FED_FUNDD_FQHC_SW $CHAR1. @613 FY_END_MO_DAY_CD $CHAR4. @617 FOOD_SRVC_CNTRCT_CNT 8. @625 FOOD_SRVC_FLTM_CNT 8. @633 FOOD_SRVC_PRTM_CNT 8. @641 FQHC_APRVD_RHC_SW $CHAR1. @642 HHA_QLFYD_OPT_SPCH_SW $CHAR1. @643 HH_AIDE_CNT 8. @651 HH_AIDE_VLNTR_CNT 8. @659 HMMKR_EMPLEE_CNT 8. @667 HMMKR_VLNTR_CNT 8. @675 MDCR_HOSPC_SW $CHAR1. @676 HOSP_BSD_SW $CHAR1. @677 HSEKPNG_CNTRCT_CNT 8. @685 HSEKPNG_FLTM_CNT 8. @693 HSEKPNG_PRTM_CNT 8. @701 LTC_CROSS_REF_PROVIDER_NUMBER $CHAR10. @711 LPN_LVN_CNT 8. @719 LPN_LVN_CNTRCT_CNT 8. @727 LPN_LVN_FLTM_CNT 8. @735 LPN_LVN_PRTM_CNT 8. @743 LPN_LVN_VLNTR_CNT 8. @751 AGRMT_BGN_DT YYMMDD8. @759 AGRMT_END_DT YYMMDD8. @767 AGRMT_EXTNSN_DT YYMMDD8. @775 MEDICARE_HOSPICE_PROVIDER_NUM $CHAR10. @785 MEDICARE_MEDICAID_PRVDR_NUMBER $CHAR6. @791 MDCL_DRCTR_CNTRCT_CNT 8. @799 MDCL_DRCTR_FLTM_CNT 8. @807 MDCL_DRCTR_PRTM_CNT 8. @815 MDCL_SCHL_AFLTN_CD $CHAR1. @816 MDCL_SCL_WORKR_CNT 8. @824 MDCL_SCL_WORKR_VLNTR_CNT 8. @832 MDCL_TCHNLGST_CNT 8. @840 MDCD_MDCR_PRTCPTG_PRVDR_SW $CHAR1. @841 MDCTN_AIDE_CNTRCT_CNT 8. @849 MDCTN_AIDE_FLTM_CNT 8. @857 MDCTN_AIDE_PRTM_CNT 8. @865 MEET_1861_SW $CHAR1. @866 MENTL_HLTH_SRVC_CNTRCT_CNT 8. @874 MENTL_HLTH_SRVC_FLTM_CNT 8. @882 MENTL_HLTH_SRVC_PRTM_CNT 8. @890 MLT_FAC_ORG_NAME $CHAR38. @928 MLT_OWND_FAC_ORG_SW $CHAR1. @929 NUCLR_MDCN_TCHNCN_CNT 8. @937 SHIFT_4_TUE_PTNT_CNT 3. @940 NAT_CNTRCT_CNT 8. @948 NAT_FLTM_CNT 8. @956 NAT_PRTM_CNT 8. @964 NRS_PRCTNR_CNT 8. @972 NRS_ADMINV_CNTRCT_CNT 8. @980 NRS_ADMINV_FLTM_CNT 8. @988 NRS_ADMINV_PRTM_CNT 8. @996 OCPTNL_THRPST_CNTRCT_CNT 8. @1004 OCPTNL_THRPST_FLTM_CNT 8. @1012 OCPTNL_THRPST_PRTM_CNT 8. @1020 OCPTNL_THRPST_CNT 8. @1028 OT_AIDE_CNTRCT_CNT 8. @1036 OT_AIDE_FLTM_CNT 8. @1044 OT_AIDE_PRTM_CNT 8. @1052 OT_ASTNT_AIDE_CNTRCT_CNT 8. @1060 OT_ASTNT_AIDE_FLTM_CNT 8. @1068 OT_ASTNT_AIDE_PRTM_CNT 8. @1076 OPRTG_ROOM_CNT 2. @1078 ORGNZ_FMLY_MBR_GRP_SW $CHAR1. @1079 ORGNZ_RSDNT_GRP_SW $CHAR1. @1080 ORTHTC_PRSTHTC_SRVC_CD $CHAR1. @1081 STF_OTHR_CNTRCT_CNT 8. @1089 STF_OTHR_FLTM_CNT 8. @1097 STF_OTHR_PRTM_CNT 8. @1105 PRSNEL_OTHR_CNT 8. @1113 PHYSN_OTHR_CNTRCT_CNT 8. @1121 PHYSN_OTHR_FLTM_CNT 8. @1129 PHYSN_OTHR_PRTM_CNT 8. @1137 SCL_SRVC_OTHR_STF_CNTRCT_CNT 8. @1145 SCL_SRVC_OTHR_STF_FLTM_CNT 8. @1153 SCL_SRVC_OTHR_STF_PRTM_CNT 8. @1161 PARENT_PROVIDER_NUMBER $CHAR10. @1171 MDCR_PRTCPTN_OP_PT_SPCH_SW $CHAR1. @1172 PHRMCST_CNTRCT_CNT 8. @1180 PHRMCST_FLTM_CNT 8. @1188 PHRMCST_PRTM_CNT 8. @1196 PHYS_THRPST_ARNGMT_CNT 8. @1204 PHYS_THRPST_CNT 8. @1212 PHYS_THRPST_CNTRCT_CNT 8. @1220 PHYS_THRPST_FLTM_CNT 8. @1228 PHYS_THRPST_PRTM_CNT 8. @1236 PHYS_THRPST_STF_CNT 8. @1244 PT_AIDE_CNTRCT_CNT 8. @1252 PT_AIDE_FLTM_CNT 8. @1260 PT_AIDE_PRTM_CNT 8. @1268 PT_ASTNT_CNTRCT_CNT 8. @1276 PT_ASTNT_FLTM_CNT 8. @1284 PT_ASTNT_PRTM_CNT 8. @1292 PHYSN_ASTNT_CNT 8. @1300 PHYSN_EXT_CNTRCT_CNT 8. @1308 PHYSN_EXT_FLTM_CNT 8. @1316 PHYSN_EXT_PRTM_CNT 8. @1324 PHYSN_EXT_SRVC_OFSITE_RSDNT_SW $CHAR1. @1325 PHYSN_EXT_SRVC_ONST_NRSDNT_SW $CHAR1. @1326 PHYSN_EXT_SRVC_ONST_RSDNT_SW $CHAR1. @1327 PHYSN_CNT 8. @1335 RSDNT_PHYSN_CNT 8. @1343 PHYSN_VLNTR_CNT 8. @1351 PDTRST_CNTRCT_CNT 8. @1359 PDTRST_FLTM_CNT 8. @1367 PDTRST_PRTM_CNT 8. @1375 AGRMT_END_PRIOR_DT YYMMDD8. @1383 AGRMT_EXTNSN_PRIOR_DT YYMMDD8. @1391 RSCND_SUSPNSN_PRIOR_DT YYMMDD8. @1399 PGM_PRTCPTN_CD $CHAR1. @1400 PRVDR_BSD_FAC_SW $CHAR1. @1401 PSYCH_UNIT_BED_CNT 3. @1404 PSYCH_UNIT_EFCTV_DT YYMMDD8. @1412 PSYCH_UNIT_SW $CHAR1. @1413 PSYCH_UNIT_TRMNTN_CD $CHAR1. @1414 PSYCH_UNIT_TRMNTN_DT YYMMDD8. @1422 PSYCHLGST_CNT 8. @1430 RDLGY_TCHNCN_CNT 8. @1438 OVRRD_BED_CNT_SW $CHAR1. @1439 OVRRD_STFG_SW $CHAR1. @1440 OVRRD_NRS_BED_SW $CHAR1. @1441 RN_CNTRCT_CNT 8. @1449 RN_FLTM_CNT 8. @1457 RN_PRTM_CNT 8. @1465 RN_CNT 8. @1473 RN_VLNTR_CNT 8. @1481 REG_PHRMCST_CNT 8. @1489 REHAB_UNIT_BED_CNT 3. @1492 REHAB_UNIT_EFCTV_DT YYMMDD8. @1500 REHAB_UNIT_SW $CHAR1. @1501 REHAB_UNIT_TRMNTN_CD $CHAR1. @1502 52 The SAS System 17:48 Tuesday, January 8, 2013 REHAB_UNIT_TRMNTN_DT YYMMDD8. @1510 RELATED_PROVIDER_NUMBER $CHAR10. @1520 RSCND_SUSPNSN_DT YYMMDD8. @1528 RSDNT_PGM_ADA_APRVD_SW $CHAR1. @1529 RSDNT_PGM_AMA_APRVD_SW $CHAR1. @1530 RSDNT_PGM_AOA_APRVD_SW $CHAR1. @1531 RSDNT_PGM_OTHR_APRVD_SW $CHAR1. @1532 INHLTN_THRPST_CNT 8. @1540 RN_DRCTR_CNTRCT_CNT 8. @1548 RN_DRCTR_FLTM_CNT 8. @1556 RN_DRCTR_PRTM_CNT 8. @1564 ACTVTY_OFSITE_RSDNT_SW $CHAR1. @1565 ACTVTY_ONST_NRSDNT_SW $CHAR1. @1566 ACTVTY_ONST_RSDNT_SW $CHAR1. @1567 APLNC_EQUIP_SRVC_CD $CHAR1. @1568 BLOOD_SRVC_OFSITE_RSDNT_SW $CHAR1. @1569 BLOOD_SRVC_ONST_NRSDNT_SW $CHAR1. @1570 BLOOD_SRVC_ONST_RSDNT_SW $CHAR1. @1571 CL_SRVC_OFSITE_RSDNT_SW $CHAR1. @1572 CL_SRVC_ONST_NRSDNT_SW $CHAR1. @1573 CL_SRVC_ONST_RSDNT_SW $CHAR1. @1574 CNSLNG_SRVC_CD $CHAR1. @1575 DNTL_SRVC_ONST_NRSDNT_SW $CHAR1. @1576 DNTL_SRVC_OFSITE_RSDNT_SW $CHAR1. @1577 DNTL_SRVC_ONST_RSDNT_SW $CHAR1. @1578 DTRY_ONST_NRSDNT_SW $CHAR1. @1579 DTRY_OFSITE_RSDNT_SW $CHAR1. @1580 DTRY_ONST_RSDNT_SW $CHAR1. @1581 EKG_SRVC_CD $CHAR1. @1582 HH_AIDE_SRVC_CD $CHAR1. @1583 HMMKR_SRVC_CD $CHAR1. @1584 HSEKPNG_SRVC_ONST_NRSDNT_SW $CHAR1. @1585 HSEKPNG_SRVC_OFSITE_RSDNT_SW $CHAR1. @1586 HSEKPNG_SRVC_ONST_RSDNT_SW $CHAR1. @1587 INTRN_RSDNT_SRVC_CD $CHAR1. @1588 LAB_SRVC_CD $CHAR1. @1589 MDCL_SCL_SRVC_CD $CHAR1. @1590 MDCL_SUPLY_SRVC_CD $CHAR1. @1591 MENTL_HLTH_OFSITE_RSDNT_SW $CHAR1. @1592 MENTL_HLTH_ONST_RSDNT_SW $CHAR1. @1593 MENTL_HLTH_ONST_NRSDNT_SW $CHAR1. @1594 NRSNG_SRVC_CD $CHAR1. @1595 NRSNG_SRVC_ONST_NRSDNT_SW $CHAR1. @1596 NRSNG_2_SRVC_CD $CHAR1. @1597 NRSNG_3_SRVC_CD $CHAR1. @1598 NRSNG_SRVC_OFSITE_RSDNT_SW $CHAR1. @1599 NRSNG_SRVC_ONST_RSDNT_SW $CHAR1. @1600 NTRTNL_GDNC_SRVC_CD $CHAR1. @1601 OT_SRVC_ONST_NRSDNT_SW $CHAR1. @1602 OT_2_SRVC_CD $CHAR1. @1603 OT_3_SRVC_CD $CHAR1. @1604 OT_SRVC_OFSITE_RSDNT_SW $CHAR1. @1605 OT_SRVC_ONST_RSDNT_SW $CHAR1. @1606 ORTHTC_PRSTHTC_2_SRVC_CD $CHAR1. @1607 ORTHTC_PRSTHTC_3_SRVC_CD $CHAR1. @1608 OTHR_SRVC_CD $CHAR1. @1609 ACTVTY_OTHR_OFSITE_RSDNT_SW $CHAR1. @1610 ACTVTY_OTHR_ONST_NRSDNT_SW $CHAR1. @1611 ACTVTY_OTHR_ONST_RSDNT_SW $CHAR1. @1612 SCL_SRVC_OTHR_OFSITE_RSDNT_SW $CHAR1. @1613 SCL_SRVC_OTHR_ONST_NRSDNT_SW $CHAR1. @1614 SCL_SRVC_OTHR_ONST_RSDNT_SW $CHAR1. @1615 PHRMCY_SRVC_OFSITE_RSDNT_SW $CHAR1. @1616 PHRMCY_SRVC_ONST_NRSDNT_SW $CHAR1. @1617 PHRMCY_SRVC_ONST_RSDNT_SW $CHAR1. @1618 PT_2_SRVC_CD $CHAR1. @1619 PT_3_SRVC_CD $CHAR1. @1620 PT_OFSITE_RSDNT_SW $CHAR1. @1621 PT_ONST_NRSDNT_SW $CHAR1. @1622 PT_ONST_RSDNT_SW $CHAR1. @1623 PHYSN_SRVC_CD $CHAR1. @1624 PHYSN_2_SRVC_CD $CHAR1. @1625 PHYSN_3_SRVC_CD $CHAR1. @1626 PHYSN_SRVC_OFSITE_RSDNT_SW $CHAR1. @1627 PHYSN_SRVC_ONST_NRSDNT_SW $CHAR1. @1628 PHYSN_SRVC_ONST_RSDNT_SW $CHAR1. @1629 PDTRY_SRVC_OFSITE_RSDNT_SW $CHAR1. @1630 PDTRY_SRVC_ONST_NRSDNT_SW $CHAR1. @1631 PDTRY_SRVC_ONST_RSDNT_SW $CHAR1. @1632 PSYCHLGCL_SRVC_CD $CHAR1. @1633 PSYCHLGCL_2_SRVC_CD $CHAR1. @1634 PSYCHLGCL_3_SRVC_CD $CHAR1. @1635 RDLGY_SRVC_CD $CHAR1. @1636 RSPRTRY_CARE_2_SRVC_CD $CHAR1. @1637 RSPRTRY_CARE_3_SRVC_CD $CHAR1. @1638 SHRT_TERM_IP_SRVC_CD $CHAR1. @1639 SCL_2_SRVC_CD $CHAR1. @1640 SCL_3_SRVC_CD $CHAR1. @1641 SCL_WORK_SRVC_OFSITE_RSDNT_SW $CHAR1. @1642 SCL_WORK_SRVC_ONST_NRSDNT_SW $CHAR1. @1643 SCL_WORK_SRVC_ONST_RSDNT_SW $CHAR1. @1644 SPCH_PTHLGY_2_SRVC_CD $CHAR1. @1645 SPCH_PTHLGY_3_SRVC_CD $CHAR1. @1646 SPCH_PTHLGY_OFSITE_RSDNT_SW $CHAR1. @1647 SPCH_PTHLGY_ONST_NRSDNT_SW $CHAR1. @1648 SPCH_PTHLGY_ONST_RSDNT_SW $CHAR1. @1649 SPCH_THRPY_SRVC_CD $CHAR1. @1650 THRPTC_RCRTNL_OFSITE_RSDNT_SW $CHAR1. @1651 THRPTC_RCRTNL_ONST_NRSDNT_SW $CHAR1. @1652 THRPTC_RCRTNL_ONST_RSDNT_SW $CHAR1. @1653 VCTNL_GDNC_SRVC_CD $CHAR1. @1654 VCTNL_SRVC_OFSITE_RSDNT_SW $CHAR1. @1655 VCTNL_SRVC_ONST_NRSDNT_SW $CHAR1. @1656 VCTNL_SRVC_ONST_RSDNT_SW $CHAR1. @1657 DGNSTC_XRAY_OFSITE_RSDNT_SW $CHAR1. @1658 DGNSTC_XRAY_ONST_NRSDNT_SW $CHAR1. @1659 DGNSTC_XRAY_ONST_RSDNT_SW $CHAR1. @1660 OPEN_HRT_SRGRY_SRVC_CD $CHAR1. @1661 PSTOPRTV_RCVRY_SRVC_CD $CHAR1. @1662 ACUTE_RNL_DLYS_SRVC_CD $CHAR1. @1663 ACUTE_RNL_DLYS_SRVC_DESC $CHAR39. @1702 ALCHL_DRUG_SRVC_DESC $CHAR39. @1741 ALCHL_DRUG_SRVC_CD $CHAR1. @1742 ANSTHSA_SRVC_CD $CHAR1. @1743 ANSTHSA_SRVC_DESC $CHAR39. @1782 AUDLGY_SRVC_CD $CHAR1. @1783 AUDLGY_SRVC_DESC $CHAR39. @1822 BURN_CARE_UNIT_SRVC_CD $CHAR1. @1823 BURN_CARE_UNIT_SRVC_DESC $CHAR39. @1862 OPEN_HRT_SRGRY_SRVC_DESC $CHAR39. @1901 CRDC_CTHTRZTN_LAB_SRVC_CD $CHAR1. @1902 CRDC_CTHTRZTN_LAB_SRVC_DESC $CHAR39. @1941 CARF_IP_REHAB_SRVC_CD $CHAR1. @1942 CARF_IP_REHAB_SRVC_DESC $CHAR39. @1981 CHMTHRPY_SRVC_CD $CHAR1. @1982 CHMTHRPY_SRVC_DESC $CHAR39. @2021 CHLD_ADLSCNT_PSYCH_SRVC_DESC $CHAR39. @2060 CHRPRCTIC_SRVC_CD $CHAR1. @2061 CHRPRCTIC_SRVC_DESC $CHAR39. @2100 CL_SRVC_CD $CHAR1. @2101 CL_SRVC_DESC $CHAR39. @2140 CT_SCAN_SRVC_CD $CHAR1. @2141 CT_SCAN_SRVC_DESC $CHAR39. @2180 DNTL_SRVC_CD $CHAR1. @2181 DNTL_SRVC_DESC $CHAR39. @2220 DGNSTC_RDLGY_SRVC_DESC $CHAR39. @2259 DTRY_SRVC_CD $CHAR1. @2260 DTRY_SRVC_DESC $CHAR39. @2299 DCTD_ER_SRVC_DESC $CHAR39. @2338 DCTD_ER_SRVC_CD $CHAR1. @2339 XTRCRPRL_SHCK_LTHTRPTR_SRVC_CD $CHAR1. @2340 XTRCRPRL_SHCK_LTHTRPTR_SRVCDSC $CHAR39. @2379 GRNTLGCL_SPCLTY_SRVC_CD $CHAR1. @2380 GRNTLGCL_SPCLTY_SRVC_DESC $CHAR39. @2419 CRNRY_CARE_UNIT_SRVC_CD $CHAR1. @2420 CRNRY_CARE_UNIT_SRVC_DESC $CHAR39. @2459 ICU_SRVC_CD $CHAR1. @2460 ICU_SRVC_DESC $CHAR44. @2504 NEONTL_ICU_SRVC_CD $CHAR1. @2505 PED_ICU_SRVC_CD $CHAR1. @2506 SRGCL_ICU_SRVC_CD $CHAR1. @2507 IP_SRGCL_SRVC_CD $CHAR1. @2508 IP_SRGCL_SRVC_DESC $CHAR39. @2547 MGNTC_RSNC_IMG_SRVC_CD $CHAR1. @2548 MGNTC_RSNC_IMG_SRVC_DESC $CHAR39. @2587 NEONTL_ICU_SRVC_DESC $CHAR39. @2626 NEONTL_NRSRY_SRVC_CD $CHAR1. @2627 NEONTL_NRSRY_SRVC_DESC $CHAR39. @2666 NRSRGCL_SRVC_DESC $CHAR39. @2705 NRSRGCL_SRVC_CD $CHAR1. @2706 NUCLR_MDCN_SRVC_CD $CHAR1. @2707 NUCLR_MDCN_SRVC_DESC $CHAR39. @2746 OB_SRVC_CD $CHAR1. @2747 OB_SRVC_DESC $CHAR39. @2786 OT_SRVC_CD $CHAR1. @2787 OT_SRVC_DESC $CHAR39. @2826 OPRTG_ROOM_SRVC_DESC $CHAR39. @2865 OPRTG_ROOM_SRVC_CD $CHAR1. @2866 OPTHLMC_SRGY_SRVC_CD $CHAR1. @2867 OPTHLMC_SRGY_SRVC_DESC $CHAR39. @2906 OPTMTRC_SRVC_CD $CHAR1. @2907 OPTMTRC_SRVC_DESC $CHAR44. @2951 ORGN_TRNSPLNT_SRVC_CD $CHAR1. @2952 ORGN_TRNSPLNT_SRVC_DESC $CHAR39. @2991 ORTHPDC_SRGY_SRVC_CD $CHAR1. @2992 ORTHPDC_SRGY_SRVC_DESC $CHAR39. @3031 OP_SRVC_CD $CHAR1. @3032 OP_SRVC_DESC $CHAR39. @3071 OP_SRGRY_UNIT_SRVC_CD $CHAR1. @3072 OP_SRGRY_UNIT_SRVC_DESC $CHAR39. @3111 PED_SRVC_CD $CHAR1. @3112 PED_SRVC_DESC $CHAR39. @3151 PED_ICU_SRVC_DESC $CHAR39. @3190 PET_SCAN_SRVC_CD $CHAR1. @3191 PET_SCAN_SRVC_DESC $CHAR39. @3230 PHRMCY_SRVC_CD $CHAR1. @3231 PHRMCY_SRVC_DESC $CHAR39. @3270 PT_SRVC_CD $CHAR1. @3271 PT_SRVC_DESC $CHAR39. @3310 PSTOPRTV_RCVRY_SRVC_DESC $CHAR39. @3349 PSYCH_SRVC_CD $CHAR1. @3350 PSYCH_SRVC_DESC $CHAR39. @3389 EMER_PSYCH_SRVC_CD $CHAR1. @3390 FRNSC_PSYCH_SRVC_CD $CHAR1. @3391 GRTRC_PSYCH_SRVC_CD $CHAR1. @3392 OP_PSYCH_SRVC_CD $CHAR1. @3393 CHLD_ADLSCNT_PSYCH_SRVC_CD $CHAR1. @3394 EMER_PSYCH_SRVC_DESC $CHAR39. @3433 FRNSC_PSYCH_SRVC_DESC $CHAR39. @3472 GRTRC_PSYCH_SRVC_DESC $CHAR39. @3511 OP_PSYCH_SRVC_DESC $CHAR39. @3550 DGNSTC_RDLGY_SRVC_CD $CHAR1. @3551 THRPTC_RDLGY_SRVC_CD $CHAR1. @3552 THRPTC_RDLGY_SRVC_DESC $CHAR39. @3591 RCNSTRCTN_SRGY_SRVC_DESC $CHAR39. @3630 RCNSTRCTN_SRGY_SRVC_CD $CHAR1. @3631 OP_REHAB_SRVC_CD $CHAR1. @3632 53 The SAS System 17:48 Tuesday, January 8, 2013 OP_REHAB_SRVC_DESC $CHAR39. @3671 RSPRTRY_CARE_SRVC_CD $CHAR1. @3672 RSPRTRY_CARE_SRVC_DESC $CHAR44. @3716 SCL_SRVC_CD $CHAR1. @3717 SCL_SRVC_DESC $CHAR39. @3756 SPCH_PTHLGY_SRVC_CD $CHAR1. @3757 SPCH_PTHLGY_SRVC_DESC $CHAR39. @3796 SRGCL_ICU_SRVC_DESC $CHAR39. @3835 MDCR_TRNSPLNT_CNTR_SRVC_CD $CHAR1. @3836 MDCR_TRNSPLNT_CNTR_SRVC_DESC $CHAR39. @3875 SHCK_TRMA_SRVC_CD $CHAR1. @3876 SHCK_TRMA_SRVC_DESC $CHAR39. @3915 URGNT_CARE_SRVC_CD $CHAR1. @3916 URGNT_CARE_SRVC_DESC $CHAR39. @3955 SCL_WORKR_CNTRCT_CNT 8. @3963 SCL_WORKR_FLTM_CNT 8. @3971 SCL_WORKR_PRTM_CNT 8. @3979 SCL_WORKR_CNT 8. @3987 REHAB_BED_CNT 3. @3990 AIDS_BED_CNT 3. @3993 ALZHMR_BED_CNT 3. @3996 DLYS_BED_CNT 3. @3999 DSBL_CHLDRN_BED_CNT 3. @4002 HEAD_TRMA_BED_CNT 3. @4005 HOSPC_BED_CNT 3. @4008 HNTGTN_DEASE_BED_CNT 3. @4011 VNTLTR_BED_CNT 3. @4014 THORC_SRGRY_SW $CHAR1. @4015 URLGY_SRGRY_SW $CHAR1. @4016 CRDVSCLR_SRGRY_SW $CHAR1. @4017 FT_SRGRY_SW $CHAR1. @4018 NRLGCL_SRGRY_SW $CHAR1. @4019 OB_GYN_SRGRY_SW $CHAR1. @4020 OPTHMLGY_SRGRY_SW $CHAR1. @4021 ORAL_SRGRY_SW $CHAR1. @4022 ORTHPDC_SRGRY_SW $CHAR1. @4023 OTLRYNGLGY_SRGRY_SW $CHAR1. @4024 PLSTC_SRGRY_SW $CHAR1. @4025 GNRL_SRGRY_SW $CHAR1. @4026 SPCH_PTHLGST_CNTRCT_CNT 8. @4034 SPCH_PTHLGST_FLTM_CNT 8. @4042 SPCH_PTHLGST_PRTM_CNT 8. @4050 SPCH_PTHLGST_AUDLGST_CNT 8. @4058 SPCH_PTHLGST_ARNGMT_CNT 8. @4066 SPCH_PTHLGST_CNT 8. @4074 HMDLYS_STN_ESRD_CNT 3. @4077 DLYS_STN_CNT 3. @4080 SBUNIT_OPRTN_SW $CHAR1. @4081 SBUNIT_SW $CHAR1. @4082 SBUNIT_CNT 3. @4085 SRTY_BOND_CD $CHAR1. @4086 SB_SIZE_CD $CHAR1. @4087 SB_SW $CHAR1. @4088 TCHNLGST_2_YR_RDLGC_CNT 8. @4096 TCHNLGST_ASCT_DGR_CNT 8. @4104 TCHNLGST_BS_BA_DGR_CNT 8. @4112 THRPTC_RCRTNL_CNTRCT_CNT 8. @4120 THRPTC_RCRTNL_FLTM_CNT 8. @4128 THRPTC_RCRTNL_PRTM_CNT 8. @4136 FED_PGM_NAME $CHAR26. @4162 EMPLEE_CNT 9. @4171 GNRL_FAC_TYPE_CD $CHAR2. @4173 NPP_TYPE_CD $CHAR1. @4174 VLNTR_OTHR_CNT 8. @4182 VLNTR_CNT 9. ; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib acrdtn_efctv_dt length=5; MPRINT(LOOP): attrib acrdtn_exprtn_dt length=5; MPRINT(LOOP): attrib acrdtn_type_cd length=$1; MPRINT(LOOP): attrib crtfd_bed_cnt length=4; MPRINT(LOOP): attrib bed_cnt length=4; MPRINT(LOOP): attrib crna_cnt length=5; MPRINT(LOOP): attrib rn_24_hr_wvr_sw length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib scope_of_srvc_wvr_sw length=$1; 54 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib tchncl_prsnel_wvr_sw length=$1; MPRINT(LOOP): attrib srvy_ever_acrdtd_sw length=$1; MPRINT(LOOP): attrib srvy_ever_nacrdtd_sw length=$1; MPRINT(LOOP): attrib srvy_ever_sb_sw length=$1; MPRINT(LOOP): attrib vldtn_srvy_dt length=5; MPRINT(LOOP): attrib dietn_cnt length=5; MPRINT(LOOP): attrib fax_phne_num length=$10; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib lpn_lvn_cnt length=5; MPRINT(LOOP): attrib mdcl_schl_afltn_cd length=$1; MPRINT(LOOP): attrib mdcl_scl_workr_cnt length=5; MPRINT(LOOP): attrib mdcl_tchnlgst_cnt length=5; MPRINT(LOOP): attrib mdcd_mdcr_prtcptg_prvdr_sw length=$1; MPRINT(LOOP): attrib meet_1861_sw length=$1; MPRINT(LOOP): attrib nuclr_mdcn_tchncn_cnt length=5; MPRINT(LOOP): attrib nrs_prctnr_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_cnt length=5; MPRINT(LOOP): attrib prsnel_othr_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_cnt length=5; MPRINT(LOOP): attrib physn_astnt_cnt length=5; MPRINT(LOOP): attrib physn_cnt length=5; MPRINT(LOOP): attrib rsdnt_physn_cnt length=5; MPRINT(LOOP): attrib pgm_prtcptn_cd length=$1; MPRINT(LOOP): attrib psych_unit_bed_cnt length=3; MPRINT(LOOP): attrib psych_unit_efctv_dt length=5; MPRINT(LOOP): attrib psych_unit_sw length=$1; MPRINT(LOOP): attrib psych_unit_trmntn_cd length=$1; MPRINT(LOOP): attrib psych_unit_trmntn_dt length=5; MPRINT(LOOP): attrib psychlgst_cnt length=5; MPRINT(LOOP): attrib rdlgy_tchncn_cnt length=5; MPRINT(LOOP): attrib ovrrd_bed_cnt_sw length=$1; MPRINT(LOOP): attrib ovrrd_stfg_sw length=$1; MPRINT(LOOP): attrib ovrrd_nrs_bed_sw length=$1; MPRINT(LOOP): attrib rn_cnt length=5; MPRINT(LOOP): attrib reg_phrmcst_cnt length=5; MPRINT(LOOP): attrib rehab_unit_bed_cnt length=3; MPRINT(LOOP): attrib rehab_unit_efctv_dt length=5; MPRINT(LOOP): attrib rehab_unit_sw length=$1; MPRINT(LOOP): attrib rehab_unit_trmntn_cd length=$1; MPRINT(LOOP): attrib rehab_unit_trmntn_dt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib rsdnt_pgm_ada_aprvd_sw length=$1; MPRINT(LOOP): attrib rsdnt_pgm_ama_aprvd_sw length=$1; MPRINT(LOOP): attrib rsdnt_pgm_aoa_aprvd_sw length=$1; MPRINT(LOOP): attrib rsdnt_pgm_othr_aprvd_sw length=$1; MPRINT(LOOP): attrib inhltn_thrpst_cnt length=5; MPRINT(LOOP): attrib open_hrt_srgry_srvc_cd length=$1; MPRINT(LOOP): attrib pstoprtv_rcvry_srvc_cd length=$1; MPRINT(LOOP): attrib acute_rnl_dlys_srvc_cd length=$1; MPRINT(LOOP): attrib acute_rnl_dlys_srvc_desc length=$3; WARNING: Length of character variable ACUTE_RNL_DLYS_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib alchl_drug_srvc_desc length=$39; MPRINT(LOOP): attrib alchl_drug_srvc_cd length=$1; MPRINT(LOOP): attrib ansthsa_srvc_cd length=$1; MPRINT(LOOP): attrib ansthsa_srvc_desc length=$39; MPRINT(LOOP): attrib audlgy_srvc_cd length=$1; MPRINT(LOOP): attrib audlgy_srvc_desc length=$39; 55 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib burn_care_unit_srvc_cd length=$1; MPRINT(LOOP): attrib burn_care_unit_srvc_desc length=$39; MPRINT(LOOP): attrib open_hrt_srgry_srvc_desc length=$39; MPRINT(LOOP): attrib crdc_cthtrztn_lab_srvc_cd length=$1; MPRINT(LOOP): attrib crdc_cthtrztn_lab_srvc_desc length=$39; MPRINT(LOOP): attrib carf_ip_rehab_srvc_cd length=$39; WARNING: Length of character variable CARF_IP_REHAB_SRVC_CD has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib carf_ip_rehab_srvc_desc length=$39; MPRINT(LOOP): attrib chmthrpy_srvc_cd length=$1; MPRINT(LOOP): attrib chmthrpy_srvc_desc length=$39; MPRINT(LOOP): attrib chld_adlscnt_psych_srvc_desc length=$39; MPRINT(LOOP): attrib chrprctic_srvc_cd length=$1; MPRINT(LOOP): attrib chrprctic_srvc_desc length=$39; MPRINT(LOOP): attrib cl_srvc_cd length=$1; MPRINT(LOOP): attrib cl_srvc_desc length=$39; MPRINT(LOOP): attrib ct_scan_srvc_cd length=$1; MPRINT(LOOP): attrib ct_scan_srvc_desc length=$39; MPRINT(LOOP): attrib dntl_srvc_cd length=$1; MPRINT(LOOP): attrib dntl_srvc_desc length=$39; MPRINT(LOOP): attrib dgnstc_rdlgy_srvc_desc length=$3; WARNING: Length of character variable DGNSTC_RDLGY_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib dtry_srvc_cd length=$1; MPRINT(LOOP): attrib dtry_srvc_desc length=$39; MPRINT(LOOP): attrib dctd_er_srvc_desc length=$39; MPRINT(LOOP): attrib dctd_er_srvc_cd length=$1; MPRINT(LOOP): attrib xtrcrprl_shck_lthtrptr_srvc_cd length=$1; MPRINT(LOOP): attrib xtrcrprl_shck_lthtrptr_srvcdsc length=$39; MPRINT(LOOP): attrib grntlgcl_spclty_srvc_cd length=$1; MPRINT(LOOP): attrib grntlgcl_spclty_srvc_desc length=$39; MPRINT(LOOP): attrib crnry_care_unit_srvc_cd length=$1; MPRINT(LOOP): attrib crnry_care_unit_srvc_desc length=$39; MPRINT(LOOP): attrib icu_srvc_cd length=$1; MPRINT(LOOP): attrib icu_srvc_desc length=$4; WARNING: Length of character variable ICU_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib neontl_icu_srvc_cd length=$1; MPRINT(LOOP): attrib ped_icu_srvc_cd length=$1; MPRINT(LOOP): attrib srgcl_icu_srvc_cd length=$1; MPRINT(LOOP): attrib ip_srgcl_srvc_cd length=$1; MPRINT(LOOP): attrib ip_srgcl_srvc_desc length=$39; MPRINT(LOOP): attrib mgntc_rsnc_img_srvc_cd length=$1; MPRINT(LOOP): attrib mgntc_rsnc_img_srvc_desc length=$39; MPRINT(LOOP): attrib neontl_icu_srvc_desc length=$39; MPRINT(LOOP): attrib neontl_nrsry_srvc_cd length=$1; MPRINT(LOOP): attrib neontl_nrsry_srvc_desc length=$39; MPRINT(LOOP): attrib nrsrgcl_srvc_desc length=$39; MPRINT(LOOP): attrib nrsrgcl_srvc_cd length=$1; MPRINT(LOOP): attrib nuclr_mdcn_srvc_cd length=$1; MPRINT(LOOP): attrib nuclr_mdcn_srvc_desc length=$39; MPRINT(LOOP): attrib ob_srvc_cd length=$1; MPRINT(LOOP): attrib ob_srvc_desc length=$39; MPRINT(LOOP): attrib ot_srvc_cd length=$1; MPRINT(LOOP): attrib ot_srvc_desc length=$3; WARNING: Length of character variable OT_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib oprtg_room_srvc_desc length=$39; 56 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib oprtg_room_srvc_cd length=$1; MPRINT(LOOP): attrib opthlmc_srgy_srvc_cd length=$1; MPRINT(LOOP): attrib opthlmc_srgy_srvc_desc length=$39; MPRINT(LOOP): attrib optmtrc_srvc_cd length=$1; MPRINT(LOOP): attrib optmtrc_srvc_desc length=$44; MPRINT(LOOP): attrib orgn_trnsplnt_srvc_cd length=$1; MPRINT(LOOP): attrib orgn_trnsplnt_srvc_desc length=$39; MPRINT(LOOP): attrib orthpdc_srgy_srvc_cd length=$1; MPRINT(LOOP): attrib orthpdc_srgy_srvc_desc length=$39; MPRINT(LOOP): attrib op_srvc_cd length=$1; MPRINT(LOOP): attrib op_srvc_desc length=$39; MPRINT(LOOP): attrib op_srgry_unit_srvc_cd length=$1; MPRINT(LOOP): attrib op_srgry_unit_srvc_desc length=$39; MPRINT(LOOP): attrib ped_srvc_cd length=$1; MPRINT(LOOP): attrib ped_srvc_desc length=$39; MPRINT(LOOP): attrib ped_icu_srvc_desc length=$39; MPRINT(LOOP): attrib pet_scan_srvc_cd length=$1; MPRINT(LOOP): attrib pet_scan_srvc_desc length=$39; MPRINT(LOOP): attrib phrmcy_srvc_cd length=$1; MPRINT(LOOP): attrib phrmcy_srvc_desc length=$39; MPRINT(LOOP): attrib pt_srvc_cd length=$1; MPRINT(LOOP): attrib pt_srvc_desc length=$39; MPRINT(LOOP): attrib pstoprtv_rcvry_srvc_desc length=$39; MPRINT(LOOP): attrib psych_srvc_cd length=$1; MPRINT(LOOP): attrib psych_srvc_desc length=$39; MPRINT(LOOP): attrib emer_psych_srvc_cd length=$1; MPRINT(LOOP): attrib frnsc_psych_srvc_cd length=$1; MPRINT(LOOP): attrib grtrc_psych_srvc_cd length=$1; MPRINT(LOOP): attrib op_psych_srvc_cd length=$1; MPRINT(LOOP): attrib chld_adlscnt_psych_srvc_cd length=$1; MPRINT(LOOP): attrib emer_psych_srvc_desc length=$1; WARNING: Length of character variable EMER_PSYCH_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib frnsc_psych_srvc_desc length=$3; WARNING: Length of character variable FRNSC_PSYCH_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib grtrc_psych_srvc_desc length=$3; WARNING: Length of character variable GRTRC_PSYCH_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib op_psych_srvc_desc length=$3; WARNING: Length of character variable OP_PSYCH_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib dgnstc_rdlgy_srvc_cd length=$1; MPRINT(LOOP): attrib thrptc_rdlgy_srvc_cd length=$1; MPRINT(LOOP): attrib thrptc_rdlgy_srvc_desc length=$1; WARNING: Length of character variable THRPTC_RDLGY_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib rcnstrctn_srgy_srvc_desc length=$1; WARNING: Length of character variable RCNSTRCTN_SRGY_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib rcnstrctn_srgy_srvc_cd length=$1; MPRINT(LOOP): attrib op_rehab_srvc_cd length=$1; MPRINT(LOOP): attrib op_rehab_srvc_desc length=$39; MPRINT(LOOP): attrib rsprtry_care_srvc_cd length=$1; MPRINT(LOOP): attrib rsprtry_care_srvc_desc length=$44; MPRINT(LOOP): attrib scl_srvc_cd length=$1; MPRINT(LOOP): attrib scl_srvc_desc length=$39; MPRINT(LOOP): attrib spch_pthlgy_srvc_cd length=$1; 57 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib spch_pthlgy_srvc_desc length=$39; MPRINT(LOOP): attrib srgcl_icu_srvc_desc length=$39; MPRINT(LOOP): attrib mdcr_trnsplnt_cntr_srvc_cd length=$1; MPRINT(LOOP): attrib mdcr_trnsplnt_cntr_srvc_desc length=$39; MPRINT(LOOP): attrib shck_trma_srvc_cd length=$1; MPRINT(LOOP): attrib shck_trma_srvc_desc length=$39; MPRINT(LOOP): attrib urgnt_care_srvc_cd length=$1; MPRINT(LOOP): attrib urgnt_care_srvc_desc length=$39; MPRINT(LOOP): attrib spch_pthlgst_audlgst_cnt length=5; MPRINT(LOOP): attrib sb_size_cd length=$1; MPRINT(LOOP): attrib sb_sw length=$1; MPRINT(LOOP): attrib gnrl_fac_type_cd length=$2; MPRINT(LOOP): attrib npp_type_cd length=$1; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib actvty_profnl_cntrct_cnt length=5; MPRINT(LOOP): attrib actvty_profnl_fltm_cnt length=5; MPRINT(LOOP): attrib actvty_profnl_prtm_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_fltm_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_prtm_cnt length=5; MPRINT(LOOP): attrib profnl_admin_cntrct_cnt length=5; MPRINT(LOOP): attrib profnl_admin_fltm_cnt length=5; MPRINT(LOOP): attrib profnl_admin_prtm_cnt length=5; MPRINT(LOOP): attrib mdcr_snf_bed_cnt length=4; MPRINT(LOOP): attrib mdcd_snf_bed_cnt length=4; 58 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib mdcr_mdcd_snf_bed_cnt length=4; MPRINT(LOOP): attrib crtfd_bed_cnt length=4; MPRINT(LOOP): attrib bed_cnt length=4; MPRINT(LOOP): attrib nrs_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib nrs_aide_fltm_cnt length=5; MPRINT(LOOP): attrib nrs_aide_prtm_cnt length=5; MPRINT(LOOP): attrib rn_24_hr_wvr_sw length=$1; MPRINT(LOOP): attrib rn_7_day_wvr_sw length=$1; MPRINT(LOOP): attrib bed_per_room_wvr_sw length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib room_size_wvr_sw length=$1; MPRINT(LOOP): attrib dntst_cntrct_cnt length=5; MPRINT(LOOP): attrib dntst_fltm_cnt length=5; MPRINT(LOOP): attrib dntst_prtm_cnt length=5; MPRINT(LOOP): attrib dietn_cntrct_cnt length=5; MPRINT(LOOP): attrib dietn_fltm_cnt length=5; MPRINT(LOOP): attrib dietn_prtm_cnt length=5; MPRINT(LOOP): attrib exprmt_rsrch_cndctd_sw length=$1; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib food_srvc_cntrct_cnt length=5; MPRINT(LOOP): attrib food_srvc_fltm_cnt length=5; MPRINT(LOOP): attrib food_srvc_prtm_cnt length=5; MPRINT(LOOP): attrib hsekpng_cntrct_cnt length=5; MPRINT(LOOP): attrib hsekpng_fltm_cnt length=5; MPRINT(LOOP): attrib hsekpng_prtm_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_cntrct_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_fltm_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_prtm_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_cntrct_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_fltm_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_prtm_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_fltm_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_prtm_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_cntrct_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_fltm_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_prtm_cnt length=5; MPRINT(LOOP): attrib mlt_fac_org_name length=$38; MPRINT(LOOP): attrib mlt_ownd_fac_org_sw length=$1; MPRINT(LOOP): attrib nat_cntrct_cnt length=5; MPRINT(LOOP): attrib nat_fltm_cnt length=5; MPRINT(LOOP): attrib nat_prtm_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_cntrct_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_fltm_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_prtm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_cntrct_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_prtm_cnt length=5; MPRINT(LOOP): attrib ot_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib ot_aide_fltm_cnt length=5; MPRINT(LOOP): attrib ot_aide_prtm_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_fltm_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_prtm_cnt length=5; MPRINT(LOOP): attrib orgnz_fmly_mbr_grp_sw length=$1; MPRINT(LOOP): attrib orgnz_rsdnt_grp_sw length=$1; MPRINT(LOOP): attrib stf_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib stf_othr_fltm_cnt length=5; 59 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib stf_othr_prtm_cnt length=5; MPRINT(LOOP): attrib physn_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib physn_othr_fltm_cnt length=5; MPRINT(LOOP): attrib physn_othr_prtm_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_cntrct_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_fltm_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_prtm_cnt length=5; MPRINT(LOOP): attrib phrmcst_cntrct_cnt length=5; MPRINT(LOOP): attrib phrmcst_fltm_cnt length=5; MPRINT(LOOP): attrib phrmcst_prtm_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_cntrct_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_prtm_cnt length=5; MPRINT(LOOP): attrib pt_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib pt_aide_fltm_cnt length=5; MPRINT(LOOP): attrib pt_aide_prtm_cnt length=5; MPRINT(LOOP): attrib pt_astnt_cntrct_cnt length=5; MPRINT(LOOP): attrib pt_astnt_fltm_cnt length=5; MPRINT(LOOP): attrib pt_astnt_prtm_cnt length=5; MPRINT(LOOP): attrib physn_ext_cntrct_cnt length=5; MPRINT(LOOP): attrib physn_ext_fltm_cnt length=5; MPRINT(LOOP): attrib physn_ext_prtm_cnt length=5; MPRINT(LOOP): attrib physn_ext_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_ext_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib physn_ext_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtrst_cntrct_cnt length=5; MPRINT(LOOP): attrib pdtrst_fltm_cnt length=5; MPRINT(LOOP): attrib pdtrst_prtm_cnt length=5; MPRINT(LOOP): attrib pgm_prtcptn_cd length=$1; MPRINT(LOOP): attrib prvdr_bsd_fac_sw length=$1; MPRINT(LOOP): attrib rn_cntrct_cnt length=5; MPRINT(LOOP): attrib rn_fltm_cnt length=5; MPRINT(LOOP): attrib rn_prtm_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib rscnd_suspnsn_dt length=5; MPRINT(LOOP): attrib rn_drctr_cntrct_cnt length=5; MPRINT(LOOP): attrib rn_drctr_fltm_cnt length=5; MPRINT(LOOP): attrib rn_drctr_prtm_cnt length=5; MPRINT(LOOP): attrib actvty_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_onst_rsdnt_sw length=$1; 60 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib mentl_hlth_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pt_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib pt_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib pt_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_workr_cntrct_cnt length=5; MPRINT(LOOP): attrib scl_workr_fltm_cnt length=5; MPRINT(LOOP): attrib scl_workr_prtm_cnt length=5; MPRINT(LOOP): attrib rehab_bed_cnt length=3; MPRINT(LOOP): attrib aids_bed_cnt length=3; MPRINT(LOOP): attrib alzhmr_bed_cnt length=3; MPRINT(LOOP): attrib dlys_bed_cnt length=3; MPRINT(LOOP): attrib dsbl_chldrn_bed_cnt length=3; MPRINT(LOOP): attrib head_trma_bed_cnt length=3; MPRINT(LOOP): attrib hospc_bed_cnt length=3; MPRINT(LOOP): attrib hntgtn_dease_bed_cnt length=3; MPRINT(LOOP): attrib vntltr_bed_cnt length=3; MPRINT(LOOP): attrib spch_pthlgst_cntrct_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_fltm_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_prtm_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_cntrct_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_fltm_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_prtm_cnt length=5; 61 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib actvty_profnl_cntrct_cnt length=5; MPRINT(LOOP): attrib actvty_profnl_fltm_cnt length=5; MPRINT(LOOP): attrib actvty_profnl_prtm_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_fltm_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_prtm_cnt length=5; MPRINT(LOOP): attrib profnl_admin_cntrct_cnt length=5; MPRINT(LOOP): attrib profnl_admin_fltm_cnt length=5; MPRINT(LOOP): attrib profnl_admin_prtm_cnt length=5; MPRINT(LOOP): attrib mdcr_snf_bed_cnt length=4; MPRINT(LOOP): attrib mdcd_snf_bed_cnt length=4; MPRINT(LOOP): attrib mdcr_mdcd_snf_bed_cnt length=4; MPRINT(LOOP): attrib crtfd_bed_cnt length=4; MPRINT(LOOP): attrib bed_cnt length=4; MPRINT(LOOP): attrib nrs_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib nrs_aide_fltm_cnt length=5; MPRINT(LOOP): attrib nrs_aide_prtm_cnt length=5; MPRINT(LOOP): attrib rn_24_hr_wvr_sw length=$1; MPRINT(LOOP): attrib rn_7_day_wvr_sw length=$1; MPRINT(LOOP): attrib bed_per_room_wvr_sw length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib room_size_wvr_sw length=$1; MPRINT(LOOP): attrib dntst_cntrct_cnt length=5; MPRINT(LOOP): attrib dntst_fltm_cnt length=5; 62 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib dntst_prtm_cnt length=5; MPRINT(LOOP): attrib dietn_cntrct_cnt length=5; MPRINT(LOOP): attrib dietn_fltm_cnt length=5; MPRINT(LOOP): attrib dietn_prtm_cnt length=5; MPRINT(LOOP): attrib exprmt_rsrch_cndctd_sw length=$1; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib food_srvc_cntrct_cnt length=5; MPRINT(LOOP): attrib food_srvc_fltm_cnt length=5; MPRINT(LOOP): attrib food_srvc_prtm_cnt length=5; MPRINT(LOOP): attrib hsekpng_cntrct_cnt length=5; MPRINT(LOOP): attrib hsekpng_fltm_cnt length=5; MPRINT(LOOP): attrib hsekpng_prtm_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_cntrct_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_fltm_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_prtm_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_cntrct_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_fltm_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_prtm_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_fltm_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_prtm_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_cntrct_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_fltm_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_prtm_cnt length=5; MPRINT(LOOP): attrib mlt_fac_org_name length=$38; MPRINT(LOOP): attrib mlt_ownd_fac_org_sw length=$1; MPRINT(LOOP): attrib nat_cntrct_cnt length=5; MPRINT(LOOP): attrib nat_fltm_cnt length=5; MPRINT(LOOP): attrib nat_prtm_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_cntrct_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_fltm_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_prtm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_cntrct_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_prtm_cnt length=5; MPRINT(LOOP): attrib ot_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib ot_aide_fltm_cnt length=5; MPRINT(LOOP): attrib ot_aide_prtm_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_fltm_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_prtm_cnt length=5; MPRINT(LOOP): attrib orgnz_fmly_mbr_grp_sw length=$1; MPRINT(LOOP): attrib orgnz_rsdnt_grp_sw length=$1; MPRINT(LOOP): attrib stf_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib stf_othr_fltm_cnt length=5; MPRINT(LOOP): attrib stf_othr_prtm_cnt length=5; MPRINT(LOOP): attrib physn_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib physn_othr_fltm_cnt length=5; MPRINT(LOOP): attrib physn_othr_prtm_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_cntrct_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_fltm_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_prtm_cnt length=5; MPRINT(LOOP): attrib phrmcst_cntrct_cnt length=5; MPRINT(LOOP): attrib phrmcst_fltm_cnt length=5; MPRINT(LOOP): attrib phrmcst_prtm_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_cntrct_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_prtm_cnt length=5; 63 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib pt_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib pt_aide_fltm_cnt length=5; MPRINT(LOOP): attrib pt_aide_prtm_cnt length=5; MPRINT(LOOP): attrib pt_astnt_cntrct_cnt length=5; MPRINT(LOOP): attrib pt_astnt_fltm_cnt length=5; MPRINT(LOOP): attrib pt_astnt_prtm_cnt length=5; MPRINT(LOOP): attrib physn_ext_cntrct_cnt length=5; MPRINT(LOOP): attrib physn_ext_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib physn_ext_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtrst_cntrct_cnt length=5; MPRINT(LOOP): attrib pdtrst_fltm_cnt length=5; MPRINT(LOOP): attrib pdtrst_prtm_cnt length=5; MPRINT(LOOP): attrib pgm_prtcptn_cd length=$1; MPRINT(LOOP): attrib prvdr_bsd_fac_sw length=$1; MPRINT(LOOP): attrib rn_cntrct_cnt length=5; MPRINT(LOOP): attrib rn_fltm_cnt length=5; MPRINT(LOOP): attrib rn_prtm_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib rscnd_suspnsn_dt length=5; MPRINT(LOOP): attrib rn_drctr_cntrct_cnt length=5; MPRINT(LOOP): attrib rn_drctr_fltm_cnt length=5; MPRINT(LOOP): attrib rn_drctr_prtm_cnt length=5; MPRINT(LOOP): attrib actvty_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_onst_rsdnt_sw length=$1; 64 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib pt_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib pt_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib pt_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_workr_cntrct_cnt length=5; MPRINT(LOOP): attrib scl_workr_fltm_cnt length=5; MPRINT(LOOP): attrib scl_workr_prtm_cnt length=5; MPRINT(LOOP): attrib rehab_bed_cnt length=3; MPRINT(LOOP): attrib aids_bed_cnt length=3; MPRINT(LOOP): attrib alzhmr_bed_cnt length=3; MPRINT(LOOP): attrib dlys_bed_cnt length=3; MPRINT(LOOP): attrib dsbl_chldrn_bed_cnt length=3; MPRINT(LOOP): attrib head_trma_bed_cnt length=3; MPRINT(LOOP): attrib hospc_bed_cnt length=3; MPRINT(LOOP): attrib hntgtn_dease_bed_cnt length=3; MPRINT(LOOP): attrib vntltr_bed_cnt length=3; MPRINT(LOOP): attrib spch_pthlgst_cntrct_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_fltm_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_prtm_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_cntrct_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_fltm_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_prtm_cnt length=5; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; 65 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib actvty_profnl_cntrct_cnt length=5; MPRINT(LOOP): attrib actvty_profnl_fltm_cnt length=5; MPRINT(LOOP): attrib actvty_profnl_prtm_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_fltm_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_prtm_cnt length=5; MPRINT(LOOP): attrib profnl_admin_cntrct_cnt length=5; MPRINT(LOOP): attrib profnl_admin_fltm_cnt length=5; MPRINT(LOOP): attrib profnl_admin_prtm_cnt length=5; MPRINT(LOOP): attrib mdcr_snf_bed_cnt length=4; MPRINT(LOOP): attrib mdcd_snf_bed_cnt length=4; MPRINT(LOOP): attrib mdcr_mdcd_snf_bed_cnt length=4; MPRINT(LOOP): attrib crtfd_bed_cnt length=4; MPRINT(LOOP): attrib bed_cnt length=4; MPRINT(LOOP): attrib nrs_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib nrs_aide_fltm_cnt length=5; MPRINT(LOOP): attrib nrs_aide_prtm_cnt length=5; MPRINT(LOOP): attrib rn_24_hr_wvr_sw length=$1; MPRINT(LOOP): attrib rn_7_day_wvr_sw length=$1; MPRINT(LOOP): attrib bed_per_room_wvr_sw length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib room_size_wvr_sw length=$1; MPRINT(LOOP): attrib dntst_cntrct_cnt length=5; MPRINT(LOOP): attrib dntst_fltm_cnt length=5; MPRINT(LOOP): attrib dntst_prtm_cnt length=5; MPRINT(LOOP): attrib dietn_cntrct_cnt length=5; MPRINT(LOOP): attrib dietn_fltm_cnt length=5; MPRINT(LOOP): attrib dietn_prtm_cnt length=5; MPRINT(LOOP): attrib exprmt_rsrch_cndctd_sw length=$1; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib food_srvc_cntrct_cnt length=5; MPRINT(LOOP): attrib food_srvc_fltm_cnt length=5; MPRINT(LOOP): attrib food_srvc_prtm_cnt length=5; MPRINT(LOOP): attrib hsekpng_cntrct_cnt length=5; MPRINT(LOOP): attrib hsekpng_fltm_cnt length=5; MPRINT(LOOP): attrib hsekpng_prtm_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_cntrct_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_fltm_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_prtm_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_cntrct_cnt length=5; 66 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib mdcl_drctr_fltm_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_prtm_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_fltm_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_prtm_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_cntrct_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_fltm_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_prtm_cnt length=5; MPRINT(LOOP): attrib mlt_fac_org_name length=$38; MPRINT(LOOP): attrib mlt_ownd_fac_org_sw length=$1; MPRINT(LOOP): attrib nat_cntrct_cnt length=5; MPRINT(LOOP): attrib nat_fltm_cnt length=5; MPRINT(LOOP): attrib nat_prtm_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_cntrct_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_fltm_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_prtm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_cntrct_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_prtm_cnt length=5; MPRINT(LOOP): attrib ot_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib ot_aide_fltm_cnt length=5; MPRINT(LOOP): attrib ot_aide_prtm_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_fltm_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_prtm_cnt length=5; MPRINT(LOOP): attrib orgnz_fmly_mbr_grp_sw length=$1; MPRINT(LOOP): attrib orgnz_rsdnt_grp_sw length=$1; MPRINT(LOOP): attrib stf_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib stf_othr_fltm_cnt length=5; MPRINT(LOOP): attrib stf_othr_prtm_cnt length=5; MPRINT(LOOP): attrib physn_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib physn_othr_fltm_cnt length=5; MPRINT(LOOP): attrib physn_othr_prtm_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_cntrct_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_fltm_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_prtm_cnt length=5; MPRINT(LOOP): attrib phrmcst_cntrct_cnt length=5; MPRINT(LOOP): attrib phrmcst_fltm_cnt length=5; MPRINT(LOOP): attrib phrmcst_prtm_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_cntrct_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_prtm_cnt length=5; MPRINT(LOOP): attrib pt_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib pt_aide_fltm_cnt length=5; MPRINT(LOOP): attrib pt_aide_prtm_cnt length=5; MPRINT(LOOP): attrib pt_astnt_cntrct_cnt length=5; MPRINT(LOOP): attrib pt_astnt_fltm_cnt length=5; MPRINT(LOOP): attrib pt_astnt_prtm_cnt length=5; MPRINT(LOOP): attrib physn_ext_cntrct_cnt length=5; MPRINT(LOOP): attrib physn_ext_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib physn_ext_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtrst_cntrct_cnt length=5; MPRINT(LOOP): attrib pdtrst_fltm_cnt length=5; MPRINT(LOOP): attrib pdtrst_prtm_cnt length=5; MPRINT(LOOP): attrib pgm_prtcptn_cd length=$1; MPRINT(LOOP): attrib prvdr_bsd_fac_sw length=$1; MPRINT(LOOP): attrib rn_cntrct_cnt length=5; MPRINT(LOOP): attrib rn_fltm_cnt length=5; 67 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib rn_prtm_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib rscnd_suspnsn_dt length=5; MPRINT(LOOP): attrib rn_drctr_cntrct_cnt length=5; MPRINT(LOOP): attrib rn_drctr_fltm_cnt length=5; MPRINT(LOOP): attrib rn_drctr_prtm_cnt length=5; MPRINT(LOOP): attrib actvty_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pt_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib pt_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib pt_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_ofsite_rsdnt_sw length=$1; 68 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib thrptc_rcrtnl_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_workr_cntrct_cnt length=5; MPRINT(LOOP): attrib scl_workr_fltm_cnt length=5; MPRINT(LOOP): attrib scl_workr_prtm_cnt length=5; MPRINT(LOOP): attrib rehab_bed_cnt length=3; MPRINT(LOOP): attrib aids_bed_cnt length=3; MPRINT(LOOP): attrib alzhmr_bed_cnt length=3; MPRINT(LOOP): attrib dlys_bed_cnt length=3; MPRINT(LOOP): attrib dsbl_chldrn_bed_cnt length=3; MPRINT(LOOP): attrib head_trma_bed_cnt length=3; MPRINT(LOOP): attrib hospc_bed_cnt length=3; MPRINT(LOOP): attrib hntgtn_dease_bed_cnt length=3; MPRINT(LOOP): attrib vntltr_bed_cnt length=3; MPRINT(LOOP): attrib spch_pthlgst_cntrct_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_fltm_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_prtm_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_cntrct_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_fltm_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_prtm_cnt length=5; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; 69 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib acrdtn_type_cd length=$1; MPRINT(LOOP): attrib hha_trng_pgm_cd length=$1; MPRINT(LOOP): attrib brnch_oprtn_sw length=$1; MPRINT(LOOP): attrib brnch_cnt length=3; MPRINT(LOOP): attrib chow_sw length=$1; MPRINT(LOOP): attrib vldtn_srvy_dt length=5; MPRINT(LOOP): attrib dietn_cnt length=5; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib hha_qlfyd_opt_spch_sw length=$1; MPRINT(LOOP): attrib hh_aide_cnt length=5; MPRINT(LOOP): attrib mdcr_hospc_sw length=$1; MPRINT(LOOP): attrib lpn_lvn_cnt length=5; MPRINT(LOOP): attrib mdcl_scl_workr_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_cnt length=5; MPRINT(LOOP): attrib prsnel_othr_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_stf_cnt length=5; MPRINT(LOOP): attrib pgm_prtcptn_cd length=$1; MPRINT(LOOP): attrib rn_cnt length=5; MPRINT(LOOP): attrib reg_phrmcst_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib aplnc_equip_srvc_cd length=$1; MPRINT(LOOP): attrib hh_aide_srvc_cd length=$1; MPRINT(LOOP): attrib intrn_rsdnt_srvc_cd length=$1; MPRINT(LOOP): attrib lab_srvc_cd length=$1; MPRINT(LOOP): attrib mdcl_scl_srvc_cd length=$1; MPRINT(LOOP): attrib nrsng_srvc_cd length=$1; MPRINT(LOOP): attrib ntrtnl_gdnc_srvc_cd length=$1; MPRINT(LOOP): attrib othr_srvc_cd length=$1; MPRINT(LOOP): attrib spch_thrpy_srvc_cd length=$1; MPRINT(LOOP): attrib vctnl_gdnc_srvc_cd length=$1; MPRINT(LOOP): attrib ot_srvc_cd length=$1; MPRINT(LOOP): attrib ot_srvc_desc length=$3; WARNING: Length of character variable OT_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib phrmcy_srvc_cd length=$1; MPRINT(LOOP): attrib phrmcy_srvc_desc length=$39; MPRINT(LOOP): attrib pt_srvc_cd length=$1; MPRINT(LOOP): attrib pt_srvc_desc length=$39; MPRINT(LOOP): attrib scl_workr_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_audlgst_cnt length=5; MPRINT(LOOP): attrib sbunit_oprtn_sw length=$1; MPRINT(LOOP): attrib sbunit_sw length=$1; MPRINT(LOOP): attrib sbunit_cnt length=3; MPRINT(LOOP): attrib srty_bond_cd length=$1; MPRINT(LOOP): attrib gnrl_fac_type_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; 70 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib drctr_qualn_cd length=$1; 71 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib prsnel_othr_cnt length=5; MPRINT(LOOP): attrib tchnlgst_2_yr_rdlgc_cnt length=5; MPRINT(LOOP): attrib tchnlgst_asct_dgr_cnt length=5; MPRINT(LOOP): attrib tchnlgst_bs_ba_dgr_cnt length=5; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib ocptnl_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_arngmt_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_stf_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib spch_pthlgy_srvc_cd length=$1; MPRINT(LOOP): attrib spch_pthlgy_srvc_desc length=$39; MPRINT(LOOP): attrib spch_pthlgst_audlgst_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_arngmt_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_cnt length=5; MPRINT(LOOP): attrib gnrl_fac_type_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; 72 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib dietn_cnt length=5; MPRINT(LOOP): attrib esrd_ntwrk_num length=$2; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib hosp_bsd_sw length=$1; MPRINT(LOOP): attrib mlt_fac_org_name length=$38; MPRINT(LOOP): attrib mlt_ownd_fac_org_sw length=$1; MPRINT(LOOP): attrib shift_4_tue_ptnt_cnt length=3; MPRINT(LOOP): attrib prsnel_othr_cnt length=5; MPRINT(LOOP): attrib rn_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib scl_workr_cnt length=5; MPRINT(LOOP): attrib hmdlys_stn_esrd_cnt length=3; MPRINT(LOOP): attrib dlys_stn_cnt length=3; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; 73 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib actvty_profnl_cntrct_cnt length=5; MPRINT(LOOP): attrib actvty_profnl_fltm_cnt length=5; MPRINT(LOOP): attrib actvty_profnl_prtm_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_fltm_cnt length=5; MPRINT(LOOP): attrib actvty_stf_othr_prtm_cnt length=5; MPRINT(LOOP): attrib profnl_admin_cntrct_cnt length=5; MPRINT(LOOP): attrib profnl_admin_fltm_cnt length=5; MPRINT(LOOP): attrib profnl_admin_prtm_cnt length=5; MPRINT(LOOP): attrib mdcd_snf_bed_cnt length=4; MPRINT(LOOP): attrib crtfd_bed_cnt length=4; MPRINT(LOOP): attrib bed_cnt length=4; MPRINT(LOOP): attrib nrs_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib nrs_aide_fltm_cnt length=5; MPRINT(LOOP): attrib nrs_aide_prtm_cnt length=5; MPRINT(LOOP): attrib rn_24_hr_wvr_sw length=$1; MPRINT(LOOP): attrib rn_7_day_wvr_sw length=$1; MPRINT(LOOP): attrib bed_per_room_wvr_sw length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib room_size_wvr_sw length=$1; MPRINT(LOOP): attrib dntst_cntrct_cnt length=5; MPRINT(LOOP): attrib dntst_fltm_cnt length=5; MPRINT(LOOP): attrib dntst_prtm_cnt length=5; MPRINT(LOOP): attrib dietn_cntrct_cnt length=5; MPRINT(LOOP): attrib dietn_fltm_cnt length=5; MPRINT(LOOP): attrib dietn_prtm_cnt length=5; MPRINT(LOOP): attrib exprmt_rsrch_cndctd_sw length=$1; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib food_srvc_cntrct_cnt length=5; MPRINT(LOOP): attrib food_srvc_fltm_cnt length=5; MPRINT(LOOP): attrib food_srvc_prtm_cnt length=5; MPRINT(LOOP): attrib hsekpng_cntrct_cnt length=5; MPRINT(LOOP): attrib hsekpng_fltm_cnt length=5; MPRINT(LOOP): attrib hsekpng_prtm_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_cntrct_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_fltm_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_prtm_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_cntrct_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_fltm_cnt length=5; MPRINT(LOOP): attrib mdcl_drctr_prtm_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_cntrct_cnt length=5; 74 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib mdctn_aide_fltm_cnt length=5; MPRINT(LOOP): attrib mdctn_aide_prtm_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_cntrct_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_fltm_cnt length=5; MPRINT(LOOP): attrib mentl_hlth_srvc_prtm_cnt length=5; MPRINT(LOOP): attrib mlt_fac_org_name length=$38; MPRINT(LOOP): attrib mlt_ownd_fac_org_sw length=$1; MPRINT(LOOP): attrib nat_cntrct_cnt length=5; MPRINT(LOOP): attrib nat_fltm_cnt length=5; MPRINT(LOOP): attrib nat_prtm_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_cntrct_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_fltm_cnt length=5; MPRINT(LOOP): attrib nrs_adminv_prtm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_cntrct_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib ocptnl_thrpst_prtm_cnt length=5; MPRINT(LOOP): attrib ot_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib ot_aide_fltm_cnt length=5; MPRINT(LOOP): attrib ot_aide_prtm_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_fltm_cnt length=5; MPRINT(LOOP): attrib ot_astnt_aide_prtm_cnt length=5; MPRINT(LOOP): attrib orgnz_fmly_mbr_grp_sw length=$1; MPRINT(LOOP): attrib orgnz_rsdnt_grp_sw length=$1; MPRINT(LOOP): attrib stf_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib stf_othr_fltm_cnt length=5; MPRINT(LOOP): attrib stf_othr_prtm_cnt length=5; MPRINT(LOOP): attrib physn_othr_cntrct_cnt length=5; MPRINT(LOOP): attrib physn_othr_fltm_cnt length=5; MPRINT(LOOP): attrib physn_othr_prtm_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_cntrct_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_fltm_cnt length=5; MPRINT(LOOP): attrib scl_srvc_othr_stf_prtm_cnt length=5; MPRINT(LOOP): attrib phrmcst_cntrct_cnt length=5; MPRINT(LOOP): attrib phrmcst_fltm_cnt length=5; MPRINT(LOOP): attrib phrmcst_prtm_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_cntrct_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_fltm_cnt length=5; MPRINT(LOOP): attrib phys_thrpst_prtm_cnt length=5; MPRINT(LOOP): attrib pt_aide_cntrct_cnt length=5; MPRINT(LOOP): attrib pt_aide_fltm_cnt length=5; MPRINT(LOOP): attrib pt_aide_prtm_cnt length=5; MPRINT(LOOP): attrib pt_astnt_cntrct_cnt length=5; MPRINT(LOOP): attrib pt_astnt_fltm_cnt length=5; MPRINT(LOOP): attrib pt_astnt_prtm_cnt length=5; MPRINT(LOOP): attrib physn_ext_cntrct_cnt length=5; MPRINT(LOOP): attrib physn_ext_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib physn_ext_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtrst_cntrct_cnt length=5; MPRINT(LOOP): attrib pdtrst_fltm_cnt length=5; MPRINT(LOOP): attrib pdtrst_prtm_cnt length=5; MPRINT(LOOP): attrib pgm_prtcptn_cd length=$1; MPRINT(LOOP): attrib prvdr_bsd_fac_sw length=$1; MPRINT(LOOP): attrib rn_cntrct_cnt length=5; MPRINT(LOOP): attrib rn_fltm_cnt length=5; MPRINT(LOOP): attrib rn_prtm_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib rscnd_suspnsn_dt length=5; 75 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib rn_drctr_cntrct_cnt length=5; MPRINT(LOOP): attrib rn_drctr_fltm_cnt length=5; MPRINT(LOOP): attrib rn_drctr_prtm_cnt length=5; MPRINT(LOOP): attrib actvty_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib blood_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib cl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dntl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dtry_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib hsekpng_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib mentl_hlth_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib nrsng_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib ot_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib actvty_othr_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib scl_srvc_othr_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib phrmcy_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pt_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib pt_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib pt_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib physn_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib pdtry_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib scl_work_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib spch_pthlgy_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib thrptc_rcrtnl_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_ofsite_rsdnt_sw length=$1; 76 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib vctnl_srvc_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib vctnl_srvc_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_ofsite_rsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_onst_nrsdnt_sw length=$1; MPRINT(LOOP): attrib dgnstc_xray_onst_rsdnt_sw length=$1; MPRINT(LOOP): attrib scl_workr_cntrct_cnt length=5; MPRINT(LOOP): attrib scl_workr_fltm_cnt length=5; MPRINT(LOOP): attrib scl_workr_prtm_cnt length=5; MPRINT(LOOP): attrib rehab_bed_cnt length=3; MPRINT(LOOP): attrib aids_bed_cnt length=3; MPRINT(LOOP): attrib alzhmr_bed_cnt length=3; MPRINT(LOOP): attrib dlys_bed_cnt length=3; MPRINT(LOOP): attrib dsbl_chldrn_bed_cnt length=3; MPRINT(LOOP): attrib head_trma_bed_cnt length=3; MPRINT(LOOP): attrib hospc_bed_cnt length=3; MPRINT(LOOP): attrib hntgtn_dease_bed_cnt length=3; MPRINT(LOOP): attrib vntltr_bed_cnt length=3; MPRINT(LOOP): attrib spch_pthlgst_cntrct_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_fltm_cnt length=5; MPRINT(LOOP): attrib spch_pthlgst_prtm_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_cntrct_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_fltm_cnt length=5; MPRINT(LOOP): attrib thrptc_rcrtnl_prtm_cnt length=5; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib admsn_suspnsn_dt length=5; 77 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib admsn_suspnsn_prior_dt length=5; MPRINT(LOOP): attrib mr_bed_cnt length=4; MPRINT(LOOP): attrib crtfd_bed_cnt length=4; MPRINT(LOOP): attrib bed_cnt length=4; MPRINT(LOOP): attrib bed_per_room_wvr_sw length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib room_size_wvr_sw length=$1; MPRINT(LOOP): attrib drct_care_prsnel_cnt length=5; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib lpn_lvn_cnt length=5; MPRINT(LOOP): attrib agrmt_bgn_dt length=5; MPRINT(LOOP): attrib agrmt_end_dt length=5; MPRINT(LOOP): attrib agrmt_extnsn_dt length=5; MPRINT(LOOP): attrib agrmt_end_prior_dt length=5; MPRINT(LOOP): attrib agrmt_extnsn_prior_dt length=5; MPRINT(LOOP): attrib rscnd_suspnsn_prior_dt length=5; MPRINT(LOOP): attrib pgm_prtcptn_cd length=$1; MPRINT(LOOP): attrib prvdr_bsd_fac_sw length=$1; MPRINT(LOOP): attrib rn_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib rscnd_suspnsn_dt length=5; MPRINT(LOOP): attrib emplee_cnt length=5; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib fed_pgm_sprt_sw length=$1; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; 78 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib nrs_prctnr_cnt length=5; MPRINT(LOOP): attrib prsnel_othr_cnt length=5; MPRINT(LOOP): attrib physn_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib fed_pgm_name length=$26; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib orthtc_prsthtc_srvc_cd length=$1; MPRINT(LOOP): attrib mdcr_prtcptn_op_pt_spch_sw length=$1; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib nrsng_srvc_cd length=$1; MPRINT(LOOP): attrib nrsng_2_srvc_cd length=$1; MPRINT(LOOP): attrib nrsng_3_srvc_cd length=$1; MPRINT(LOOP): attrib ot_2_srvc_cd length=$1; MPRINT(LOOP): attrib ot_3_srvc_cd length=$1; MPRINT(LOOP): attrib orthtc_prsthtc_2_srvc_cd length=$1; MPRINT(LOOP): attrib orthtc_prsthtc_3_srvc_cd length=$1; MPRINT(LOOP): attrib pt_2_srvc_cd length=$1; MPRINT(LOOP): attrib pt_3_srvc_cd length=$1; MPRINT(LOOP): attrib physn_srvc_cd length=$1; MPRINT(LOOP): attrib physn_2_srvc_cd length=$1; MPRINT(LOOP): attrib physn_3_srvc_cd length=$1; MPRINT(LOOP): attrib psychlgcl_srvc_cd length=$1; MPRINT(LOOP): attrib psychlgcl_2_srvc_cd length=$1; MPRINT(LOOP): attrib psychlgcl_3_srvc_cd length=$1; 79 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib rsprtry_care_2_srvc_cd length=$1; MPRINT(LOOP): attrib rsprtry_care_3_srvc_cd length=$1; MPRINT(LOOP): attrib scl_2_srvc_cd length=$1; MPRINT(LOOP): attrib scl_3_srvc_cd length=$1; MPRINT(LOOP): attrib spch_pthlgy_2_srvc_cd length=$1; MPRINT(LOOP): attrib spch_pthlgy_3_srvc_cd length=$1; MPRINT(LOOP): attrib rsprtry_care_srvc_cd length=$1; MPRINT(LOOP): attrib rsprtry_care_srvc_desc length=$44; MPRINT(LOOP): attrib scl_srvc_cd length=$1; MPRINT(LOOP): attrib scl_srvc_desc length=$39; MPRINT(LOOP): attrib spch_pthlgy_srvc_cd length=$1; MPRINT(LOOP): attrib spch_pthlgy_srvc_desc length=$39; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib acrdtn_type_cd length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib asc_bgn_srvc_dt length=5; MPRINT(LOOP): attrib vldtn_srvy_dt length=5; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib oprtg_room_cnt length=3; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib ekg_srvc_cd length=$1; MPRINT(LOOP): attrib lab_srvc_cd length=$1; MPRINT(LOOP): attrib othr_srvc_cd length=$1; MPRINT(LOOP): attrib rdlgy_srvc_cd length=$1; MPRINT(LOOP): attrib phrmcy_srvc_cd length=$1; 80 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib phrmcy_srvc_desc length=$39; MPRINT(LOOP): attrib thorc_srgry_sw length=$1; MPRINT(LOOP): attrib urlgy_srgry_sw length=$1; MPRINT(LOOP): attrib crdvsclr_srgry_sw length=$1; MPRINT(LOOP): attrib ft_srgry_sw length=$1; MPRINT(LOOP): attrib nrlgcl_srgry_sw length=$1; MPRINT(LOOP): attrib ob_gyn_srgry_sw length=$1; MPRINT(LOOP): attrib opthmlgy_srgry_sw length=$1; MPRINT(LOOP): attrib oral_srgry_sw length=$1; MPRINT(LOOP): attrib orthpdc_srgry_sw length=$1; MPRINT(LOOP): attrib otlrynglgy_srgry_sw length=$1; MPRINT(LOOP): attrib plstc_srgry_sw length=$1; MPRINT(LOOP): attrib gnrl_srgry_sw length=$1; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib acrdtn_type_cd length=$1; MPRINT(LOOP): attrib acute_resp_care_cd length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib cnslr_emplee_cnt length=5; MPRINT(LOOP): attrib cnslr_vlntr_cnt length=5; MPRINT(LOOP): attrib vldtn_srvy_dt length=5; MPRINT(LOOP): attrib fy_end_mo_day_cd length=$4; MPRINT(LOOP): attrib hh_aide_cnt length=5; MPRINT(LOOP): attrib hh_aide_vlntr_cnt length=5; MPRINT(LOOP): attrib hmmkr_emplee_cnt length=5; MPRINT(LOOP): attrib hmmkr_vlntr_cnt length=5; 81 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib lpn_lvn_cnt length=5; MPRINT(LOOP): attrib lpn_lvn_vlntr_cnt length=5; MPRINT(LOOP): attrib mdcl_scl_workr_cnt length=5; MPRINT(LOOP): attrib mdcl_scl_workr_vlntr_cnt length=5; MPRINT(LOOP): attrib prsnel_othr_cnt length=5; MPRINT(LOOP): attrib physn_cnt length=5; MPRINT(LOOP): attrib physn_vlntr_cnt length=5; MPRINT(LOOP): attrib rn_cnt length=5; MPRINT(LOOP): attrib rn_vlntr_cnt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib cnslng_srvc_cd length=$1; MPRINT(LOOP): attrib hh_aide_srvc_cd length=$1; MPRINT(LOOP): attrib hmmkr_srvc_cd length=$1; MPRINT(LOOP): attrib mdcl_scl_srvc_cd length=$1; MPRINT(LOOP): attrib mdcl_suply_srvc_cd length=$1; MPRINT(LOOP): attrib nrsng_srvc_cd length=$1; MPRINT(LOOP): attrib othr_srvc_cd length=$1; MPRINT(LOOP): attrib physn_srvc_cd length=$1; MPRINT(LOOP): attrib shrt_term_ip_srvc_cd length=$1; MPRINT(LOOP): attrib ot_srvc_cd length=$1; MPRINT(LOOP): attrib ot_srvc_desc length=$3; WARNING: Length of character variable OT_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib pt_srvc_cd length=$1; MPRINT(LOOP): attrib pt_srvc_desc length=$39; MPRINT(LOOP): attrib spch_pthlgy_srvc_cd length=$1; MPRINT(LOOP): attrib spch_pthlgy_srvc_desc length=$39; MPRINT(LOOP): attrib emplee_cnt length=5; MPRINT(LOOP): attrib gnrl_fac_type_cd length=$2; MPRINT(LOOP): attrib vlntr_othr_cnt length=5; MPRINT(LOOP): attrib vlntr_cnt length=5; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; 82 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; 83 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib prvdr_ctgry_sbtyp_cd length=$2; MPRINT(LOOP): attrib prvdr_ctgry_cd length=$2; MPRINT(LOOP): attrib chow_cnt length=3; MPRINT(LOOP): attrib chow_dt length=5; MPRINT(LOOP): attrib city_name length=$28; MPRINT(LOOP): attrib acptbl_poc_sw length=$1; MPRINT(LOOP): attrib cmplnc_stus_cd length=$1; MPRINT(LOOP): attrib ssa_cnty_cd length=$3; MPRINT(LOOP): attrib cross_rfrnc_prvdr_num length=$10; MPRINT(LOOP): attrib crtfctn_dt length=5; MPRINT(LOOP): attrib elgblty_sw length=$1; MPRINT(LOOP): attrib fac_name length=$50; MPRINT(LOOP): attrib intrmdry_carr_cd length=$5; MPRINT(LOOP): attrib mdcd_vndr_num length=$15; MPRINT(LOOP): attrib orgnl_prtcptn_dt length=5; MPRINT(LOOP): attrib chow_prior_dt length=5; MPRINT(LOOP): attrib intrmdry_carr_prior_cd length=$5; MPRINT(LOOP): attrib prvdr_num length=$10; MPRINT(LOOP): attrib rec_stus_cd length=$1; MPRINT(LOOP): attrib rgn_cd length=$2; MPRINT(LOOP): attrib skltn_rec_sw length=$1; MPRINT(LOOP): attrib state_cd length=$2; MPRINT(LOOP): attrib ssa_state_cd length=$2; MPRINT(LOOP): attrib state_rgn_cd length=$3; MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib fed_fundd_fqhc_sw length=$1; MPRINT(LOOP): attrib fqhc_aprvd_rhc_sw length=$1; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): ***************************************************************; MPRINT(LOOP): *** ; 84 The SAS System 17:48 Tuesday, January 8, 2013 MPRINT(LOOP): *** SAS LABEL Statement Follows ; MPRINT(LOOP): *** ; MPRINT(LOOP): ***************************************************************; MPRINT(LOOP): LABEL PRVDR_CTGRY_SBTYP_CD = 'Provider Category Subtype Code' PRVDR_CTGRY_CD = 'Provider Category Code' CHOW_CNT = 'Change of Ownership Count' CHOW_DT = 'Change of Ownership Date' CITY_NAME = 'City' ACPTBL_POC_SW = 'Compliance: Plan of Correction' CMPLNC_STUS_CD = 'Compliance: Status' SSA_CNTY_CD = 'SSA County Code' CROSS_REF_PROVIDER_NUMBER = 'Cross Ref Provider Number' CRTFCTN_DT = 'Certification Date' ELGBLTY_SW = 'Eligibility Switch' FAC_NAME = 'Facility Name' INTRMDRY_CARR_CD = 'Intermediary Carrier Code' MDCD_VNDR_NUM = 'Medicare or Medicaid Vendor Number' ORGNL_PRTCPTN_DT = 'Participation Date' CHOW_PRIOR_DT = 'Prior Change of Ownership Date' INTRMDRY_CARR_PRIOR_CD = 'Intermediary Carrier Prior Code' PRVDR_NUM = 'Provider Number' REC_STUS_CD = 'Record Status Code' RGN_CD = 'Region Code' SKLTN_REC_SW = 'Skeleton Record Switch' STATE_CD = 'State Abbreviation' SSA_STATE_CD = 'SSA State Code' STATE_RGN_CD = 'State Region Code' ST_ADR = 'Street Address' PHNE_NUM = 'Telephone Number' PGM_TRMNTN_CD = 'Termination Code 1' TRMNTN_EXPRTN_DT = 'Termination Date / Expiration Date 1' SRVY_PRPSE_CD = 'Type of Action' GNRL_CNTL_TYPE_CD = 'General Type of Control Code' ZIP_CD = 'ZIP Code' FIPS_STATE_CD = 'FIPS State Code' FIPS_CNTY_CD = 'FIPS County Code' CBSA_URBN_RRL_IND = 'CBSA Urban Rural Indicator' ACRDTN_EFCTV_DT = 'Accreditation Effective Date' ACRDTN_EXPRTN_DT = 'Accreditation Expiration Date' ACRDTN_TYPE_CD = 'Accreditation Type Code' ACTVTY_PROFNL_CNTRCT_CNT = 'Activity Professional Contract Count' ACTVTY_PROFNL_FLTM_CNT = 'Activity Professional Full-Time Count' ACTVTY_PROFNL_PRTM_CNT = 'Activity Professional Part-Time Count' ACTVTY_STF_OTHR_CNTRCT_CNT = 'Activity Staff Other Contract Count' ACTVTY_STF_OTHR_FLTM_CNT = 'Activity Staff Other Full-Time Count' ACTVTY_STF_OTHR_PRTM_CNT = 'Activity Staff Other Part-Time Count' ACUTE_RESP_CARE_CD = 'Acute/Respite Care Code' PROFNL_ADMIN_CNTRCT_CNT = 'Administrator - Contract' PROFNL_ADMIN_FLTM_CNT = 'Administrator - Full-Time' PROFNL_ADMIN_PRTM_CNT = 'Administrator - Part-Time' ADMSN_SUSPNSN_DT = 'Admission Suspension Date' ADMSN_SUSPNSN_PRIOR_DT = 'Admission Suspension Prior Date' HHA_TRNG_PGM_CD = 'Aide Training / Competency Programs' MR_BED_CNT = 'Beds - ICF / MR' MDCR_SNF_BED_CNT = 'Beds - Medicare SNF' MDCD_SNF_BED_CNT = 'Beds - Nursing Facility' MDCR_MDCD_SNF_BED_CNT = 'Beds - SNF / NF' CRTFD_BED_CNT = 'Beds - Total Certified' BED_CNT = 'Beds-Total' BRNCH_OPRTN_SW = 'Branch Operation Switch' BRNCH_CNT = 'Branches' CLIA_ID_NUMBER_1 = 'CLIA ID Number 1' CLIA_ID_NUMBER_2 = 'CLIA ID Number 2' CLIA_ID_NUMBER_3 = 'CLIA ID Number 3' CLIA_ID_NUMBER_4 = 'CLIA ID Number 4' CLIA_ID_NUMBER_5 = 'CLIA ID Number 5' NRS_AIDE_CNTRCT_CNT = 'Certification Nurse Aides - Contract' NRS_AIDE_FLTM_CNT = 'Certification Nurse Aides - Full-Time' NRS_AIDE_PRTM_CNT = 'Certification Nurse Aides - Part-Time' CRNA_CNT = 'Certified Registered Nurse Anesthetists (CRNA)' CHOW_SW = 'Change of Ownership Switch' RN_24_HR_WVR_SW = 'Compliance: 24 Hour Registered Nurse' RN_7_DAY_WVR_SW = 'Compliance: 7 Day Registered Nurse' BED_PER_ROOM_WVR_SW = 'Compliance: Beds Per Room Waiver' LSC_WVR_SW = 'Compliance: Life Safety Code' ROOM_SIZE_WVR_SW = 'Compliance: Patient Room Size' SCOPE_OF_SRVC_WVR_SW = 'Compliance: Scope of Service' TCHNCL_PRSNEL_WVR_SW = 'Compliance: Technical Personnel Waiver' CNSLR_EMPLEE_CNT = 'Counselors - Staff' CNSLR_VLNTR_CNT = 'Counselors - Volunteer' SRVY_EVER_ACRDTD_SW = 'Current Survey Ever Accredited' SRVY_EVER_NACRDTD_SW = 'Current Survey Ever Non-Accredited' SRVY_EVER_SB_SW = 'Current Survey Ever Swing Bed' ASC_BGN_SRVC_DT = 'Date Center Began Providing Services' VLDTN_SRVY_DT = 'Date of Validation Survey' DNTST_CNTRCT_CNT = 'Dentists - Contract' DNTST_FLTM_CNT = 'Dentists - Full-Time' DNTST_PRTM_CNT = 'Dentists - Part-Time' DIETN_CNT = 'Dietitians' DIETN_CNTRCT_CNT = 'Dietitians - Contract' DIETN_FLTM_CNT = 'Dietitians - Full-Time' DIETN_PRTM_CNT = 'Dietitians - Part-Time' DRCT_CARE_PRSNEL_CNT = 'Direct Care Personnel' DRCTR_QUALN_CD = 'Director Qualifications' ESRD_NTWRK_NUM = 'ESRD Network Number' EXPRMT_RSRCH_CNDCTD_SW = 'Experimental Research Conducted' FQHC_APPROVED_RHC_PROVIDER_NUM = 'FQHC Approved RHC Provider Num' FAX_PHNE_NUM = 'Fax Phone Number' FED_PGM_SPRT_SW = 'Federal Program Support' FED_FUNDD_FQHC_SW = 'Federally Funded Health Center' FY_END_MO_DAY_CD = 'Fiscal Year Ending Date' FOOD_SRVC_CNTRCT_CNT = 'Food Service - Contract' FOOD_SRVC_FLTM_CNT = 'Food Service - Full-Time' FOOD_SRVC_PRTM_CNT = 'Food Service - Part-Time' FQHC_APRVD_RHC_SW = 'FQHC Approved Rural Health Clinic' HHA_QLFYD_OPT_SPCH_SW = 'HHA Qualified For Outpatient Physical Therapy' HH_AIDE_CNT = 'Home Health Aides' HH_AIDE_VLNTR_CNT = 'Home Health Aides - Volunteer' HMMKR_EMPLEE_CNT = 'Homemakers - Staff' HMMKR_VLNTR_CNT = 'Homemakers - Volunteer' MDCR_HOSPC_SW = 'Hospice Switch' HOSP_BSD_SW = 'Hospital Based Switch' HSEKPNG_CNTRCT_CNT = 'Housekeeping - Contract' HSEKPNG_FLTM_CNT = 'Housekeeping - Full-Time' HSEKPNG_PRTM_CNT = 'Housekeeping - Part-Time' LTC_CROSS_REF_PROVIDER_NUMBER = 'LTC Cross Ref Provider Number' LPN_LVN_CNT = 'Licensed Practical/Vocational Nurses' LPN_LVN_CNTRCT_CNT = 'LPN/LVN - Contract' LPN_LVN_FLTM_CNT = 'LPN/LVN - Full-Time' LPN_LVN_PRTM_CNT = 'LPN/LVN - Part-Time' LPN_LVN_VLNTR_CNT = 'LPNS/LVNS Volunteer' AGRMT_BGN_DT = 'LTC Agreement Beginning Date' AGRMT_END_DT = 'LTC Agreement Ending Date' AGRMT_EXTNSN_DT = 'LTC Agreement Extension Date' MEDICARE_HOSPICE_PROVIDER_NUM = 'Medicare Hospice Provider Num' MEDICARE_MEDICAID_PRVDR_NUMBER = 'Medicare Medicaid Prvdr Number' MDCL_DRCTR_CNTRCT_CNT = 'Medical Director - Contract' MDCL_DRCTR_FLTM_CNT = 'Medical Director - Full-Time' MDCL_DRCTR_PRTM_CNT = 'Medical Director - Part-Time' MDCL_SCHL_AFLTN_CD = 'Medical School Affiliation' MDCL_SCL_WORKR_CNT = 'Medical Social Workers' MDCL_SCL_WORKR_VLNTR_CNT = 'Medical Social Workers - Volunteer' MDCL_TCHNLGST_CNT = 'Medical Technologist Count' MDCD_MDCR_PRTCPTG_PRVDR_SW = 'Medicare or Medicaid Participating Provider Switch' MDCTN_AIDE_CNTRCT_CNT = 'Medication Aides / Techs - Contract' MDCTN_AIDE_FLTM_CNT = 'Medication Aides / Techs - Full-Time' MDCTN_AIDE_PRTM_CNT = 'Medication Aides / Techs - Part-Time' MEET_1861_SW = 'Meets 1861 Definition' MENTL_HLTH_SRVC_CNTRCT_CNT = 'Mental Health Services - Contract' MENTL_HLTH_SRVC_FLTM_CNT = 'Mental Health Services - Full-Time' MENTL_HLTH_SRVC_PRTM_CNT = 'Mental Health Services - Part-Time' MLT_FAC_ORG_NAME = 'Multi-Facility Organization Name' MLT_OWND_FAC_ORG_SW = 'Multi-Facility Organization Owned' NUCLR_MDCN_TCHNCN_CNT = 'Nuclear Medicine Technician Count' SHIFT_4_TUE_PTNT_CNT = 'Number of Patients Tuesday 4th Shift' NAT_CNTRCT_CNT = 'Nurse Aides in Training - Contract' NAT_FLTM_CNT = 'Nurse Aides in Training - Full-Time' NAT_PRTM_CNT = 'Nurse Aides in Training - Part-Time' NRS_PRCTNR_CNT = 'Nurse Practitioners' 85 The SAS System 17:48 Tuesday, January 8, 2013 NRS_ADMINV_CNTRCT_CNT = 'Nurses With Administrative Duties - Contract' NRS_ADMINV_FLTM_CNT = 'Nurses With Administrative Duties - Full-Time' NRS_ADMINV_PRTM_CNT = 'Nurses With Administrative Duties - Part-Time' OCPTNL_THRPST_CNTRCT_CNT = 'Occupational Therapist - Contract' OCPTNL_THRPST_FLTM_CNT = 'Occupational Therapist - Full-Time' OCPTNL_THRPST_PRTM_CNT = 'Occupational Therapist - Part-Time' OCPTNL_THRPST_CNT = 'Occupational Therapists' OT_AIDE_CNTRCT_CNT = 'Occupational Therapy Aide - Contract' OT_AIDE_FLTM_CNT = 'Occupational Therapy Aide - Full-Time' OT_AIDE_PRTM_CNT = 'Occupational Therapy Aide - Part-Time' OT_ASTNT_AIDE_CNTRCT_CNT = 'Occupational Therapy Assistant - Contract' OT_ASTNT_AIDE_FLTM_CNT = 'Occupational Therapy Assistant - Full-Time' OT_ASTNT_AIDE_PRTM_CNT = 'Occupational Therapy Assistant - Part-Time' OPRTG_ROOM_CNT = 'Operating Rooms' ORGNZ_FMLY_MBR_GRP_SW = 'Organized Family Group' ORGNZ_RSDNT_GRP_SW = 'Organized Resident Group' ORTHTC_PRSTHTC_SRVC_CD = 'Orthotic/Prosthetic Service Code' STF_OTHR_CNTRCT_CNT = 'Other - Contract' STF_OTHR_FLTM_CNT = 'Other - Full-Time' STF_OTHR_PRTM_CNT = 'Other - Part-Time' PRSNEL_OTHR_CNT = 'Other Personnel' PHYSN_OTHR_CNTRCT_CNT = 'Other Physician Contract' PHYSN_OTHR_FLTM_CNT = 'Other Physician Full-Time' PHYSN_OTHR_PRTM_CNT = 'Other Physician Part-Time' SCL_SRVC_OTHR_STF_CNTRCT_CNT = 'Other Social Service Staff - Contract' SCL_SRVC_OTHR_STF_FLTM_CNT = 'Other Social Service Staff - Full-Time' SCL_SRVC_OTHR_STF_PRTM_CNT = 'Other Social Service Staff - Part-Time' PARENT_PROVIDER_NUMBER = 'Parent Provider Number' MDCR_PRTCPTN_OP_PT_SPCH_SW = 'Participation Medicare OPT / SP' PHRMCST_CNTRCT_CNT = 'Pharmacists - Contract' PHRMCST_FLTM_CNT = 'Pharmacists - Full-Time' PHRMCST_PRTM_CNT = 'Pharmacists - Part-Time' PHYS_THRPST_ARNGMT_CNT = 'Physical Therapist - Arrangement' PHYS_THRPST_CNT = 'Physical Therapists' PHYS_THRPST_CNTRCT_CNT = 'Physical Therapists - Contract' PHYS_THRPST_FLTM_CNT = 'Physical Therapists - Full-Time' PHYS_THRPST_PRTM_CNT = 'Physical Therapists - Part-Time' PHYS_THRPST_STF_CNT = 'Physical Therapists on Staff' PT_AIDE_CNTRCT_CNT = 'Physical Therapy Aide - Contract' PT_AIDE_FLTM_CNT = 'Physical Therapy Aide - Full-Time' PT_AIDE_PRTM_CNT = 'Physical Therapy Aide - Part-Time' PT_ASTNT_CNTRCT_CNT = 'Physical Therapy Assistant - Contract' PT_ASTNT_FLTM_CNT = 'Physical Therapy Assistant - Full-Time' PT_ASTNT_PRTM_CNT = 'Physical Therapy Assistant - Part-Time' PHYSN_ASTNT_CNT = 'Physician Assistants (PA)' PHYSN_EXT_CNTRCT_CNT = 'Physician Extender - Contract' PHYSN_EXT_FLTM_CNT = 'Physician Extender Full-Time Count (F37B)' PHYSN_EXT_PRTM_CNT = 'Physician Extender Part-Time Count (F37C)' PHYSN_EXT_SRVC_OFSITE_RSDNT_SW = 'Physician Extender Service Offsite To Resident Switch (F37A3)' PHYSN_EXT_SRVC_ONST_NRSDNT_SW = 'Physician Extender Service Onsite To Non-Resident Switch (F37A2)' PHYSN_EXT_SRVC_ONST_RSDNT_SW = 'Physician Extender Service Onsite To Resident Switch (F37A1)' PHYSN_CNT = 'Physicians' RSDNT_PHYSN_CNT = 'Physicians (Residents)' PHYSN_VLNTR_CNT = 'Physicians - Volunteer' PDTRST_CNTRCT_CNT = 'Podiatrists - Contract' PDTRST_FLTM_CNT = 'Podiatrists - Full-Time' PDTRST_PRTM_CNT = 'Podiatrists - Part-Time' AGRMT_END_PRIOR_DT = 'Prior LTC Agreement Ending Date' AGRMT_EXTNSN_PRIOR_DT = 'Prior LTC Agreement Extension Date' RSCND_SUSPNSN_PRIOR_DT = 'Prior Rescind Suspension Date' PGM_PRTCPTN_CD = 'Program Participation' PRVDR_BSD_FAC_SW = 'Provider Based Facility' PSYCH_UNIT_BED_CNT = 'Psychiatric Unit Bed Count' PSYCH_UNIT_EFCTV_DT = 'Psychiatric Unit Effective Date' PSYCH_UNIT_SW = 'Psychiatric Unit Switch' PSYCH_UNIT_TRMNTN_CD = 'Psychiatric Unit Termination Code' PSYCH_UNIT_TRMNTN_DT = 'Psychiatric Unit Termination Date' PSYCHLGST_CNT = 'Psychologist Count' RDLGY_TCHNCN_CNT = 'Radiology Technician Count' OVRRD_BED_CNT_SW = 'Regional Override # 1 (Number Beds)' OVRRD_STFG_SW = 'Regional Override # 2 (Staffing)' OVRRD_NRS_BED_SW = 'Regional Override # 3 (Nurse - Bed)' RN_CNTRCT_CNT = 'Registered Nurse - Contract' RN_FLTM_CNT = 'Registered Nurse - Full-Time' RN_PRTM_CNT = 'Registered Nurse - Part-Time' RN_CNT = 'Registered Nurses' RN_VLNTR_CNT = 'Registered Nurses - Volunteer' REG_PHRMCST_CNT = 'Registered Pharmacists' REHAB_UNIT_BED_CNT = 'Rehabilitation Unit Bed Count' REHAB_UNIT_EFCTV_DT = 'Rehabilitation Unit Effective Date' REHAB_UNIT_SW = 'Rehabilitation Unit Switch' REHAB_UNIT_TRMNTN_CD = 'Rehabilitation Unit Termination Code' REHAB_UNIT_TRMNTN_DT = 'Rehabilitation Unit Termination Date' RELATED_PROVIDER_NUMBER = 'Related Provider Number' RSCND_SUSPNSN_DT = 'Rescind Suspension Date' RSDNT_PGM_ADA_APRVD_SW = 'Resident Program Approved by ADA' RSDNT_PGM_AMA_APRVD_SW = 'Resident Program Approved by AMA' RSDNT_PGM_AOA_APRVD_SW = 'Resident Program Approved by AOA' RSDNT_PGM_OTHR_APRVD_SW = 'Resident Program Approved by Other' INHLTN_THRPST_CNT = 'Respiratory Therapists' RN_DRCTR_CNTRCT_CNT = 'RN Director of Nursing - Contract' RN_DRCTR_FLTM_CNT = 'RN Director of Nursing - Full-Time' RN_DRCTR_PRTM_CNT = 'RN Director of Nursing - Part-Time' ACTVTY_OFSITE_RSDNT_SW = 'Service: Activities-Offsite-Residents Switch' ACTVTY_ONST_NRSDNT_SW = 'Service: Activities-Onsite-Nonresidents Switch' ACTVTY_ONST_RSDNT_SW = 'Service: Activities-Onsite-Residents Switch' APLNC_EQUIP_SRVC_CD = 'Service: Appliance and Equipment' BLOOD_SRVC_OFSITE_RSDNT_SW = 'Service: Blood Administered-Offsite-Resident' BLOOD_SRVC_ONST_NRSDNT_SW = 'Service: Blood Administered-Onsite-Nonresident' BLOOD_SRVC_ONST_RSDNT_SW = 'Service: Blood Administered-Onsite-Resident' CL_SRVC_OFSITE_RSDNT_SW = 'Service: Clinical Laboratory-Offsite-Resident' CL_SRVC_ONST_NRSDNT_SW = 'Service: Clinical Laboratory-Onsite-Nonresident' CL_SRVC_ONST_RSDNT_SW = 'Service: Clinical Laboratory-Onsite-Resident' CNSLNG_SRVC_CD = 'Service: Counseling' DNTL_SRVC_ONST_NRSDNT_SW = 'Service: Dental On-Site Nonresidents' DNTL_SRVC_OFSITE_RSDNT_SW = 'Service: Dental Off-Site Residents' DNTL_SRVC_ONST_RSDNT_SW = 'Service: Dental On-Site Residents' DTRY_ONST_NRSDNT_SW = 'Service: Dietary On-Site Nonresidents' DTRY_OFSITE_RSDNT_SW = 'Service: Dietary Off-Site Residents' DTRY_ONST_RSDNT_SW = 'Service: Dietary On-Site Residents' EKG_SRVC_CD = 'Service: EKG' HH_AIDE_SRVC_CD = 'Service: Home Health Aide' HMMKR_SRVC_CD = 'Service: Homemaker' HSEKPNG_SRVC_ONST_NRSDNT_SW = 'Service: Housekeeping On-Site to Nonresidents' HSEKPNG_SRVC_OFSITE_RSDNT_SW = 'Service: Housekeeping Off-Site to Residents' HSEKPNG_SRVC_ONST_RSDNT_SW = 'Service: Housekeeping On-Site to Residents' INTRN_RSDNT_SRVC_CD = 'Service: Interns and Residents' LAB_SRVC_CD = 'Service: Laboratory' MDCL_SCL_SRVC_CD = 'Service: Medical Social' MDCL_SUPLY_SRVC_CD = 'Service: Medical Supplies' MENTL_HLTH_OFSITE_RSDNT_SW = 'Service: Mental Health Off-Site to Residents' MENTL_HLTH_ONST_RSDNT_SW = 'Service: Mental Health On-Site to Residents' MENTL_HLTH_ONST_NRSDNT_SW = 'Service: Mental Health On-site to Nonresidents' NRSNG_SRVC_CD = 'Service: Nursing' NRSNG_SRVC_ONST_NRSDNT_SW = 'Service: Nursing On-Site to Nonresidents' NRSNG_2_SRVC_CD = 'Service: Nursing #2' NRSNG_3_SRVC_CD = 'Service: Nursing #3' NRSNG_SRVC_OFSITE_RSDNT_SW = 86 The SAS System 17:48 Tuesday, January 8, 2013 'Service: Nursing Off-Site to Residents' NRSNG_SRVC_ONST_RSDNT_SW = 'Service: Nursing On-Site to Residents' NTRTNL_GDNC_SRVC_CD = 'Service: Nutritional Guidance' OT_SRVC_ONST_NRSDNT_SW = 'Service: Occupational Therapy On-Site to Nonresidents' OT_2_SRVC_CD = 'Service: Occupational Therapy #2' OT_3_SRVC_CD = 'Service: Occupational Therapy #3' OT_SRVC_OFSITE_RSDNT_SW = 'Service: Occupational Therapy Off-Site to Residents' OT_SRVC_ONST_RSDNT_SW = 'Service: Occupational Therapy On-Site to Residents' ORTHTC_PRSTHTC_2_SRVC_CD = 'Service: Orthotic Prosthetic #2' ORTHTC_PRSTHTC_3_SRVC_CD = 'Service: Orthotic/Prosthetic #3' OTHR_SRVC_CD = 'Service: Other' ACTVTY_OTHR_OFSITE_RSDNT_SW = 'Service: Other Activities-Offsite-Residents Switch' ACTVTY_OTHR_ONST_NRSDNT_SW = 'Service: Other Activities-Onsite-Nonresidents Switch' ACTVTY_OTHR_ONST_RSDNT_SW = 'Service: Other Activities-Onsite-Residents Switch' SCL_SRVC_OTHR_OFSITE_RSDNT_SW = 'Service: Other Off-Site to Residents' SCL_SRVC_OTHR_ONST_NRSDNT_SW = 'Service: Other On-Site to Nonresidents' SCL_SRVC_OTHR_ONST_RSDNT_SW = 'Service: Other On-Site to Residents' PHRMCY_SRVC_OFSITE_RSDNT_SW = 'Service: Pharmacy Off-Site to Residents' PHRMCY_SRVC_ONST_NRSDNT_SW = 'Service: Pharmacy On-Site to Nonresidents' PHRMCY_SRVC_ONST_RSDNT_SW = 'Service: Pharmacy On-Site to Residents' PT_2_SRVC_CD = 'Service: Physical Therapy #2' PT_3_SRVC_CD = 'Service: Physical Therapy #3' PT_OFSITE_RSDNT_SW = 'Service: Physical Therapy Off-Site to Residents' PT_ONST_NRSDNT_SW = 'Service: Physical Therapy On-Site to Nonresidents' PT_ONST_RSDNT_SW = 'Service: Physical Therapy On-Site to Residents' PHYSN_SRVC_CD = 'Service: Physician' PHYSN_2_SRVC_CD = 'Service: Physician #2' PHYSN_3_SRVC_CD = 'Service: Physician #3' PHYSN_SRVC_OFSITE_RSDNT_SW = 'Service: Physician Off-Site to Residents' PHYSN_SRVC_ONST_NRSDNT_SW = 'Service: Physician On-Site to Nonresidents' PHYSN_SRVC_ONST_RSDNT_SW = 'Service: Physician On-Site to Residents' PDTRY_SRVC_OFSITE_RSDNT_SW = 'Service: Podiatry Off-Site to Residents' PDTRY_SRVC_ONST_NRSDNT_SW = 'Service: Podiatry On-Site to Nonresidents' PDTRY_SRVC_ONST_RSDNT_SW = 'Service: Podiatry On-Site to Residents' PSYCHLGCL_SRVC_CD = 'Service: Psychological' PSYCHLGCL_2_SRVC_CD = 'Service: Psychological #2' PSYCHLGCL_3_SRVC_CD = 'Service: Psychological #3' RDLGY_SRVC_CD = 'Service: Radiology' RSPRTRY_CARE_2_SRVC_CD = 'Service: Respiratory Care #2' RSPRTRY_CARE_3_SRVC_CD = 'Service: Respiratory Care #3' SHRT_TERM_IP_SRVC_CD = 'Service: Short Term Inpatient' SCL_2_SRVC_CD = 'Service: Social #2' SCL_3_SRVC_CD = 'Service: Social #3' SCL_WORK_SRVC_OFSITE_RSDNT_SW = 'Service: Social Work Off-Site to Residents' SCL_WORK_SRVC_ONST_NRSDNT_SW = 'Service: Social Work On-Site to Nonresidents' SCL_WORK_SRVC_ONST_RSDNT_SW = 'Service: Social Work On-Site to Residents' SPCH_PTHLGY_2_SRVC_CD = 'Service: Speech Pathology #2' SPCH_PTHLGY_3_SRVC_CD = 'Service: Speech Pathology #3' SPCH_PTHLGY_OFSITE_RSDNT_SW = 'Service: Speech Pathology Off-Site to Residents' SPCH_PTHLGY_ONST_NRSDNT_SW = 'Service: Speech Pathology On-Site to Nonresidents' SPCH_PTHLGY_ONST_RSDNT_SW = 'Service: Speech Pathology On-Site to Residents' SPCH_THRPY_SRVC_CD = 'Service: Speech Therapy' THRPTC_RCRTNL_OFSITE_RSDNT_SW = 'Service: Therapeutic Recreational Specialty Off-Site to Residents' THRPTC_RCRTNL_ONST_NRSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Non Residents' THRPTC_RCRTNL_ONST_RSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Residents' VCTNL_GDNC_SRVC_CD = 'Service: Vocational Guidance' VCTNL_SRVC_OFSITE_RSDNT_SW = 'Service: Vocational Off-Site to Residents' VCTNL_SRVC_ONST_NRSDNT_SW = 'Service: Vocational On-Site to Nonresidents' VCTNL_SRVC_ONST_RSDNT_SW = 'Service: Vocational On-Site to Residents' DGNSTC_XRAY_OFSITE_RSDNT_SW = 'Service: X-ray Off-Site Residents' DGNSTC_XRAY_ONST_NRSDNT_SW = 'Service: X-ray On-Site Nonresidents' DGNSTC_XRAY_ONST_RSDNT_SW = 'Service: X-ray On-Site Residents' OPEN_HRT_SRGRY_SRVC_CD = 'Services Provided: Cardiac - Thoracic Surgery' PSTOPRTV_RCVRY_SRVC_CD = 'Services Provided: Postoperative Recovery Room' ACUTE_RNL_DLYS_SRVC_CD = 'Services Provided: Acute Renal Dialysis' ACUTE_RNL_DLYS_SRVC_DESC = 'Services Provided: Acute Renal Dialysis Description' ALCHL_DRUG_SRVC_DESC = 'Services Provided: Alcohol and or Drug Description' ALCHL_DRUG_SRVC_CD = 'Services Provided: Alcohol and/or Drug' ANSTHSA_SRVC_CD = 'Services Provided: Anesthesia' ANSTHSA_SRVC_DESC = 'Services Provided: Anesthesia Description' AUDLGY_SRVC_CD = 'Services Provided: Audiology' AUDLGY_SRVC_DESC = 'Services Provided: Audiology Description' BURN_CARE_UNIT_SRVC_CD = 'Services Provided: Burn Care Unit' BURN_CARE_UNIT_SRVC_DESC = 'Services Provided: Burn Care Unit Description' OPEN_HRT_SRGRY_SRVC_DESC = 'Services Provided: Cardiac - Thoracic Surgery Description' CRDC_CTHTRZTN_LAB_SRVC_CD = 'Services Provided: Cardiac Catheterization Lab' CRDC_CTHTRZTN_LAB_SRVC_DESC = 'Services Provided: Cardiac Catheterization Lab Description' CARF_IP_REHAB_SRVC_CD = 'Services Provided: CARF Inpatient Rehabilitation Code' CARF_IP_REHAB_SRVC_DESC = 'Services Provided: CARF Inpatient Rehabilitation Description' CHMTHRPY_SRVC_CD = 'Services Provided: Chemotherapy' CHMTHRPY_SRVC_DESC = 'Services Provided: Chemotherapy Description' CHLD_ADLSCNT_PSYCH_SRVC_DESC = 'Services Provided: Child Adolescent Psychiatric Description' CHRPRCTIC_SRVC_CD = 'Services Provided: Chiropractic' CHRPRCTIC_SRVC_DESC = 'Services Provided: Chiropractic Description' CL_SRVC_CD = 'Services Provided: Clinical Laboratory' CL_SRVC_DESC = 'Services Provided: Clinical Laboratory Description' CT_SCAN_SRVC_CD = 'Services Provided: CT Scanner' CT_SCAN_SRVC_DESC = 'Services Provided: CT Scanner Description' DNTL_SRVC_CD = 'Services Provided: Dental' DNTL_SRVC_DESC = 'Services Provided: Dental Description' DGNSTC_RDLGY_SRVC_DESC = 'Services Provided: Diagnostic Radiology Description' DTRY_SRVC_CD = 'Services Provided: Dietary' DTRY_SRVC_DESC = 'Services Provided: Dietary Description' DCTD_ER_SRVC_DESC = 'Services Provided: Emergency Dept (Dedicated) Description' DCTD_ER_SRVC_CD = 'Services Provided: Emergency Dept(Dedicated)' XTRCRPRL_SHCK_LTHTRPTR_SRVC_CD = 'Services Provided: Extracorporeal Shock Wave' XTRCRPRL_SHCK_LTHTRPTR_SRVCDSC = 'Services Provided: Extracorporeal Shock Wave Description' GRNTLGCL_SPCLTY_SRVC_CD = 'Services Provided: Gerontological Specialty' GRNTLGCL_SPCLTY_SRVC_DESC = 'Services Provided: Gerontological Specialty Description' CRNRY_CARE_UNIT_SRVC_CD = 'Services Provided: ICU Cardiac (non-surgical)' CRNRY_CARE_UNIT_SRVC_DESC = 'Services Provided: ICU Cardiac (non-surgical) Description' ICU_SRVC_CD = 'Services Provided: ICU Medical/Surgical' ICU_SRVC_DESC = 'Services Provided: ICU Medical/Surgical Description' NEONTL_ICU_SRVC_CD = 'Services Provided: ICU Neonatal' PED_ICU_SRVC_CD = 'Services Provided: ICU Pediatric' SRGCL_ICU_SRVC_CD = 'Services Provided: ICU Surgical' IP_SRGCL_SRVC_CD = 'Services Provided: Inpatient Surgical' IP_SRGCL_SRVC_DESC = 'Services Provided: Inpatient Surgical Description' MGNTC_RSNC_IMG_SRVC_CD = 'Services Provided: Magnetic Resonance Imaging' MGNTC_RSNC_IMG_SRVC_DESC = 'Services Provided: Magnetic Resonance Imaging Description' NEONTL_ICU_SRVC_DESC = 87 The SAS System 17:48 Tuesday, January 8, 2013 'Services Provided: Neonatal ICU Description' NEONTL_NRSRY_SRVC_CD = 'Services Provided: Neonatal Nursery' NEONTL_NRSRY_SRVC_DESC = 'Services Provided: Neonatal Nursery Description' NRSRGCL_SRVC_DESC = 'Services Provided: Neurosurgical Description' NRSRGCL_SRVC_CD = 'Services Provided: Neurosurgical Services' NUCLR_MDCN_SRVC_CD = 'Services Provided: Nuclear Medicine' NUCLR_MDCN_SRVC_DESC = 'Services Provided: Nuclear Medicine Description' OB_SRVC_CD = 'Services Provided: Obstetrics' OB_SRVC_DESC = 'Services Provided: Obstetrics Description' OT_SRVC_CD = 'Services Provided: Occupational Therapy' OT_SRVC_DESC = 'Services Provided: Occupational Therapy Description' OPRTG_ROOM_SRVC_DESC = 'Services Provided: Operating Room Description' OPRTG_ROOM_SRVC_CD = 'Services Provided: Operating Rooms' OPTHLMC_SRGY_SRVC_CD = 'Services Provided: Ophthalmic Surgery' OPTHLMC_SRGY_SRVC_DESC = 'Services Provided: Ophthalmic Surgery Description' OPTMTRC_SRVC_CD = 'Services Provided: Optometric' OPTMTRC_SRVC_DESC = 'Services Provided: Optometric Description' ORGN_TRNSPLNT_SRVC_CD = 'Services Provided: Organ Transplant (Not Medicare Certified)' ORGN_TRNSPLNT_SRVC_DESC = 'Services Provided: Organ Transplant (Not Medicare Certified) Description' ORTHPDC_SRGY_SRVC_CD = 'Services Provided: Orthopedic Surgery' ORTHPDC_SRGY_SRVC_DESC = 'Services Provided: Orthopedic Surgery Description' OP_SRVC_CD = 'Services Provided: Outpatient' OP_SRVC_DESC = 'Services Provided: Outpatient Description' OP_SRGRY_UNIT_SRVC_CD = 'Services Provided: Outpatient Surgery' OP_SRGRY_UNIT_SRVC_DESC = 'Services Provided: Outpatient Surgery Description' PED_SRVC_CD = 'Services Provided: Pediatric' PED_SRVC_DESC = 'Services Provided: Pediatric Description' PED_ICU_SRVC_DESC = 'Services Provided: Pediatric ICU Description' PET_SCAN_SRVC_CD = 'Services Provided: PET Scan Services' PET_SCAN_SRVC_DESC = 'Services Provided: PET Scanner Description' PHRMCY_SRVC_CD = 'Services Provided: Pharmacy' PHRMCY_SRVC_DESC = 'Services Provided: Pharmacy Description' PT_SRVC_CD = 'Services Provided: Physical Therapy' PT_SRVC_DESC = 'Services Provided: Physical Therapy Description' PSTOPRTV_RCVRY_SRVC_DESC = 'Services Provided: Postoperative Recovery Room Description' PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Adult Inpatient' PSYCH_SRVC_DESC = 'Services Provided: Psychiatric - Adult Inpatient Description' EMER_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Emergency' FRNSC_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Forensic' GRTRC_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Geriatric' OP_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Outpatient' CHLD_ADLSCNT_PSYCH_SRVC_CD = 'Services Provided: Psychiatric Child/Adolescent' EMER_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Emergency Description' FRNSC_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Forensic Description' GRTRC_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Geriatric Description' OP_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Outpatient Description' DGNSTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Diagnostic)' THRPTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Therapeutic)' THRPTC_RDLGY_SRVC_DESC = 'Services Provided: Radiology Therapeutic Description' RCNSTRCTN_SRGY_SRVC_DESC = 'Services Provided: Reconstruction Surgery Description' RCNSTRCTN_SRGY_SRVC_CD = 'Services Provided: Reconstructive Surgery' OP_REHAB_SRVC_CD = 'Services Provided: Rehabilitation Outpatient' OP_REHAB_SRVC_DESC = 'Services Provided: Rehabilitation Outpatient Description' RSPRTRY_CARE_SRVC_CD = 'Services Provided: Respiratory Care' RSPRTRY_CARE_SRVC_DESC = 'Services Provided: Respiratory Care Description' SCL_SRVC_CD = 'Services Provided: Social' SCL_SRVC_DESC = 'Services Provided: Social Description' SPCH_PTHLGY_SRVC_CD = 'Services Provided: Speech Pathology' SPCH_PTHLGY_SRVC_DESC = 'Services Provided: Speech Pathology Description' SRGCL_ICU_SRVC_DESC = 'Services Provided: Surgical ICU Description' MDCR_TRNSPLNT_CNTR_SRVC_CD = 'Services Provided: Transplant Center (Medicare Certified)' MDCR_TRNSPLNT_CNTR_SRVC_DESC = 'Services Provided: Transplant Center (Medicare Certified) Description' SHCK_TRMA_SRVC_CD = 'Services Provided: Trauma Center (Designated)' SHCK_TRMA_SRVC_DESC = 'Services Provided: Trauma Center (Designated) Description' URGNT_CARE_SRVC_CD = 'Services Provided: Urgent Care Center Services' URGNT_CARE_SRVC_DESC = 'Services Provided: Urgent Care Description' SCL_WORKR_CNTRCT_CNT = 'Social Worker - Contract' SCL_WORKR_FLTM_CNT = 'Social Worker - Full-Time' SCL_WORKR_PRTM_CNT = 'Social Worker - Part-Time' SCL_WORKR_CNT = 'Social Workers' REHAB_BED_CNT = 'Special Care Bed - Specialized Rehab' AIDS_BED_CNT = 'Special Care Beds - AIDS' ALZHMR_BED_CNT = 'Special Care Beds - Alzheimers' DLYS_BED_CNT = 'Special Care Beds - Dialysis' DSBL_CHLDRN_BED_CNT = 'Special Care Beds - Disabled Child' HEAD_TRMA_BED_CNT = 'Special Care Beds - Head Trauma' HOSPC_BED_CNT = 'Special Care Beds - Hospice' HNTGTN_DEASE_BED_CNT = 'Special Care Beds - Huntingtons' VNTLTR_BED_CNT = 'Special Care Beds - Ventilator' THORC_SRGRY_SW = 'Speciality: Thoracic Surgery' URLGY_SRGRY_SW = 'Speciality: Urology' CRDVSCLR_SRGRY_SW = 'Specialty: Cardiovascular' FT_SRGRY_SW = 'Specialty: Foot' NRLGCL_SRGRY_SW = 'Specialty: Neurological' OB_GYN_SRGRY_SW = 'Specialty: Obstetrics / Gynecology' OPTHMLGY_SRGRY_SW = 'Specialty: Opthamology' ORAL_SRGRY_SW = 'Specialty: Oral' ORTHPDC_SRGRY_SW = 'Specialty: Orthopedic' OTLRYNGLGY_SRGRY_SW = 'Specialty: Otolaryngology' PLSTC_SRGRY_SW = 'Specialty: Plastic Surgery' GNRL_SRGRY_SW = 'Specialty: Surgery' SPCH_PTHLGST_CNTRCT_CNT = 'Speech Pathologist - Contract' SPCH_PTHLGST_FLTM_CNT = 'Speech Pathologist - Full-Time' SPCH_PTHLGST_PRTM_CNT = 'Speech Pathologist - Part-Time' SPCH_PTHLGST_AUDLGST_CNT = 'Speech Pathologist or Audiologist' SPCH_PTHLGST_ARNGMT_CNT = 'Speech Pathologists - Arrangement' SPCH_PTHLGST_CNT = 'Speech Pathologists - Total' HMDLYS_STN_ESRD_CNT = 'Stations - Hemodialysis' DLYS_STN_CNT = 'Stations - Total' SBUNIT_OPRTN_SW = 'Subunit Operation Switch' SBUNIT_SW = 'Subunit Switch' SBUNIT_CNT = 'Subunits' SRTY_BOND_CD = 'Surety Bond Indicator' SB_SIZE_CD = 'Swing Bed Size Code' SB_SW = 'Swing Bed Switch' TCHNLGST_2_YR_RDLGC_CNT = 'Technologists - 2 Year Radiology' TCHNLGST_ASCT_DGR_CNT = 'Technologists - Associate Degree' TCHNLGST_BS_BA_DGR_CNT = 'Technologists - BS/BA Degree' THRPTC_RCRTNL_CNTRCT_CNT = 'Therapeutic Recreational Specialty - Contract' THRPTC_RCRTNL_FLTM_CNT = 'Therapeutic Recreational Specialty - Full-Time' THRPTC_RCRTNL_PRTM_CNT = 'Therapeutic Recreational Specialty - Part-Time' FED_PGM_NAME = 'Title of Federal Program' EMPLEE_CNT = 'Total Number of Employees' GNRL_FAC_TYPE_CD = 'Type of Facility' NPP_TYPE_CD = 'Type of Non-Participating Provider' VLNTR_OTHR_CNT = 'Volunteers - Other' VLNTR_CNT = 'Volunteers - Total' ; MPRINT(LOOP): format CHOW_DT CRTFCTN_DT ORGNL_PRTCPTN_DT CHOW_PRIOR_DT TRMNTN_EXPRTN_DT ACRDTN_EFCTV_DT ACRDTN_EXPRTN_DT ADMSN_SUSPNSN_DT ADMSN_SUSPNSN_PRIOR_DT ASC_BGN_SRVC_DT VLDTN_SRVY_DT AGRMT_BGN_DT AGRMT_END_DT AGRMT_EXTNSN_DT AGRMT_END_PRIOR_DT AGRMT_EXTNSN_PRIOR_DT RSCND_SUSPNSN_PRIOR_DT PSYCH_UNIT_EFCTV_DT PSYCH_UNIT_TRMNN_DT REHAB_UNIT_EFCTV_DT REHAB_UNIT_TRMNTN_DT 88 The SAS System 17:48 Tuesday, January 8, 2013 RSCND_SUSPNSN_DT date9. ; NOTE: Variable cross_rfrnc_prvdr_num is uninitialized. NOTE: Variable rltd_prvdr_num is uninitialized. NOTE: Variable PSYCH_UNIT_TRMNN_DT is uninitialized. NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/pos/2011/POSQ.OTHER.DATA.DEC11.zip" NOTE: 100 records were read from the infile DATAFILE. The minimum record length was 4173. The maximum record length was 4173. NOTE: The data set WORK.POS2011 has 100 observations and 503 variables. NOTE: DATA statement used (Total process time): real time 0.15 seconds cpu time 0.06 seconds MPRINT(LOOP): proc sort data=WORK.pos2011; MPRINT(LOOP): by prvdr_num; NOTE: There were 100 observations read from the data set WORK.POS2011. NOTE: The data set WORK.POS2011 has 100 observations and 503 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(LOOP): proc format; MPRINT(LOOP): value $pcat "01"="01 Hospitals" "02"="02 SNF/NF (Dually Certified)" "03"="03 SNF/NF (Distinct Part)" "04"="04 Skilled Nursing Facility" "05"="05 Home Health Agencies" "07"="07 Portable X-ray Suppliers" "08"="08 Outpatient Physical Therapy/Speech Pathology" "09"="09 End Stage Renal Disease" "10"="10 Nursing Facilities" "11"="11 Intermediate Care Facility-Mentally Retarded" "12"="12 Rural Health Clinics" "13"="13 Physical Therapists in Independent Practice" "14"="14 Comprehensive Outpatient Rehab Facilities" "15"="15 Ambulatory Surgical Center" "16"="16 Hospices" "17"="17 Organ Procurement Organizations" "19"="19 Community Mental Health Centers" "21"="21 Federally Qualified Health Centers" "22"="22 CLIA88 Laboratories" ; NOTE: Format $PCAT has been output. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.02 seconds cpu time 0.00 seconds MPRINT(LOOP): proc freq; MPRINT(LOOP): tables PRVDR_CTGRY_CD; MPRINT(LOOP): format PRVDR_CTGRY_CD $pcat.; NOTE: There were 100 observations read from the data set WORK.POS2011. NOTE: The PROCEDURE FREQ printed page 1. NOTE: PROCEDURE FREQ used (Total process time): real time 0.03 seconds cpu time 0.02 seconds MPRINT(LOOP): proc print DATA = WORK.pos2011 ( obs = 5 ); NOTE: There were 5 observations read from the data set WORK.POS2011. NOTE: The PROCEDURE PRINT printed pages 2-11. NOTE: PROCEDURE PRINT used (Total process time): 89 The SAS System 17:48 Tuesday, January 8, 2013 real time 0.01 seconds cpu time 0.01 seconds MPRINT(LOOP): proc contents data = WORK.pos2011 ; 2870 NOTE: The PROCEDURE CONTENTS printed pages 12-22. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.40 seconds cpu time 0.15 seconds