1 The SAS System 17:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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:47 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 1557 ***************************************************************; 1558 *** ; 1559 *** SAS LABEL Statement Follows ; 1560 *** ; 1561 ***************************************************************; 1562 1563 LABEL 1564 1565 PRVDR_CTGRY_SBTYP_CD = 'Provider Category Subtype Code' 1566 PRVDR_CTGRY_CD = 'Provider Category Code' 1567 CHOW_CNT = 'Change of Ownership Count' 1568 CHOW_DT = 'Change of Ownership Date' 1569 CITY_NAME = 'City' 1570 ACPTBL_POC_SW = 'Compliance: Plan of Correction' 1571 CMPLNC_STUS_CD = 'Compliance: Status' 1572 SSA_CNTY_CD = 'SSA County Code' 1573 CROSS_REF_PROVIDER_NUMBER = 'Cross Ref Provider Number' 1574 CRTFCTN_DT = 'Certification Date' 1575 ELGBLTY_SW = 'Eligibility Switch' 1576 FAC_NAME = 'Facility Name' 1577 INTRMDRY_CARR_CD = 'Intermediary Carrier Code' 1578 MDCD_VNDR_NUM = 'Medicare or Medicaid Vendor Number' 1579 ORGNL_PRTCPTN_DT = 'Participation Date' 1580 CHOW_PRIOR_DT = 'Prior Change of Ownership Date' 1581 INTRMDRY_CARR_PRIOR_CD = 'Intermediary Carrier Prior Code' 1582 PRVDR_NUM = 'Provider Number' 1583 REC_STUS_CD = 'Record Status Code' 1584 RGN_CD = 'Region Code' 1585 SKLTN_REC_SW = 'Skeleton Record Switch' 1586 STATE_CD = 'State Abbreviation' 1587 SSA_STATE_CD = 'SSA State Code' 1588 STATE_RGN_CD = 'State Region Code' 1589 ST_ADR = 'Street Address' 1590 PHNE_NUM = 'Telephone Number' 1591 PGM_TRMNTN_CD = 'Termination Code 1' 1592 TRMNTN_EXPRTN_DT = 'Termination Date / Expiration Date 1' 29 The SAS System 17:47 Tuesday, January 8, 2013 1593 SRVY_PRPSE_CD = 'Type of Action' 1594 GNRL_CNTL_TYPE_CD = 'General Type of Control Code' 1595 ZIP_CD = 'ZIP Code' 1596 FIPS_STATE_CD = 'FIPS State Code' 1597 FIPS_CNTY_CD = 'FIPS County Code' 1598 CBSA_URBN_RRL_IND = 'CBSA Urban Rural Indicator' 1599 ACRDTN_EFCTV_DT = 'Accreditation Effective Date' 1600 ACRDTN_EXPRTN_DT = 'Accreditation Expiration Date' 1601 ACRDTN_TYPE_CD = 'Accreditation Type Code' 1602 ACTVTY_PROFNL_CNTRCT_CNT = 'Activity Professional Contract Count' 1603 ACTVTY_PROFNL_FLTM_CNT = 'Activity Professional Full-Time Count' 1604 ACTVTY_PROFNL_PRTM_CNT = 'Activity Professional Part-Time Count' 1605 ACTVTY_STF_OTHR_CNTRCT_CNT = 'Activity Staff Other Contract Count' 1606 ACTVTY_STF_OTHR_FLTM_CNT = 'Activity Staff Other Full-Time Count' 1607 ACTVTY_STF_OTHR_PRTM_CNT = 'Activity Staff Other Part-Time Count' 1608 ACUTE_RESP_CARE_CD = 'Acute/Respite Care Code' 1609 PROFNL_ADMIN_CNTRCT_CNT = 'Administrator - Contract' 1610 PROFNL_ADMIN_FLTM_CNT = 'Administrator - Full-Time' 1611 PROFNL_ADMIN_PRTM_CNT = 'Administrator - Part-Time' 1612 ADMSN_SUSPNSN_DT = 'Admission Suspension Date' 1613 ADMSN_SUSPNSN_PRIOR_DT = 'Admission Suspension Prior Date' 1614 HHA_TRNG_PGM_CD = 'Aide Training / Competency Programs' 1615 MR_BED_CNT = 'Beds - ICF / MR' 1616 MDCR_SNF_BED_CNT = 'Beds - Medicare SNF' 1617 MDCD_SNF_BED_CNT = 'Beds - Nursing Facility' 1618 MDCR_MDCD_SNF_BED_CNT = 'Beds - SNF / NF' 1619 CRTFD_BED_CNT = 'Beds - Total Certified' 1620 BED_CNT = 'Beds-Total' 1621 BRNCH_OPRTN_SW = 'Branch Operation Switch' 1622 BRNCH_CNT = 'Branches' 1623 CLIA_ID_NUMBER_1 = 'CLIA ID Number 1' 1624 CLIA_ID_NUMBER_2 = 'CLIA ID Number 2' 1625 CLIA_ID_NUMBER_3 = 'CLIA ID Number 3' 1626 CLIA_ID_NUMBER_4 = 'CLIA ID Number 4' 1627 CLIA_ID_NUMBER_5 = 'CLIA ID Number 5' 1628 NRS_AIDE_CNTRCT_CNT = 'Certification Nurse Aides - Contract' 1629 NRS_AIDE_FLTM_CNT = 'Certification Nurse Aides - Full-Time' 1630 NRS_AIDE_PRTM_CNT = 'Certification Nurse Aides - Part-Time' 1631 CRNA_CNT = 'Certified Registered Nurse Anesthetists (CRNA)' 1632 CHOW_SW = 'Change of Ownership Switch' 1633 RN_24_HR_WVR_SW = 'Compliance: 24 Hour Registered Nurse' 1634 RN_7_DAY_WVR_SW = 'Compliance: 7 Day Registered Nurse' 1635 BED_PER_ROOM_WVR_SW = 'Compliance: Beds Per Room Waiver' 1636 LSC_WVR_SW = 'Compliance: Life Safety Code' 1637 ROOM_SIZE_WVR_SW = 'Compliance: Patient Room Size' 1638 SCOPE_OF_SRVC_WVR_SW = 'Compliance: Scope of Service' 1639 TCHNCL_PRSNEL_WVR_SW = 'Compliance: Technical Personnel Waiver' 1640 CNSLR_EMPLEE_CNT = 'Counselors - Staff' 1641 CNSLR_VLNTR_CNT = 'Counselors - Volunteer' 1642 SRVY_EVER_ACRDTD_SW = 'Current Survey Ever Accredited' 1643 SRVY_EVER_NACRDTD_SW = 'Current Survey Ever Non-Accredited' 1644 SRVY_EVER_SB_SW = 'Current Survey Ever Swing Bed' 1645 ASC_BGN_SRVC_DT = 'Date Center Began Providing Services' 1646 VLDTN_SRVY_DT = 'Date of Validation Survey' 1647 DNTST_CNTRCT_CNT = 'Dentists - Contract' 1648 DNTST_FLTM_CNT = 'Dentists - Full-Time' 1649 DNTST_PRTM_CNT = 'Dentists - Part-Time' 1650 DIETN_CNT = 'Dietitians' 30 The SAS System 17:47 Tuesday, January 8, 2013 1651 DIETN_CNTRCT_CNT = 'Dietitians - Contract' 1652 DIETN_FLTM_CNT = 'Dietitians - Full-Time' 1653 DIETN_PRTM_CNT = 'Dietitians - Part-Time' 1654 DRCT_CARE_PRSNEL_CNT = 'Direct Care Personnel' 1655 DRCTR_QUALN_CD = 'Director Qualifications' 1656 ESRD_NTWRK_NUM = 'ESRD Network Number' 1657 EXPRMT_RSRCH_CNDCTD_SW = 'Experimental Research Conducted' 1658 FQHC_APPROVED_RHC_PROVIDER_NUM = 'FQHC Approved RHC Provider Num' 1659 FAX_PHNE_NUM = 'Fax Phone Number' 1660 FED_PGM_SPRT_SW = 'Federal Program Support' 1661 FED_FUNDD_FQHC_SW = 'Federally Funded Health Center' 1662 FY_END_MO_DAY_CD = 'Fiscal Year Ending Date' 1663 FOOD_SRVC_CNTRCT_CNT = 'Food Service - Contract' 1664 FOOD_SRVC_FLTM_CNT = 'Food Service - Full-Time' 1665 FOOD_SRVC_PRTM_CNT = 'Food Service - Part-Time' 1666 FQHC_APRVD_RHC_SW = 'FQHC Approved Rural Health Clinic' 1667 HHA_QLFYD_OPT_SPCH_SW = 'HHA Qualified For Outpatient Physical Therapy' 1668 HH_AIDE_CNT = 'Home Health Aides' 1669 HH_AIDE_VLNTR_CNT = 'Home Health Aides - Volunteer' 1670 HMMKR_EMPLEE_CNT = 'Homemakers - Staff' 1671 HMMKR_VLNTR_CNT = 'Homemakers - Volunteer' 1672 MDCR_HOSPC_SW = 'Hospice Switch' 1673 HOSP_BSD_SW = 'Hospital Based Switch' 1674 HSEKPNG_CNTRCT_CNT = 'Housekeeping - Contract' 1675 HSEKPNG_FLTM_CNT = 'Housekeeping - Full-Time' 1676 HSEKPNG_PRTM_CNT = 'Housekeeping - Part-Time' 1677 LTC_CROSS_REF_PROVIDER_NUMBER = 'LTC Cross Ref Provider Number' 1678 LPN_LVN_CNT = 'Licensed Practical/Vocational Nurses' 1679 LPN_LVN_CNTRCT_CNT = 'LPN/LVN - Contract' 1680 LPN_LVN_FLTM_CNT = 'LPN/LVN - Full-Time' 1681 LPN_LVN_PRTM_CNT = 'LPN/LVN - Part-Time' 1682 LPN_LVN_VLNTR_CNT = 'LPNS/LVNS Volunteer' 1683 AGRMT_BGN_DT = 'LTC Agreement Beginning Date' 1684 AGRMT_END_DT = 'LTC Agreement Ending Date' 1685 AGRMT_EXTNSN_DT = 'LTC Agreement Extension Date' 1686 MEDICARE_HOSPICE_PROVIDER_NUM = 'Medicare Hospice Provider Num' 1687 MEDICARE_MEDICAID_PRVDR_NUMBER = 'Medicare Medicaid Prvdr Number' 1688 MDCL_DRCTR_CNTRCT_CNT = 'Medical Director - Contract' 1689 MDCL_DRCTR_FLTM_CNT = 'Medical Director - Full-Time' 1690 MDCL_DRCTR_PRTM_CNT = 'Medical Director - Part-Time' 1691 MDCL_SCHL_AFLTN_CD = 'Medical School Affiliation' 1692 MDCL_SCL_WORKR_CNT = 'Medical Social Workers' 1693 MDCL_SCL_WORKR_VLNTR_CNT = 'Medical Social Workers - Volunteer' 1694 MDCL_TCHNLGST_CNT = 'Medical Technologist Count' 1695 MDCD_MDCR_PRTCPTG_PRVDR_SW = 'Medicare or Medicaid Participating Provider Switch' 1696 MDCTN_AIDE_CNTRCT_CNT = 'Medication Aides / Techs - Contract' 1697 MDCTN_AIDE_FLTM_CNT = 'Medication Aides / Techs - Full-Time' 1698 MDCTN_AIDE_PRTM_CNT = 'Medication Aides / Techs - Part-Time' 1699 MEET_1861_SW = 'Meets 1861 Definition' 1700 MENTL_HLTH_SRVC_CNTRCT_CNT = 'Mental Health Services - Contract' 1701 MENTL_HLTH_SRVC_FLTM_CNT = 'Mental Health Services - Full-Time' 1702 MENTL_HLTH_SRVC_PRTM_CNT = 'Mental Health Services - Part-Time' 1703 MLT_FAC_ORG_NAME = 'Multi-Facility Organization Name' 1704 MLT_OWND_FAC_ORG_SW = 'Multi-Facility Organization Owned' 1705 NUCLR_MDCN_TCHNCN_CNT = 'Nuclear Medicine Technician Count' 1706 SHIFT_4_TUE_PTNT_CNT = 'Number of Patients Tuesday 4th Shift' 1707 NAT_CNTRCT_CNT = 'Nurse Aides in Training - Contract' 1708 NAT_FLTM_CNT = 'Nurse Aides in Training - Full-Time' 31 The SAS System 17:47 Tuesday, January 8, 2013 1709 NAT_PRTM_CNT = 'Nurse Aides in Training - Part-Time' 1710 NRS_PRCTNR_CNT = 'Nurse Practitioners' 1711 NRS_ADMINV_CNTRCT_CNT = 'Nurses With Administrative Duties - Contract' 1712 NRS_ADMINV_FLTM_CNT = 'Nurses With Administrative Duties - Full-Time' 1713 NRS_ADMINV_PRTM_CNT = 'Nurses With Administrative Duties - Part-Time' 1714 OCPTNL_THRPST_CNTRCT_CNT = 'Occupational Therapist - Contract' 1715 OCPTNL_THRPST_FLTM_CNT = 'Occupational Therapist - Full-Time' 1716 OCPTNL_THRPST_PRTM_CNT = 'Occupational Therapist - Part-Time' 1717 OCPTNL_THRPST_CNT = 'Occupational Therapists' 1718 OT_AIDE_CNTRCT_CNT = 'Occupational Therapy Aide - Contract' 1719 OT_AIDE_FLTM_CNT = 'Occupational Therapy Aide - Full-Time' 1720 OT_AIDE_PRTM_CNT = 'Occupational Therapy Aide - Part-Time' 1721 OT_ASTNT_AIDE_CNTRCT_CNT = 'Occupational Therapy Assistant - Contract' 1722 OT_ASTNT_AIDE_FLTM_CNT = 'Occupational Therapy Assistant - Full-Time' 1723 OT_ASTNT_AIDE_PRTM_CNT = 'Occupational Therapy Assistant - Part-Time' 1724 OPRTG_ROOM_CNT = 'Operating Rooms' 1725 ORGNZ_FMLY_MBR_GRP_SW = 'Organized Family Group' 1726 ORGNZ_RSDNT_GRP_SW = 'Organized Resident Group' 1727 ORTHTC_PRSTHTC_SRVC_CD = 'Orthotic/Prosthetic Service Code' 1728 STF_OTHR_CNTRCT_CNT = 'Other - Contract' 1729 STF_OTHR_FLTM_CNT = 'Other - Full-Time' 1730 STF_OTHR_PRTM_CNT = 'Other - Part-Time' 1731 PRSNEL_OTHR_CNT = 'Other Personnel' 1732 PHYSN_OTHR_CNTRCT_CNT = 'Other Physician Contract' 1733 PHYSN_OTHR_FLTM_CNT = 'Other Physician Full-Time' 1734 PHYSN_OTHR_PRTM_CNT = 'Other Physician Part-Time' 1735 SCL_SRVC_OTHR_STF_CNTRCT_CNT = 'Other Social Service Staff - Contract' 1736 SCL_SRVC_OTHR_STF_FLTM_CNT = 'Other Social Service Staff - Full-Time' 1737 SCL_SRVC_OTHR_STF_PRTM_CNT = 'Other Social Service Staff - Part-Time' 1738 PARENT_PROVIDER_NUMBER = 'Parent Provider Number' 1739 MDCR_PRTCPTN_OP_PT_SPCH_SW = 'Participation Medicare OPT / SP' 1740 PHRMCST_CNTRCT_CNT = 'Pharmacists - Contract' 1741 PHRMCST_FLTM_CNT = 'Pharmacists - Full-Time' 1742 PHRMCST_PRTM_CNT = 'Pharmacists - Part-Time' 1743 PHYS_THRPST_ARNGMT_CNT = 'Physical Therapist - Arrangement' 1744 PHYS_THRPST_CNT = 'Physical Therapists' 1745 PHYS_THRPST_CNTRCT_CNT = 'Physical Therapists - Contract' 1746 PHYS_THRPST_FLTM_CNT = 'Physical Therapists - Full-Time' 1747 PHYS_THRPST_PRTM_CNT = 'Physical Therapists - Part-Time' 1748 PHYS_THRPST_STF_CNT = 'Physical Therapists on Staff' 1749 PT_AIDE_CNTRCT_CNT = 'Physical Therapy Aide - Contract' 1750 PT_AIDE_FLTM_CNT = 'Physical Therapy Aide - Full-Time' 1751 PT_AIDE_PRTM_CNT = 'Physical Therapy Aide - Part-Time' 1752 PT_ASTNT_CNTRCT_CNT = 'Physical Therapy Assistant - Contract' 1753 PT_ASTNT_FLTM_CNT = 'Physical Therapy Assistant - Full-Time' 1754 PT_ASTNT_PRTM_CNT = 'Physical Therapy Assistant - Part-Time' 1755 PHYSN_ASTNT_CNT = 'Physician Assistants (PA)' 1756 PHYSN_EXT_CNTRCT_CNT = 'Physician Extender - Contract' 1757 PHYSN_EXT_FLTM_CNT = 'Physician Extender Full-Time Count (F37B)' 1758 PHYSN_EXT_PRTM_CNT = 'Physician Extender Part-Time Count (F37C)' 1759 PHYSN_EXT_SRVC_OFSITE_RSDNT_SW = 'Physician Extender Service Offsite To Resident Switch (F37A3)' 1760 PHYSN_EXT_SRVC_ONST_NRSDNT_SW = 'Physician Extender Service Onsite To Non-Resident Switch (F37A2)' 1761 PHYSN_EXT_SRVC_ONST_RSDNT_SW = 'Physician Extender Service Onsite To Resident Switch (F37A1)' 1762 PHYSN_CNT = 'Physicians' 1763 RSDNT_PHYSN_CNT = 'Physicians (Residents)' 1764 PHYSN_VLNTR_CNT = 'Physicians - Volunteer' 1765 PDTRST_CNTRCT_CNT = 'Podiatrists - Contract' 1766 PDTRST_FLTM_CNT = 'Podiatrists - Full-Time' 32 The SAS System 17:47 Tuesday, January 8, 2013 1767 PDTRST_PRTM_CNT = 'Podiatrists - Part-Time' 1768 AGRMT_END_PRIOR_DT = 'Prior LTC Agreement Ending Date' 1769 AGRMT_EXTNSN_PRIOR_DT = 'Prior LTC Agreement Extension Date' 1770 RSCND_SUSPNSN_PRIOR_DT = 'Prior Rescind Suspension Date' 1771 PGM_PRTCPTN_CD = 'Program Participation' 1772 PRVDR_BSD_FAC_SW = 'Provider Based Facility' 1773 PSYCH_UNIT_BED_CNT = 'Psychiatric Unit Bed Count' 1774 PSYCH_UNIT_EFCTV_DT = 'Psychiatric Unit Effective Date' 1775 PSYCH_UNIT_SW = 'Psychiatric Unit Switch' 1776 PSYCH_UNIT_TRMNTN_CD = 'Psychiatric Unit Termination Code' 1777 PSYCH_UNIT_TRMNTN_DT = 'Psychiatric Unit Termination Date' 1778 PSYCHLGST_CNT = 'Psychologist Count' 1779 RDLGY_TCHNCN_CNT = 'Radiology Technician Count' 1780 OVRRD_BED_CNT_SW = 'Regional Override # 1 (Number Beds)' 1781 OVRRD_STFG_SW = 'Regional Override # 2 (Staffing)' 1782 OVRRD_NRS_BED_SW = 'Regional Override # 3 (Nurse - Bed)' 1783 RN_CNTRCT_CNT = 'Registered Nurse - Contract' 1784 RN_FLTM_CNT = 'Registered Nurse - Full-Time' 1785 RN_PRTM_CNT = 'Registered Nurse - Part-Time' 1786 RN_CNT = 'Registered Nurses' 1787 RN_VLNTR_CNT = 'Registered Nurses - Volunteer' 1788 REG_PHRMCST_CNT = 'Registered Pharmacists' 1789 REHAB_UNIT_BED_CNT = 'Rehabilitation Unit Bed Count' 1790 REHAB_UNIT_EFCTV_DT = 'Rehabilitation Unit Effective Date' 1791 REHAB_UNIT_SW = 'Rehabilitation Unit Switch' 1792 REHAB_UNIT_TRMNTN_CD = 'Rehabilitation Unit Termination Code' 1793 REHAB_UNIT_TRMNTN_DT = 'Rehabilitation Unit Termination Date' 1794 RELATED_PROVIDER_NUMBER = 'Related Provider Number' 1795 RSCND_SUSPNSN_DT = 'Rescind Suspension Date' 1796 RSDNT_PGM_ADA_APRVD_SW = 'Resident Program Approved by ADA' 1797 RSDNT_PGM_AMA_APRVD_SW = 'Resident Program Approved by AMA' 1798 RSDNT_PGM_AOA_APRVD_SW = 'Resident Program Approved by AOA' 1799 RSDNT_PGM_OTHR_APRVD_SW = 'Resident Program Approved by Other' 1800 INHLTN_THRPST_CNT = 'Respiratory Therapists' 1801 RN_DRCTR_CNTRCT_CNT = 'RN Director of Nursing - Contract' 1802 RN_DRCTR_FLTM_CNT = 'RN Director of Nursing - Full-Time' 1803 RN_DRCTR_PRTM_CNT = 'RN Director of Nursing - Part-Time' 1804 ACTVTY_OFSITE_RSDNT_SW = 'Service: Activities-Offsite-Residents Switch' 1805 ACTVTY_ONST_NRSDNT_SW = 'Service: Activities-Onsite-Nonresidents Switch' 1806 ACTVTY_ONST_RSDNT_SW = 'Service: Activities-Onsite-Residents Switch' 1807 APLNC_EQUIP_SRVC_CD = 'Service: Appliance and Equipment' 1808 BLOOD_SRVC_OFSITE_RSDNT_SW = 'Service: Blood Administered-Offsite-Resident' 1809 BLOOD_SRVC_ONST_NRSDNT_SW = 'Service: Blood Administered-Onsite-Nonresident' 1810 BLOOD_SRVC_ONST_RSDNT_SW = 'Service: Blood Administered-Onsite-Resident' 1811 CL_SRVC_OFSITE_RSDNT_SW = 'Service: Clinical Laboratory-Offsite-Resident' 1812 CL_SRVC_ONST_NRSDNT_SW = 'Service: Clinical Laboratory-Onsite-Nonresident' 1813 CL_SRVC_ONST_RSDNT_SW = 'Service: Clinical Laboratory-Onsite-Resident' 1814 CNSLNG_SRVC_CD = 'Service: Counseling' 1815 DNTL_SRVC_ONST_NRSDNT_SW = 'Service: Dental On-Site Nonresidents' 1816 DNTL_SRVC_OFSITE_RSDNT_SW = 'Service: Dental Off-Site Residents' 1817 DNTL_SRVC_ONST_RSDNT_SW = 'Service: Dental On-Site Residents' 1818 DTRY_ONST_NRSDNT_SW = 'Service: Dietary On-Site Nonresidents' 1819 DTRY_OFSITE_RSDNT_SW = 'Service: Dietary Off-Site Residents' 1820 DTRY_ONST_RSDNT_SW = 'Service: Dietary On-Site Residents' 1821 EKG_SRVC_CD = 'Service: EKG' 1822 HH_AIDE_SRVC_CD = 'Service: Home Health Aide' 1823 HMMKR_SRVC_CD = 'Service: Homemaker' 1824 HSEKPNG_SRVC_ONST_NRSDNT_SW = 'Service: Housekeeping On-Site to Nonresidents' 33 The SAS System 17:47 Tuesday, January 8, 2013 1825 HSEKPNG_SRVC_OFSITE_RSDNT_SW = 'Service: Housekeeping Off-Site to Residents' 1826 HSEKPNG_SRVC_ONST_RSDNT_SW = 'Service: Housekeeping On-Site to Residents' 1827 INTRN_RSDNT_SRVC_CD = 'Service: Interns and Residents' 1828 LAB_SRVC_CD = 'Service: Laboratory' 1829 MDCL_SCL_SRVC_CD = 'Service: Medical Social' 1830 MDCL_SUPLY_SRVC_CD = 'Service: Medical Supplies' 1831 MENTL_HLTH_OFSITE_RSDNT_SW = 'Service: Mental Health Off-Site to Residents' 1832 MENTL_HLTH_ONST_RSDNT_SW = 'Service: Mental Health On-Site to Residents' 1833 MENTL_HLTH_ONST_NRSDNT_SW = 'Service: Mental Health On-site to Nonresidents' 1834 NRSNG_SRVC_CD = 'Service: Nursing' 1835 NRSNG_SRVC_ONST_NRSDNT_SW = 'Service: Nursing On-Site to Nonresidents' 1836 NRSNG_2_SRVC_CD = 'Service: Nursing #2' 1837 NRSNG_3_SRVC_CD = 'Service: Nursing #3' 1838 NRSNG_SRVC_OFSITE_RSDNT_SW = 'Service: Nursing Off-Site to Residents' 1839 NRSNG_SRVC_ONST_RSDNT_SW = 'Service: Nursing On-Site to Residents' 1840 NTRTNL_GDNC_SRVC_CD = 'Service: Nutritional Guidance' 1841 OT_SRVC_ONST_NRSDNT_SW = 'Service: Occupational Therapy On-Site to Nonresidents' 1842 OT_2_SRVC_CD = 'Service: Occupational Therapy #2' 1843 OT_3_SRVC_CD = 'Service: Occupational Therapy #3' 1844 OT_SRVC_OFSITE_RSDNT_SW = 'Service: Occupational Therapy Off-Site to Residents' 1845 OT_SRVC_ONST_RSDNT_SW = 'Service: Occupational Therapy On-Site to Residents' 1846 ORTHTC_PRSTHTC_2_SRVC_CD = 'Service: Orthotic Prosthetic #2' 1847 ORTHTC_PRSTHTC_3_SRVC_CD = 'Service: Orthotic/Prosthetic #3' 1848 OTHR_SRVC_CD = 'Service: Other' 1849 ACTVTY_OTHR_OFSITE_RSDNT_SW = 'Service: Other Activities-Offsite-Residents Switch' 1850 ACTVTY_OTHR_ONST_NRSDNT_SW = 'Service: Other Activities-Onsite-Nonresidents Switch' 1851 ACTVTY_OTHR_ONST_RSDNT_SW = 'Service: Other Activities-Onsite-Residents Switch' 1852 SCL_SRVC_OTHR_OFSITE_RSDNT_SW = 'Service: Other Off-Site to Residents' 1853 SCL_SRVC_OTHR_ONST_NRSDNT_SW = 'Service: Other On-Site to Nonresidents' 1854 SCL_SRVC_OTHR_ONST_RSDNT_SW = 'Service: Other On-Site to Residents' 1855 PHRMCY_SRVC_OFSITE_RSDNT_SW = 'Service: Pharmacy Off-Site to Residents' 1856 PHRMCY_SRVC_ONST_NRSDNT_SW = 'Service: Pharmacy On-Site to Nonresidents' 1857 PHRMCY_SRVC_ONST_RSDNT_SW = 'Service: Pharmacy On-Site to Residents' 1858 PT_2_SRVC_CD = 'Service: Physical Therapy #2' 1859 PT_3_SRVC_CD = 'Service: Physical Therapy #3' 1860 PT_OFSITE_RSDNT_SW = 'Service: Physical Therapy Off-Site to Residents' 1861 PT_ONST_NRSDNT_SW = 'Service: Physical Therapy On-Site to Nonresidents' 1862 PT_ONST_RSDNT_SW = 'Service: Physical Therapy On-Site to Residents' 1863 PHYSN_SRVC_CD = 'Service: Physician' 1864 PHYSN_2_SRVC_CD = 'Service: Physician #2' 1865 PHYSN_3_SRVC_CD = 'Service: Physician #3' 1866 PHYSN_SRVC_OFSITE_RSDNT_SW = 'Service: Physician Off-Site to Residents' 1867 PHYSN_SRVC_ONST_NRSDNT_SW = 'Service: Physician On-Site to Nonresidents' 1868 PHYSN_SRVC_ONST_RSDNT_SW = 'Service: Physician On-Site to Residents' 1869 PDTRY_SRVC_OFSITE_RSDNT_SW = 'Service: Podiatry Off-Site to Residents' 1870 PDTRY_SRVC_ONST_NRSDNT_SW = 'Service: Podiatry On-Site to Nonresidents' 1871 PDTRY_SRVC_ONST_RSDNT_SW = 'Service: Podiatry On-Site to Residents' 1872 PSYCHLGCL_SRVC_CD = 'Service: Psychological' 1873 PSYCHLGCL_2_SRVC_CD = 'Service: Psychological #2' 1874 PSYCHLGCL_3_SRVC_CD = 'Service: Psychological #3' 1875 RDLGY_SRVC_CD = 'Service: Radiology' 1876 RSPRTRY_CARE_2_SRVC_CD = 'Service: Respiratory Care #2' 1877 RSPRTRY_CARE_3_SRVC_CD = 'Service: Respiratory Care #3' 1878 SHRT_TERM_IP_SRVC_CD = 'Service: Short Term Inpatient' 1879 SCL_2_SRVC_CD = 'Service: Social #2' 1880 SCL_3_SRVC_CD = 'Service: Social #3' 1881 SCL_WORK_SRVC_OFSITE_RSDNT_SW = 'Service: Social Work Off-Site to Residents' 1882 SCL_WORK_SRVC_ONST_NRSDNT_SW = 'Service: Social Work On-Site to Nonresidents' 34 The SAS System 17:47 Tuesday, January 8, 2013 1883 SCL_WORK_SRVC_ONST_RSDNT_SW = 'Service: Social Work On-Site to Residents' 1884 SPCH_PTHLGY_2_SRVC_CD = 'Service: Speech Pathology #2' 1885 SPCH_PTHLGY_3_SRVC_CD = 'Service: Speech Pathology #3' 1886 SPCH_PTHLGY_OFSITE_RSDNT_SW = 'Service: Speech Pathology Off-Site to Residents' 1887 SPCH_PTHLGY_ONST_NRSDNT_SW = 'Service: Speech Pathology On-Site to Nonresidents' 1888 SPCH_PTHLGY_ONST_RSDNT_SW = 'Service: Speech Pathology On-Site to Residents' 1889 SPCH_THRPY_SRVC_CD = 'Service: Speech Therapy' 1890 THRPTC_RCRTNL_OFSITE_RSDNT_SW = 'Service: Therapeutic Recreational Specialty Off-Site to Residents' 1891 THRPTC_RCRTNL_ONST_NRSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Non Residents' 1892 THRPTC_RCRTNL_ONST_RSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Residents' 1893 VCTNL_GDNC_SRVC_CD = 'Service: Vocational Guidance' 1894 VCTNL_SRVC_OFSITE_RSDNT_SW = 'Service: Vocational Off-Site to Residents' 1895 VCTNL_SRVC_ONST_NRSDNT_SW = 'Service: Vocational On-Site to Nonresidents' 1896 VCTNL_SRVC_ONST_RSDNT_SW = 'Service: Vocational On-Site to Residents' 1897 DGNSTC_XRAY_OFSITE_RSDNT_SW = 'Service: X-ray Off-Site Residents' 1898 DGNSTC_XRAY_ONST_NRSDNT_SW = 'Service: X-ray On-Site Nonresidents' 1899 DGNSTC_XRAY_ONST_RSDNT_SW = 'Service: X-ray On-Site Residents' 1900 OPEN_HRT_SRGRY_SRVC_CD = 'Services Provided: Cardiac - Thoracic Surgery' 1901 PSTOPRTV_RCVRY_SRVC_CD = 'Services Provided: Postoperative Recovery Room' 1902 ACUTE_RNL_DLYS_SRVC_CD = 'Services Provided: Acute Renal Dialysis' 1903 ACUTE_RNL_DLYS_SRVC_DESC = 'Services Provided: Acute Renal Dialysis Description' 1904 ALCHL_DRUG_SRVC_DESC = 'Services Provided: Alcohol and or Drug Description' 1905 ALCHL_DRUG_SRVC_CD = 'Services Provided: Alcohol and/or Drug' 1906 ANSTHSA_SRVC_CD = 'Services Provided: Anesthesia' 1907 ANSTHSA_SRVC_DESC = 'Services Provided: Anesthesia Description' 1908 AUDLGY_SRVC_CD = 'Services Provided: Audiology' 1909 AUDLGY_SRVC_DESC = 'Services Provided: Audiology Description' 1910 BURN_CARE_UNIT_SRVC_CD = 'Services Provided: Burn Care Unit' 1911 BURN_CARE_UNIT_SRVC_DESC = 'Services Provided: Burn Care Unit Description' 1912 OPEN_HRT_SRGRY_SRVC_DESC = 'Services Provided: Cardiac - Thoracic Surgery Description' 1913 CRDC_CTHTRZTN_LAB_SRVC_CD = 'Services Provided: Cardiac Catheterization Lab' 1914 CRDC_CTHTRZTN_LAB_SRVC_DESC = 'Services Provided: Cardiac Catheterization Lab Description' 1915 CARF_IP_REHAB_SRVC_CD = 'Services Provided: CARF Inpatient Rehabilitation Code' 1916 CARF_IP_REHAB_SRVC_DESC = 'Services Provided: CARF Inpatient Rehabilitation Description' 1917 CHMTHRPY_SRVC_CD = 'Services Provided: Chemotherapy' 1918 CHMTHRPY_SRVC_DESC = 'Services Provided: Chemotherapy Description' 1919 CHLD_ADLSCNT_PSYCH_SRVC_DESC = 'Services Provided: Child Adolescent Psychiatric Description' 1920 CHRPRCTIC_SRVC_CD = 'Services Provided: Chiropractic' 1921 CHRPRCTIC_SRVC_DESC = 'Services Provided: Chiropractic Description' 1922 CL_SRVC_CD = 'Services Provided: Clinical Laboratory' 1923 CL_SRVC_DESC = 'Services Provided: Clinical Laboratory Description' 1924 CT_SCAN_SRVC_CD = 'Services Provided: CT Scanner' 1925 CT_SCAN_SRVC_DESC = 'Services Provided: CT Scanner Description' 1926 DNTL_SRVC_CD = 'Services Provided: Dental' 1927 DNTL_SRVC_DESC = 'Services Provided: Dental Description' 1928 DGNSTC_RDLGY_SRVC_DESC = 'Services Provided: Diagnostic Radiology Description' 1929 DTRY_SRVC_CD = 'Services Provided: Dietary' 1930 DTRY_SRVC_DESC = 'Services Provided: Dietary Description' 1931 DCTD_ER_SRVC_DESC = 'Services Provided: Emergency Dept (Dedicated) Description' 1932 DCTD_ER_SRVC_CD = 'Services Provided: Emergency Dept(Dedicated)' 1933 XTRCRPRL_SHCK_LTHTRPTR_SRVC_CD = 'Services Provided: Extracorporeal Shock Wave' 1934 XTRCRPRL_SHCK_LTHTRPTR_SRVCDSC = 'Services Provided: Extracorporeal Shock Wave Description' 1935 GRNTLGCL_SPCLTY_SRVC_CD = 'Services Provided: Gerontological Specialty' 1936 GRNTLGCL_SPCLTY_SRVC_DESC = 'Services Provided: Gerontological Specialty Description' 1937 CRNRY_CARE_UNIT_SRVC_CD = 'Services Provided: ICU Cardiac (non-surgical)' 1938 CRNRY_CARE_UNIT_SRVC_DESC = 'Services Provided: ICU Cardiac (non-surgical) Description' 1939 ICU_SRVC_CD = 'Services Provided: ICU Medical/Surgical' 1940 ICU_SRVC_DESC = 'Services Provided: ICU Medical/Surgical Description' 35 The SAS System 17:47 Tuesday, January 8, 2013 1941 NEONTL_ICU_SRVC_CD = 'Services Provided: ICU Neonatal' 1942 PED_ICU_SRVC_CD = 'Services Provided: ICU Pediatric' 1943 SRGCL_ICU_SRVC_CD = 'Services Provided: ICU Surgical' 1944 IP_SRGCL_SRVC_CD = 'Services Provided: Inpatient Surgical' 1945 IP_SRGCL_SRVC_DESC = 'Services Provided: Inpatient Surgical Description' 1946 MGNTC_RSNC_IMG_SRVC_CD = 'Services Provided: Magnetic Resonance Imaging' 1947 MGNTC_RSNC_IMG_SRVC_DESC = 'Services Provided: Magnetic Resonance Imaging Description' 1948 NEONTL_ICU_SRVC_DESC = 'Services Provided: Neonatal ICU Description' 1949 NEONTL_NRSRY_SRVC_CD = 'Services Provided: Neonatal Nursery' 1950 NEONTL_NRSRY_SRVC_DESC = 'Services Provided: Neonatal Nursery Description' 1951 NRSRGCL_SRVC_DESC = 'Services Provided: Neurosurgical Description' 1952 NRSRGCL_SRVC_CD = 'Services Provided: Neurosurgical Services' 1953 NUCLR_MDCN_SRVC_CD = 'Services Provided: Nuclear Medicine' 1954 NUCLR_MDCN_SRVC_DESC = 'Services Provided: Nuclear Medicine Description' 1955 OB_SRVC_CD = 'Services Provided: Obstetrics' 1956 OB_SRVC_DESC = 'Services Provided: Obstetrics Description' 1957 OT_SRVC_CD = 'Services Provided: Occupational Therapy' 1958 OT_SRVC_DESC = 'Services Provided: Occupational Therapy Description' 1959 OPRTG_ROOM_SRVC_DESC = 'Services Provided: Operating Room Description' 1960 OPRTG_ROOM_SRVC_CD = 'Services Provided: Operating Rooms' 1961 OPTHLMC_SRGY_SRVC_CD = 'Services Provided: Ophthalmic Surgery' 1962 OPTHLMC_SRGY_SRVC_DESC = 'Services Provided: Ophthalmic Surgery Description' 1963 OPTMTRC_SRVC_CD = 'Services Provided: Optometric' 1964 OPTMTRC_SRVC_DESC = 'Services Provided: Optometric Description' 1965 ORGN_TRNSPLNT_SRVC_CD = 'Services Provided: Organ Transplant (Not Medicare Certified)' 1966 ORGN_TRNSPLNT_SRVC_DESC = 'Services Provided: Organ Transplant (Not Medicare Certified) Description' 1967 ORTHPDC_SRGY_SRVC_CD = 'Services Provided: Orthopedic Surgery' 1968 ORTHPDC_SRGY_SRVC_DESC = 'Services Provided: Orthopedic Surgery Description' 1969 OP_SRVC_CD = 'Services Provided: Outpatient' 1970 OP_SRVC_DESC = 'Services Provided: Outpatient Description' 1971 OP_SRGRY_UNIT_SRVC_CD = 'Services Provided: Outpatient Surgery' 1972 OP_SRGRY_UNIT_SRVC_DESC = 'Services Provided: Outpatient Surgery Description' 1973 PED_SRVC_CD = 'Services Provided: Pediatric' 1974 PED_SRVC_DESC = 'Services Provided: Pediatric Description' 1975 PED_ICU_SRVC_DESC = 'Services Provided: Pediatric ICU Description' 1976 PET_SCAN_SRVC_CD = 'Services Provided: PET Scan Services' 1977 PET_SCAN_SRVC_DESC = 'Services Provided: PET Scanner Description' 1978 PHRMCY_SRVC_CD = 'Services Provided: Pharmacy' 1979 PHRMCY_SRVC_DESC = 'Services Provided: Pharmacy Description' 1980 PT_SRVC_CD = 'Services Provided: Physical Therapy' 1981 PT_SRVC_DESC = 'Services Provided: Physical Therapy Description' 1982 PSTOPRTV_RCVRY_SRVC_DESC = 'Services Provided: Postoperative Recovery Room Description' 1983 PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Adult Inpatient' 1984 PSYCH_SRVC_DESC = 'Services Provided: Psychiatric - Adult Inpatient Description' 1985 EMER_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Emergency' 1986 FRNSC_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Forensic' 1987 GRTRC_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Geriatric' 1988 OP_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Outpatient' 1989 CHLD_ADLSCNT_PSYCH_SRVC_CD = 'Services Provided: Psychiatric Child/Adolescent' 1990 EMER_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Emergency Description' 1991 FRNSC_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Forensic Description' 1992 GRTRC_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Geriatric Description' 1993 OP_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Outpatient Description' 1994 DGNSTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Diagnostic)' 1995 THRPTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Therapeutic)' 1996 THRPTC_RDLGY_SRVC_DESC = 'Services Provided: Radiology Therapeutic Description' 1997 RCNSTRCTN_SRGY_SRVC_DESC = 'Services Provided: Reconstruction Surgery Description' 1998 RCNSTRCTN_SRGY_SRVC_CD = 'Services Provided: Reconstructive Surgery' 36 The SAS System 17:47 Tuesday, January 8, 2013 1999 OP_REHAB_SRVC_CD = 'Services Provided: Rehabilitation Outpatient' 2000 OP_REHAB_SRVC_DESC = 'Services Provided: Rehabilitation Outpatient Description' 2001 RSPRTRY_CARE_SRVC_CD = 'Services Provided: Respiratory Care' 2002 RSPRTRY_CARE_SRVC_DESC = 'Services Provided: Respiratory Care Description' 2003 SCL_SRVC_CD = 'Services Provided: Social' 2004 SCL_SRVC_DESC = 'Services Provided: Social Description' 2005 SPCH_PTHLGY_SRVC_CD = 'Services Provided: Speech Pathology' 2006 SPCH_PTHLGY_SRVC_DESC = 'Services Provided: Speech Pathology Description' 2007 SRGCL_ICU_SRVC_DESC = 'Services Provided: Surgical ICU Description' 2008 MDCR_TRNSPLNT_CNTR_SRVC_CD = 'Services Provided: Transplant Center (Medicare Certified)' 2009 MDCR_TRNSPLNT_CNTR_SRVC_DESC = 'Services Provided: Transplant Center (Medicare Certified) Description' 2010 SHCK_TRMA_SRVC_CD = 'Services Provided: Trauma Center (Designated)' 2011 SHCK_TRMA_SRVC_DESC = 'Services Provided: Trauma Center (Designated) Description' 2012 URGNT_CARE_SRVC_CD = 'Services Provided: Urgent Care Center Services' 2013 URGNT_CARE_SRVC_DESC = 'Services Provided: Urgent Care Description' 2014 SCL_WORKR_CNTRCT_CNT = 'Social Worker - Contract' 2015 SCL_WORKR_FLTM_CNT = 'Social Worker - Full-Time' 2016 SCL_WORKR_PRTM_CNT = 'Social Worker - Part-Time' 2017 SCL_WORKR_CNT = 'Social Workers' 2018 REHAB_BED_CNT = 'Special Care Bed - Specialized Rehab' 2019 AIDS_BED_CNT = 'Special Care Beds - AIDS' 2020 ALZHMR_BED_CNT = 'Special Care Beds - Alzheimers' 2021 DLYS_BED_CNT = 'Special Care Beds - Dialysis' 2022 DSBL_CHLDRN_BED_CNT = 'Special Care Beds - Disabled Child' 2023 HEAD_TRMA_BED_CNT = 'Special Care Beds - Head Trauma' 2024 HOSPC_BED_CNT = 'Special Care Beds - Hospice' 2025 HNTGTN_DEASE_BED_CNT = 'Special Care Beds - Huntingtons' 2026 VNTLTR_BED_CNT = 'Special Care Beds - Ventilator' 2027 THORC_SRGRY_SW = 'Speciality: Thoracic Surgery' 2028 URLGY_SRGRY_SW = 'Speciality: Urology' 2029 CRDVSCLR_SRGRY_SW = 'Specialty: Cardiovascular' 2030 FT_SRGRY_SW = 'Specialty: Foot' 2031 NRLGCL_SRGRY_SW = 'Specialty: Neurological' 2032 OB_GYN_SRGRY_SW = 'Specialty: Obstetrics / Gynecology' 2033 OPTHMLGY_SRGRY_SW = 'Specialty: Opthamology' 2034 ORAL_SRGRY_SW = 'Specialty: Oral' 2035 ORTHPDC_SRGRY_SW = 'Specialty: Orthopedic' 2036 OTLRYNGLGY_SRGRY_SW = 'Specialty: Otolaryngology' 2037 PLSTC_SRGRY_SW = 'Specialty: Plastic Surgery' 2038 GNRL_SRGRY_SW = 'Specialty: Surgery' 2039 SPCH_PTHLGST_CNTRCT_CNT = 'Speech Pathologist - Contract' 2040 SPCH_PTHLGST_FLTM_CNT = 'Speech Pathologist - Full-Time' 2041 SPCH_PTHLGST_PRTM_CNT = 'Speech Pathologist - Part-Time' 2042 SPCH_PTHLGST_AUDLGST_CNT = 'Speech Pathologist or Audiologist' 2043 SPCH_PTHLGST_ARNGMT_CNT = 'Speech Pathologists - Arrangement' 2044 SPCH_PTHLGST_CNT = 'Speech Pathologists - Total' 2045 HMDLYS_STN_ESRD_CNT = 'Stations - Hemodialysis' 2046 DLYS_STN_CNT = 'Stations - Total' 2047 SBUNIT_OPRTN_SW = 'Subunit Operation Switch' 2048 SBUNIT_SW = 'Subunit Switch' 2049 SBUNIT_CNT = 'Subunits' 2050 SRTY_BOND_CD = 'Surety Bond Indicator' 2051 SB_SIZE_CD = 'Swing Bed Size Code' 2052 SB_SW = 'Swing Bed Switch' 2053 TCHNLGST_2_YR_RDLGC_CNT = 'Technologists - 2 Year Radiology' 2054 TCHNLGST_ASCT_DGR_CNT = 'Technologists - Associate Degree' 2055 TCHNLGST_BS_BA_DGR_CNT = 'Technologists - BS/BA Degree' 2056 THRPTC_RCRTNL_CNTRCT_CNT = 'Therapeutic Recreational Specialty - Contract' 37 The SAS System 17:47 Tuesday, January 8, 2013 2057 THRPTC_RCRTNL_FLTM_CNT = 'Therapeutic Recreational Specialty - Full-Time' 2058 THRPTC_RCRTNL_PRTM_CNT = 'Therapeutic Recreational Specialty - Part-Time' 2059 FED_PGM_NAME = 'Title of Federal Program' 2060 EMPLEE_CNT = 'Total Number of Employees' 2061 GNRL_FAC_TYPE_CD = 'Type of Facility' 2062 NPP_TYPE_CD = 'Type of Non-Participating Provider' 2063 VLNTR_OTHR_CNT = 'Volunteers - Other' 2064 VLNTR_CNT = 'Volunteers - Total' 2065 ; 2066 2067 format 2068 CHOW_DT 2069 CRTFCTN_DT 2070 ORGNL_PRTCPTN_DT 2071 CHOW_PRIOR_DT 2072 TRMNTN_EXPRTN_DT 2073 ACRDTN_EFCTV_DT 2074 ACRDTN_EXPRTN_DT 2075 ADMSN_SUSPNSN_DT 2076 ADMSN_SUSPNSN_PRIOR_DT 2077 ASC_BGN_SRVC_DT 2078 VLDTN_SRVY_DT 2079 AGRMT_BGN_DT 2080 AGRMT_END_DT 2081 AGRMT_EXTNSN_DT 2082 AGRMT_END_PRIOR_DT 2083 AGRMT_EXTNSN_PRIOR_DT 2084 RSCND_SUSPNSN_PRIOR_DT 2085 PSYCH_UNIT_EFCTV_DT 2086 PSYCH_UNIT_TRMNN_DT 2087 REHAB_UNIT_EFCTV_DT 2088 REHAB_UNIT_TRMNTN_DT 2089 RSCND_SUSPNSN_DT 2090 date9. ; 2091 2092 proc sort data=WORK.&dataset.; 2093 by &sortit.; 2094 proc format; 2095 value $pcat 2096 "01"="01 Hospitals" 2097 "02"="02 SNF/NF (Dually Certified)" 2098 "03"="03 SNF/NF (Distinct Part)" 2099 "04"="04 Skilled Nursing Facility" 2100 "05"="05 Home Health Agencies" 2101 "07"="07 Portable X-ray Suppliers" 2102 "08"="08 Outpatient Physical Therapy/Speech Pathology" 2103 "09"="09 End Stage Renal Disease" 2104 "10"="10 Nursing Facilities" 2105 "11"="11 Intermediate Care Facility-Mentally Retarded" 2106 "12"="12 Rural Health Clinics" 2107 "13"="13 Physical Therapists in Independent Practice" 2108 "14"="14 Comprehensive Outpatient Rehab Facilities" 2109 "15"="15 Ambulatory Surgical Center" 2110 "16"="16 Hospices" 2111 "17"="17 Organ Procurement Organizations" 2112 "19"="19 Community Mental Health Centers" 2113 "21"="21 Federally Qualified Health Centers" 2114 "22"="22 CLIA88 Laboratories" 38 The SAS System 17:47 Tuesday, January 8, 2013 2115 ; 2116 2117 proc freq; 2118 tables PRVDR_CTGRY_CD; 2119 format PRVDR_CTGRY_CD $pcat.; 2120 proc print DATA = WORK.&dataset. ( obs = 5 ); 2121 proc contents data = WORK.&dataset. ; 2122 2123 %mend; 2124 %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. 39 The SAS System 17:47 Tuesday, January 8, 2013 @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 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. 40 The SAS System 17:47 Tuesday, January 8, 2013 @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 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; 41 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 42 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 43 The SAS System 17:47 Tuesday, January 8, 2013 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; 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. 44 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 45 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 46 The SAS System 17:47 Tuesday, January 8, 2013 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_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; 47 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 48 The SAS System 17:47 Tuesday, January 8, 2013 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 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; 49 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 50 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 51 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 52 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 53 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 54 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 55 The SAS System 17:47 Tuesday, January 8, 2013 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; 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; 56 The SAS System 17:47 Tuesday, January 8, 2013 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 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; 57 The SAS System 17:47 Tuesday, January 8, 2013 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 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; 58 The SAS System 17:47 Tuesday, January 8, 2013 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; 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): ***************************************************************; MPRINT(LOOP): *** ; 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' 59 The SAS System 17:47 Tuesday, January 8, 2013 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' 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: 60 The SAS System 17:47 Tuesday, January 8, 2013 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 = '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 = 61 The SAS System 17:47 Tuesday, January 8, 2013 '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 = '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' 62 The SAS System 17:47 Tuesday, January 8, 2013 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 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.14 seconds cpu time 0.05 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 63 The SAS System 17:47 Tuesday, January 8, 2013 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.03 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): real time 0.01 seconds cpu time 0.02 seconds MPRINT(LOOP): proc contents data = WORK.pos2011 ; 2125 NOTE: The PROCEDURE CONTENTS printed pages 12-22. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.36 seconds cpu time 0.14 seconds