1 The SAS System 17:41 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:41 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:41 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:41 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:41 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:41 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:41 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:41 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:41 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:41 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:41 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:41 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:41 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:41 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 755 ***************************************************************; 756 *** ; 757 *** SAS LABEL Statement Follows ; 758 *** ; 759 ***************************************************************; 760 761 LABEL 762 763 PRVDR_CTGRY_SBTYP_CD = 'Provider Category Subtype Code' 764 PRVDR_CTGRY_CD = 'Provider Category Code' 765 CHOW_CNT = 'Change of Ownership Count' 766 CHOW_DT = 'Change of Ownership Date' 767 CITY_NAME = 'City' 768 ACPTBL_POC_SW = 'Compliance: Plan of Correction' 769 CMPLNC_STUS_CD = 'Compliance: Status' 770 SSA_CNTY_CD = 'SSA County Code' 771 CROSS_REF_PROVIDER_NUMBER = 'Cross Ref Provider Number' 772 CRTFCTN_DT = 'Certification Date' 773 ELGBLTY_SW = 'Eligibility Switch' 774 FAC_NAME = 'Facility Name' 775 INTRMDRY_CARR_CD = 'Intermediary Carrier Code' 776 MDCD_VNDR_NUM = 'Medicare or Medicaid Vendor Number' 777 ORGNL_PRTCPTN_DT = 'Participation Date' 778 CHOW_PRIOR_DT = 'Prior Change of Ownership Date' 779 INTRMDRY_CARR_PRIOR_CD = 'Intermediary Carrier Prior Code' 780 PRVDR_NUM = 'Provider Number' 15 The SAS System 17:41 Tuesday, January 8, 2013 781 REC_STUS_CD = 'Record Status Code' 782 RGN_CD = 'Region Code' 783 SKLTN_REC_SW = 'Skeleton Record Switch' 784 STATE_CD = 'State Abbreviation' 785 SSA_STATE_CD = 'SSA State Code' 786 STATE_RGN_CD = 'State Region Code' 787 ST_ADR = 'Street Address' 788 PHNE_NUM = 'Telephone Number' 789 PGM_TRMNTN_CD = 'Termination Code 1' 790 TRMNTN_EXPRTN_DT = 'Termination Date / Expiration Date 1' 791 SRVY_PRPSE_CD = 'Type of Action' 792 GNRL_CNTL_TYPE_CD = 'General Type of Control Code' 793 ZIP_CD = 'ZIP Code' 794 FIPS_STATE_CD = 'FIPS State Code' 795 FIPS_CNTY_CD = 'FIPS County Code' 796 CBSA_URBN_RRL_IND = 'CBSA Urban Rural Indicator' 797 ACRDTN_EFCTV_DT = 'Accreditation Effective Date' 798 ACRDTN_EXPRTN_DT = 'Accreditation Expiration Date' 799 ACRDTN_TYPE_CD = 'Accreditation Type Code' 800 ACTVTY_PROFNL_CNTRCT_CNT = 'Activity Professional Contract Count' 801 ACTVTY_PROFNL_FLTM_CNT = 'Activity Professional Full-Time Count' 802 ACTVTY_PROFNL_PRTM_CNT = 'Activity Professional Part-Time Count' 803 ACTVTY_STF_OTHR_CNTRCT_CNT = 'Activity Staff Other Contract Count' 804 ACTVTY_STF_OTHR_FLTM_CNT = 'Activity Staff Other Full-Time Count' 805 ACTVTY_STF_OTHR_PRTM_CNT = 'Activity Staff Other Part-Time Count' 806 ACUTE_RESP_CARE_CD = 'Acute/Respite Care Code' 807 PROFNL_ADMIN_CNTRCT_CNT = 'Administrator - Contract' 808 PROFNL_ADMIN_FLTM_CNT = 'Administrator - Full-Time' 809 PROFNL_ADMIN_PRTM_CNT = 'Administrator - Part-Time' 810 ADMSN_SUSPNSN_DT = 'Admission Suspension Date' 811 ADMSN_SUSPNSN_PRIOR_DT = 'Admission Suspension Prior Date' 812 HHA_TRNG_PGM_CD = 'Aide Training / Competency Programs' 813 MR_BED_CNT = 'Beds - ICF / MR' 814 MDCR_SNF_BED_CNT = 'Beds - Medicare SNF' 815 MDCD_SNF_BED_CNT = 'Beds - Nursing Facility' 816 MDCR_MDCD_SNF_BED_CNT = 'Beds - SNF / NF' 817 CRTFD_BED_CNT = 'Beds - Total Certified' 818 BED_CNT = 'Beds-Total' 819 BRNCH_OPRTN_SW = 'Branch Operation Switch' 820 BRNCH_CNT = 'Branches' 821 CLIA_ID_NUMBER_1 = 'CLIA ID Number 1' 822 CLIA_ID_NUMBER_2 = 'CLIA ID Number 2' 823 CLIA_ID_NUMBER_3 = 'CLIA ID Number 3' 824 CLIA_ID_NUMBER_4 = 'CLIA ID Number 4' 825 CLIA_ID_NUMBER_5 = 'CLIA ID Number 5' 826 NRS_AIDE_CNTRCT_CNT = 'Certification Nurse Aides - Contract' 827 NRS_AIDE_FLTM_CNT = 'Certification Nurse Aides - Full-Time' 828 NRS_AIDE_PRTM_CNT = 'Certification Nurse Aides - Part-Time' 829 CRNA_CNT = 'Certified Registered Nurse Anesthetists (CRNA)' 830 CHOW_SW = 'Change of Ownership Switch' 831 RN_24_HR_WVR_SW = 'Compliance: 24 Hour Registered Nurse' 832 RN_7_DAY_WVR_SW = 'Compliance: 7 Day Registered Nurse' 833 BED_PER_ROOM_WVR_SW = 'Compliance: Beds Per Room Waiver' 834 LSC_WVR_SW = 'Compliance: Life Safety Code' 835 ROOM_SIZE_WVR_SW = 'Compliance: Patient Room Size' 836 SCOPE_OF_SRVC_WVR_SW = 'Compliance: Scope of Service' 837 TCHNCL_PRSNEL_WVR_SW = 'Compliance: Technical Personnel Waiver' 838 CNSLR_EMPLEE_CNT = 'Counselors - Staff' 16 The SAS System 17:41 Tuesday, January 8, 2013 839 CNSLR_VLNTR_CNT = 'Counselors - Volunteer' 840 SRVY_EVER_ACRDTD_SW = 'Current Survey Ever Accredited' 841 SRVY_EVER_NACRDTD_SW = 'Current Survey Ever Non-Accredited' 842 SRVY_EVER_SB_SW = 'Current Survey Ever Swing Bed' 843 ASC_BGN_SRVC_DT = 'Date Center Began Providing Services' 844 VLDTN_SRVY_DT = 'Date of Validation Survey' 845 DNTST_CNTRCT_CNT = 'Dentists - Contract' 846 DNTST_FLTM_CNT = 'Dentists - Full-Time' 847 DNTST_PRTM_CNT = 'Dentists - Part-Time' 848 DIETN_CNT = 'Dietitians' 849 DIETN_CNTRCT_CNT = 'Dietitians - Contract' 850 DIETN_FLTM_CNT = 'Dietitians - Full-Time' 851 DIETN_PRTM_CNT = 'Dietitians - Part-Time' 852 DRCT_CARE_PRSNEL_CNT = 'Direct Care Personnel' 853 DRCTR_QUALN_CD = 'Director Qualifications' 854 ESRD_NTWRK_NUM = 'ESRD Network Number' 855 EXPRMT_RSRCH_CNDCTD_SW = 'Experimental Research Conducted' 856 FQHC_APPROVED_RHC_PROVIDER_NUM = 'FQHC Approved RHC Provider Num' 857 FAX_PHNE_NUM = 'Fax Phone Number' 858 FED_PGM_SPRT_SW = 'Federal Program Support' 859 FED_FUNDD_FQHC_SW = 'Federally Funded Health Center' 860 FY_END_MO_DAY_CD = 'Fiscal Year Ending Date' 861 FOOD_SRVC_CNTRCT_CNT = 'Food Service - Contract' 862 FOOD_SRVC_FLTM_CNT = 'Food Service - Full-Time' 863 FOOD_SRVC_PRTM_CNT = 'Food Service - Part-Time' 864 FQHC_APRVD_RHC_SW = 'FQHC Approved Rural Health Clinic' 865 HHA_QLFYD_OPT_SPCH_SW = 'HHA Qualified For Outpatient Physical Therapy' 866 HH_AIDE_CNT = 'Home Health Aides' 867 HH_AIDE_VLNTR_CNT = 'Home Health Aides - Volunteer' 868 HMMKR_EMPLEE_CNT = 'Homemakers - Staff' 869 HMMKR_VLNTR_CNT = 'Homemakers - Volunteer' 870 MDCR_HOSPC_SW = 'Hospice Switch' 871 HOSP_BSD_SW = 'Hospital Based Switch' 872 HSEKPNG_CNTRCT_CNT = 'Housekeeping - Contract' 873 HSEKPNG_FLTM_CNT = 'Housekeeping - Full-Time' 874 HSEKPNG_PRTM_CNT = 'Housekeeping - Part-Time' 875 LTC_CROSS_REF_PROVIDER_NUMBER = 'LTC Cross Ref Provider Number' 876 LPN_LVN_CNT = 'Licensed Practical/Vocational Nurses' 877 LPN_LVN_CNTRCT_CNT = 'LPN/LVN - Contract' 878 LPN_LVN_FLTM_CNT = 'LPN/LVN - Full-Time' 879 LPN_LVN_PRTM_CNT = 'LPN/LVN - Part-Time' 880 LPN_LVN_VLNTR_CNT = 'LPNS/LVNS Volunteer' 881 AGRMT_BGN_DT = 'LTC Agreement Beginning Date' 882 AGRMT_END_DT = 'LTC Agreement Ending Date' 883 AGRMT_EXTNSN_DT = 'LTC Agreement Extension Date' 884 MEDICARE_HOSPICE_PROVIDER_NUM = 'Medicare Hospice Provider Num' 885 MEDICARE_MEDICAID_PRVDR_NUMBER = 'Medicare Medicaid Prvdr Number' 886 MDCL_DRCTR_CNTRCT_CNT = 'Medical Director - Contract' 887 MDCL_DRCTR_FLTM_CNT = 'Medical Director - Full-Time' 888 MDCL_DRCTR_PRTM_CNT = 'Medical Director - Part-Time' 889 MDCL_SCHL_AFLTN_CD = 'Medical School Affiliation' 890 MDCL_SCL_WORKR_CNT = 'Medical Social Workers' 891 MDCL_SCL_WORKR_VLNTR_CNT = 'Medical Social Workers - Volunteer' 892 MDCL_TCHNLGST_CNT = 'Medical Technologist Count' 893 MDCD_MDCR_PRTCPTG_PRVDR_SW = 'Medicare or Medicaid Participating Provider Switch' 894 MDCTN_AIDE_CNTRCT_CNT = 'Medication Aides / Techs - Contract' 895 MDCTN_AIDE_FLTM_CNT = 'Medication Aides / Techs - Full-Time' 896 MDCTN_AIDE_PRTM_CNT = 'Medication Aides / Techs - Part-Time' 17 The SAS System 17:41 Tuesday, January 8, 2013 897 MEET_1861_SW = 'Meets 1861 Definition' 898 MENTL_HLTH_SRVC_CNTRCT_CNT = 'Mental Health Services - Contract' 899 MENTL_HLTH_SRVC_FLTM_CNT = 'Mental Health Services - Full-Time' 900 MENTL_HLTH_SRVC_PRTM_CNT = 'Mental Health Services - Part-Time' 901 MLT_FAC_ORG_NAME = 'Multi-Facility Organization Name' 902 MLT_OWND_FAC_ORG_SW = 'Multi-Facility Organization Owned' 903 NUCLR_MDCN_TCHNCN_CNT = 'Nuclear Medicine Technician Count' 904 SHIFT_4_TUE_PTNT_CNT = 'Number of Patients Tuesday 4th Shift' 905 NAT_CNTRCT_CNT = 'Nurse Aides in Training - Contract' 906 NAT_FLTM_CNT = 'Nurse Aides in Training - Full-Time' 907 NAT_PRTM_CNT = 'Nurse Aides in Training - Part-Time' 908 NRS_PRCTNR_CNT = 'Nurse Practitioners' 909 NRS_ADMINV_CNTRCT_CNT = 'Nurses With Administrative Duties - Contract' 910 NRS_ADMINV_FLTM_CNT = 'Nurses With Administrative Duties - Full-Time' 911 NRS_ADMINV_PRTM_CNT = 'Nurses With Administrative Duties - Part-Time' 912 OCPTNL_THRPST_CNTRCT_CNT = 'Occupational Therapist - Contract' 913 OCPTNL_THRPST_FLTM_CNT = 'Occupational Therapist - Full-Time' 914 OCPTNL_THRPST_PRTM_CNT = 'Occupational Therapist - Part-Time' 915 OCPTNL_THRPST_CNT = 'Occupational Therapists' 916 OT_AIDE_CNTRCT_CNT = 'Occupational Therapy Aide - Contract' 917 OT_AIDE_FLTM_CNT = 'Occupational Therapy Aide - Full-Time' 918 OT_AIDE_PRTM_CNT = 'Occupational Therapy Aide - Part-Time' 919 OT_ASTNT_AIDE_CNTRCT_CNT = 'Occupational Therapy Assistant - Contract' 920 OT_ASTNT_AIDE_FLTM_CNT = 'Occupational Therapy Assistant - Full-Time' 921 OT_ASTNT_AIDE_PRTM_CNT = 'Occupational Therapy Assistant - Part-Time' 922 OPRTG_ROOM_CNT = 'Operating Rooms' 923 ORGNZ_FMLY_MBR_GRP_SW = 'Organized Family Group' 924 ORGNZ_RSDNT_GRP_SW = 'Organized Resident Group' 925 ORTHTC_PRSTHTC_SRVC_CD = 'Orthotic/Prosthetic Service Code' 926 STF_OTHR_CNTRCT_CNT = 'Other - Contract' 927 STF_OTHR_FLTM_CNT = 'Other - Full-Time' 928 STF_OTHR_PRTM_CNT = 'Other - Part-Time' 929 PRSNEL_OTHR_CNT = 'Other Personnel' 930 PHYSN_OTHR_CNTRCT_CNT = 'Other Physician Contract' 931 PHYSN_OTHR_FLTM_CNT = 'Other Physician Full-Time' 932 PHYSN_OTHR_PRTM_CNT = 'Other Physician Part-Time' 933 SCL_SRVC_OTHR_STF_CNTRCT_CNT = 'Other Social Service Staff - Contract' 934 SCL_SRVC_OTHR_STF_FLTM_CNT = 'Other Social Service Staff - Full-Time' 935 SCL_SRVC_OTHR_STF_PRTM_CNT = 'Other Social Service Staff - Part-Time' 936 PARENT_PROVIDER_NUMBER = 'Parent Provider Number' 937 MDCR_PRTCPTN_OP_PT_SPCH_SW = 'Participation Medicare OPT / SP' 938 PHRMCST_CNTRCT_CNT = 'Pharmacists - Contract' 939 PHRMCST_FLTM_CNT = 'Pharmacists - Full-Time' 940 PHRMCST_PRTM_CNT = 'Pharmacists - Part-Time' 941 PHYS_THRPST_ARNGMT_CNT = 'Physical Therapist - Arrangement' 942 PHYS_THRPST_CNT = 'Physical Therapists' 943 PHYS_THRPST_CNTRCT_CNT = 'Physical Therapists - Contract' 944 PHYS_THRPST_FLTM_CNT = 'Physical Therapists - Full-Time' 945 PHYS_THRPST_PRTM_CNT = 'Physical Therapists - Part-Time' 946 PHYS_THRPST_STF_CNT = 'Physical Therapists on Staff' 947 PT_AIDE_CNTRCT_CNT = 'Physical Therapy Aide - Contract' 948 PT_AIDE_FLTM_CNT = 'Physical Therapy Aide - Full-Time' 949 PT_AIDE_PRTM_CNT = 'Physical Therapy Aide - Part-Time' 950 PT_ASTNT_CNTRCT_CNT = 'Physical Therapy Assistant - Contract' 951 PT_ASTNT_FLTM_CNT = 'Physical Therapy Assistant - Full-Time' 952 PT_ASTNT_PRTM_CNT = 'Physical Therapy Assistant - Part-Time' 953 PHYSN_ASTNT_CNT = 'Physician Assistants (PA)' 954 PHYSN_EXT_CNTRCT_CNT = 'Physician Extender - Contract' 18 The SAS System 17:41 Tuesday, January 8, 2013 955 PHYSN_EXT_FLTM_CNT = 'Physician Extender Full-Time Count (F37B)' 956 PHYSN_EXT_PRTM_CNT = 'Physician Extender Part-Time Count (F37C)' 957 PHYSN_EXT_SRVC_OFSITE_RSDNT_SW = 'Physician Extender Service Offsite To Resident Switch (F37A3)' 958 PHYSN_EXT_SRVC_ONST_NRSDNT_SW = 'Physician Extender Service Onsite To Non-Resident Switch (F37A2)' 959 PHYSN_EXT_SRVC_ONST_RSDNT_SW = 'Physician Extender Service Onsite To Resident Switch (F37A1)' 960 PHYSN_CNT = 'Physicians' 961 RSDNT_PHYSN_CNT = 'Physicians (Residents)' 962 PHYSN_VLNTR_CNT = 'Physicians - Volunteer' 963 PDTRST_CNTRCT_CNT = 'Podiatrists - Contract' 964 PDTRST_FLTM_CNT = 'Podiatrists - Full-Time' 965 PDTRST_PRTM_CNT = 'Podiatrists - Part-Time' 966 AGRMT_END_PRIOR_DT = 'Prior LTC Agreement Ending Date' 967 AGRMT_EXTNSN_PRIOR_DT = 'Prior LTC Agreement Extension Date' 968 RSCND_SUSPNSN_PRIOR_DT = 'Prior Rescind Suspension Date' 969 PGM_PRTCPTN_CD = 'Program Participation' 970 PRVDR_BSD_FAC_SW = 'Provider Based Facility' 971 PSYCH_UNIT_BED_CNT = 'Psychiatric Unit Bed Count' 972 PSYCH_UNIT_EFCTV_DT = 'Psychiatric Unit Effective Date' 973 PSYCH_UNIT_SW = 'Psychiatric Unit Switch' 974 PSYCH_UNIT_TRMNTN_CD = 'Psychiatric Unit Termination Code' 975 PSYCH_UNIT_TRMNTN_DT = 'Psychiatric Unit Termination Date' 976 PSYCHLGST_CNT = 'Psychologist Count' 977 RDLGY_TCHNCN_CNT = 'Radiology Technician Count' 978 OVRRD_BED_CNT_SW = 'Regional Override # 1 (Number Beds)' 979 OVRRD_STFG_SW = 'Regional Override # 2 (Staffing)' 980 OVRRD_NRS_BED_SW = 'Regional Override # 3 (Nurse - Bed)' 981 RN_CNTRCT_CNT = 'Registered Nurse - Contract' 982 RN_FLTM_CNT = 'Registered Nurse - Full-Time' 983 RN_PRTM_CNT = 'Registered Nurse - Part-Time' 984 RN_CNT = 'Registered Nurses' 985 RN_VLNTR_CNT = 'Registered Nurses - Volunteer' 986 REG_PHRMCST_CNT = 'Registered Pharmacists' 987 REHAB_UNIT_BED_CNT = 'Rehabilitation Unit Bed Count' 988 REHAB_UNIT_EFCTV_DT = 'Rehabilitation Unit Effective Date' 989 REHAB_UNIT_SW = 'Rehabilitation Unit Switch' 990 REHAB_UNIT_TRMNTN_CD = 'Rehabilitation Unit Termination Code' 991 REHAB_UNIT_TRMNTN_DT = 'Rehabilitation Unit Termination Date' 992 RELATED_PROVIDER_NUMBER = 'Related Provider Number' 993 RSCND_SUSPNSN_DT = 'Rescind Suspension Date' 994 RSDNT_PGM_ADA_APRVD_SW = 'Resident Program Approved by ADA' 995 RSDNT_PGM_AMA_APRVD_SW = 'Resident Program Approved by AMA' 996 RSDNT_PGM_AOA_APRVD_SW = 'Resident Program Approved by AOA' 997 RSDNT_PGM_OTHR_APRVD_SW = 'Resident Program Approved by Other' 998 INHLTN_THRPST_CNT = 'Respiratory Therapists' 999 RN_DRCTR_CNTRCT_CNT = 'RN Director of Nursing - Contract' 1000 RN_DRCTR_FLTM_CNT = 'RN Director of Nursing - Full-Time' 1001 RN_DRCTR_PRTM_CNT = 'RN Director of Nursing - Part-Time' 1002 ACTVTY_OFSITE_RSDNT_SW = 'Service: Activities-Offsite-Residents Switch' 1003 ACTVTY_ONST_NRSDNT_SW = 'Service: Activities-Onsite-Nonresidents Switch' 1004 ACTVTY_ONST_RSDNT_SW = 'Service: Activities-Onsite-Residents Switch' 1005 APLNC_EQUIP_SRVC_CD = 'Service: Appliance and Equipment' 1006 BLOOD_SRVC_OFSITE_RSDNT_SW = 'Service: Blood Administered-Offsite-Resident' 1007 BLOOD_SRVC_ONST_NRSDNT_SW = 'Service: Blood Administered-Onsite-Nonresident' 1008 BLOOD_SRVC_ONST_RSDNT_SW = 'Service: Blood Administered-Onsite-Resident' 1009 CL_SRVC_OFSITE_RSDNT_SW = 'Service: Clinical Laboratory-Offsite-Resident' 1010 CL_SRVC_ONST_NRSDNT_SW = 'Service: Clinical Laboratory-Onsite-Nonresident' 1011 CL_SRVC_ONST_RSDNT_SW = 'Service: Clinical Laboratory-Onsite-Resident' 1012 CNSLNG_SRVC_CD = 'Service: Counseling' 19 The SAS System 17:41 Tuesday, January 8, 2013 1013 DNTL_SRVC_ONST_NRSDNT_SW = 'Service: Dental On-Site Nonresidents' 1014 DNTL_SRVC_OFSITE_RSDNT_SW = 'Service: Dental Off-Site Residents' 1015 DNTL_SRVC_ONST_RSDNT_SW = 'Service: Dental On-Site Residents' 1016 DTRY_ONST_NRSDNT_SW = 'Service: Dietary On-Site Nonresidents' 1017 DTRY_OFSITE_RSDNT_SW = 'Service: Dietary Off-Site Residents' 1018 DTRY_ONST_RSDNT_SW = 'Service: Dietary On-Site Residents' 1019 EKG_SRVC_CD = 'Service: EKG' 1020 HH_AIDE_SRVC_CD = 'Service: Home Health Aide' 1021 HMMKR_SRVC_CD = 'Service: Homemaker' 1022 HSEKPNG_SRVC_ONST_NRSDNT_SW = 'Service: Housekeeping On-Site to Nonresidents' 1023 HSEKPNG_SRVC_OFSITE_RSDNT_SW = 'Service: Housekeeping Off-Site to Residents' 1024 HSEKPNG_SRVC_ONST_RSDNT_SW = 'Service: Housekeeping On-Site to Residents' 1025 INTRN_RSDNT_SRVC_CD = 'Service: Interns and Residents' 1026 LAB_SRVC_CD = 'Service: Laboratory' 1027 MDCL_SCL_SRVC_CD = 'Service: Medical Social' 1028 MDCL_SUPLY_SRVC_CD = 'Service: Medical Supplies' 1029 MENTL_HLTH_OFSITE_RSDNT_SW = 'Service: Mental Health Off-Site to Residents' 1030 MENTL_HLTH_ONST_RSDNT_SW = 'Service: Mental Health On-Site to Residents' 1031 MENTL_HLTH_ONST_NRSDNT_SW = 'Service: Mental Health On-site to Nonresidents' 1032 NRSNG_SRVC_CD = 'Service: Nursing' 1033 NRSNG_SRVC_ONST_NRSDNT_SW = 'Service: Nursing On-Site to Nonresidents' 1034 NRSNG_2_SRVC_CD = 'Service: Nursing #2' 1035 NRSNG_3_SRVC_CD = 'Service: Nursing #3' 1036 NRSNG_SRVC_OFSITE_RSDNT_SW = 'Service: Nursing Off-Site to Residents' 1037 NRSNG_SRVC_ONST_RSDNT_SW = 'Service: Nursing On-Site to Residents' 1038 NTRTNL_GDNC_SRVC_CD = 'Service: Nutritional Guidance' 1039 OT_SRVC_ONST_NRSDNT_SW = 'Service: Occupational Therapy On-Site to Nonresidents' 1040 OT_2_SRVC_CD = 'Service: Occupational Therapy #2' 1041 OT_3_SRVC_CD = 'Service: Occupational Therapy #3' 1042 OT_SRVC_OFSITE_RSDNT_SW = 'Service: Occupational Therapy Off-Site to Residents' 1043 OT_SRVC_ONST_RSDNT_SW = 'Service: Occupational Therapy On-Site to Residents' 1044 ORTHTC_PRSTHTC_2_SRVC_CD = 'Service: Orthotic Prosthetic #2' 1045 ORTHTC_PRSTHTC_3_SRVC_CD = 'Service: Orthotic/Prosthetic #3' 1046 OTHR_SRVC_CD = 'Service: Other' 1047 ACTVTY_OTHR_OFSITE_RSDNT_SW = 'Service: Other Activities-Offsite-Residents Switch' 1048 ACTVTY_OTHR_ONST_NRSDNT_SW = 'Service: Other Activities-Onsite-Nonresidents Switch' 1049 ACTVTY_OTHR_ONST_RSDNT_SW = 'Service: Other Activities-Onsite-Residents Switch' 1050 SCL_SRVC_OTHR_OFSITE_RSDNT_SW = 'Service: Other Off-Site to Residents' 1051 SCL_SRVC_OTHR_ONST_NRSDNT_SW = 'Service: Other On-Site to Nonresidents' 1052 SCL_SRVC_OTHR_ONST_RSDNT_SW = 'Service: Other On-Site to Residents' 1053 PHRMCY_SRVC_OFSITE_RSDNT_SW = 'Service: Pharmacy Off-Site to Residents' 1054 PHRMCY_SRVC_ONST_NRSDNT_SW = 'Service: Pharmacy On-Site to Nonresidents' 1055 PHRMCY_SRVC_ONST_RSDNT_SW = 'Service: Pharmacy On-Site to Residents' 1056 PT_2_SRVC_CD = 'Service: Physical Therapy #2' 1057 PT_3_SRVC_CD = 'Service: Physical Therapy #3' 1058 PT_OFSITE_RSDNT_SW = 'Service: Physical Therapy Off-Site to Residents' 1059 PT_ONST_NRSDNT_SW = 'Service: Physical Therapy On-Site to Nonresidents' 1060 PT_ONST_RSDNT_SW = 'Service: Physical Therapy On-Site to Residents' 1061 PHYSN_SRVC_CD = 'Service: Physician' 1062 PHYSN_2_SRVC_CD = 'Service: Physician #2' 1063 PHYSN_3_SRVC_CD = 'Service: Physician #3' 1064 PHYSN_SRVC_OFSITE_RSDNT_SW = 'Service: Physician Off-Site to Residents' 1065 PHYSN_SRVC_ONST_NRSDNT_SW = 'Service: Physician On-Site to Nonresidents' 1066 PHYSN_SRVC_ONST_RSDNT_SW = 'Service: Physician On-Site to Residents' 1067 PDTRY_SRVC_OFSITE_RSDNT_SW = 'Service: Podiatry Off-Site to Residents' 1068 PDTRY_SRVC_ONST_NRSDNT_SW = 'Service: Podiatry On-Site to Nonresidents' 1069 PDTRY_SRVC_ONST_RSDNT_SW = 'Service: Podiatry On-Site to Residents' 1070 PSYCHLGCL_SRVC_CD = 'Service: Psychological' 20 The SAS System 17:41 Tuesday, January 8, 2013 1071 PSYCHLGCL_2_SRVC_CD = 'Service: Psychological #2' 1072 PSYCHLGCL_3_SRVC_CD = 'Service: Psychological #3' 1073 RDLGY_SRVC_CD = 'Service: Radiology' 1074 RSPRTRY_CARE_2_SRVC_CD = 'Service: Respiratory Care #2' 1075 RSPRTRY_CARE_3_SRVC_CD = 'Service: Respiratory Care #3' 1076 SHRT_TERM_IP_SRVC_CD = 'Service: Short Term Inpatient' 1077 SCL_2_SRVC_CD = 'Service: Social #2' 1078 SCL_3_SRVC_CD = 'Service: Social #3' 1079 SCL_WORK_SRVC_OFSITE_RSDNT_SW = 'Service: Social Work Off-Site to Residents' 1080 SCL_WORK_SRVC_ONST_NRSDNT_SW = 'Service: Social Work On-Site to Nonresidents' 1081 SCL_WORK_SRVC_ONST_RSDNT_SW = 'Service: Social Work On-Site to Residents' 1082 SPCH_PTHLGY_2_SRVC_CD = 'Service: Speech Pathology #2' 1083 SPCH_PTHLGY_3_SRVC_CD = 'Service: Speech Pathology #3' 1084 SPCH_PTHLGY_OFSITE_RSDNT_SW = 'Service: Speech Pathology Off-Site to Residents' 1085 SPCH_PTHLGY_ONST_NRSDNT_SW = 'Service: Speech Pathology On-Site to Nonresidents' 1086 SPCH_PTHLGY_ONST_RSDNT_SW = 'Service: Speech Pathology On-Site to Residents' 1087 SPCH_THRPY_SRVC_CD = 'Service: Speech Therapy' 1088 THRPTC_RCRTNL_OFSITE_RSDNT_SW = 'Service: Therapeutic Recreational Specialty Off-Site to Residents' 1089 THRPTC_RCRTNL_ONST_NRSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Non Residents' 1090 THRPTC_RCRTNL_ONST_RSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Residents' 1091 VCTNL_GDNC_SRVC_CD = 'Service: Vocational Guidance' 1092 VCTNL_SRVC_OFSITE_RSDNT_SW = 'Service: Vocational Off-Site to Residents' 1093 VCTNL_SRVC_ONST_NRSDNT_SW = 'Service: Vocational On-Site to Nonresidents' 1094 VCTNL_SRVC_ONST_RSDNT_SW = 'Service: Vocational On-Site to Residents' 1095 DGNSTC_XRAY_OFSITE_RSDNT_SW = 'Service: X-ray Off-Site Residents' 1096 DGNSTC_XRAY_ONST_NRSDNT_SW = 'Service: X-ray On-Site Nonresidents' 1097 DGNSTC_XRAY_ONST_RSDNT_SW = 'Service: X-ray On-Site Residents' 1098 OPEN_HRT_SRGRY_SRVC_CD = 'Services Provided: Cardiac - Thoracic Surgery' 1099 PSTOPRTV_RCVRY_SRVC_CD = 'Services Provided: Postoperative Recovery Room' 1100 ACUTE_RNL_DLYS_SRVC_CD = 'Services Provided: Acute Renal Dialysis' 1101 ACUTE_RNL_DLYS_SRVC_DESC = 'Services Provided: Acute Renal Dialysis Description' 1102 ALCHL_DRUG_SRVC_DESC = 'Services Provided: Alcohol and or Drug Description' 1103 ALCHL_DRUG_SRVC_CD = 'Services Provided: Alcohol and/or Drug' 1104 ANSTHSA_SRVC_CD = 'Services Provided: Anesthesia' 1105 ANSTHSA_SRVC_DESC = 'Services Provided: Anesthesia Description' 1106 AUDLGY_SRVC_CD = 'Services Provided: Audiology' 1107 AUDLGY_SRVC_DESC = 'Services Provided: Audiology Description' 1108 BURN_CARE_UNIT_SRVC_CD = 'Services Provided: Burn Care Unit' 1109 BURN_CARE_UNIT_SRVC_DESC = 'Services Provided: Burn Care Unit Description' 1110 OPEN_HRT_SRGRY_SRVC_DESC = 'Services Provided: Cardiac - Thoracic Surgery Description' 1111 CRDC_CTHTRZTN_LAB_SRVC_CD = 'Services Provided: Cardiac Catheterization Lab' 1112 CRDC_CTHTRZTN_LAB_SRVC_DESC = 'Services Provided: Cardiac Catheterization Lab Description' 1113 CARF_IP_REHAB_SRVC_CD = 'Services Provided: CARF Inpatient Rehabilitation Code' 1114 CARF_IP_REHAB_SRVC_DESC = 'Services Provided: CARF Inpatient Rehabilitation Description' 1115 CHMTHRPY_SRVC_CD = 'Services Provided: Chemotherapy' 1116 CHMTHRPY_SRVC_DESC = 'Services Provided: Chemotherapy Description' 1117 CHLD_ADLSCNT_PSYCH_SRVC_DESC = 'Services Provided: Child Adolescent Psychiatric Description' 1118 CHRPRCTIC_SRVC_CD = 'Services Provided: Chiropractic' 1119 CHRPRCTIC_SRVC_DESC = 'Services Provided: Chiropractic Description' 1120 CL_SRVC_CD = 'Services Provided: Clinical Laboratory' 1121 CL_SRVC_DESC = 'Services Provided: Clinical Laboratory Description' 1122 CT_SCAN_SRVC_CD = 'Services Provided: CT Scanner' 1123 CT_SCAN_SRVC_DESC = 'Services Provided: CT Scanner Description' 1124 DNTL_SRVC_CD = 'Services Provided: Dental' 1125 DNTL_SRVC_DESC = 'Services Provided: Dental Description' 1126 DGNSTC_RDLGY_SRVC_DESC = 'Services Provided: Diagnostic Radiology Description' 1127 DTRY_SRVC_CD = 'Services Provided: Dietary' 1128 DTRY_SRVC_DESC = 'Services Provided: Dietary Description' 21 The SAS System 17:41 Tuesday, January 8, 2013 1129 DCTD_ER_SRVC_DESC = 'Services Provided: Emergency Dept (Dedicated) Description' 1130 DCTD_ER_SRVC_CD = 'Services Provided: Emergency Dept(Dedicated)' 1131 XTRCRPRL_SHCK_LTHTRPTR_SRVC_CD = 'Services Provided: Extracorporeal Shock Wave' 1132 XTRCRPRL_SHCK_LTHTRPTR_SRVCDSC = 'Services Provided: Extracorporeal Shock Wave Description' 1133 GRNTLGCL_SPCLTY_SRVC_CD = 'Services Provided: Gerontological Specialty' 1134 GRNTLGCL_SPCLTY_SRVC_DESC = 'Services Provided: Gerontological Specialty Description' 1135 CRNRY_CARE_UNIT_SRVC_CD = 'Services Provided: ICU Cardiac (non-surgical)' 1136 CRNRY_CARE_UNIT_SRVC_DESC = 'Services Provided: ICU Cardiac (non-surgical) Description' 1137 ICU_SRVC_CD = 'Services Provided: ICU Medical/Surgical' 1138 ICU_SRVC_DESC = 'Services Provided: ICU Medical/Surgical Description' 1139 NEONTL_ICU_SRVC_CD = 'Services Provided: ICU Neonatal' 1140 PED_ICU_SRVC_CD = 'Services Provided: ICU Pediatric' 1141 SRGCL_ICU_SRVC_CD = 'Services Provided: ICU Surgical' 1142 IP_SRGCL_SRVC_CD = 'Services Provided: Inpatient Surgical' 1143 IP_SRGCL_SRVC_DESC = 'Services Provided: Inpatient Surgical Description' 1144 MGNTC_RSNC_IMG_SRVC_CD = 'Services Provided: Magnetic Resonance Imaging' 1145 MGNTC_RSNC_IMG_SRVC_DESC = 'Services Provided: Magnetic Resonance Imaging Description' 1146 NEONTL_ICU_SRVC_DESC = 'Services Provided: Neonatal ICU Description' 1147 NEONTL_NRSRY_SRVC_CD = 'Services Provided: Neonatal Nursery' 1148 NEONTL_NRSRY_SRVC_DESC = 'Services Provided: Neonatal Nursery Description' 1149 NRSRGCL_SRVC_DESC = 'Services Provided: Neurosurgical Description' 1150 NRSRGCL_SRVC_CD = 'Services Provided: Neurosurgical Services' 1151 NUCLR_MDCN_SRVC_CD = 'Services Provided: Nuclear Medicine' 1152 NUCLR_MDCN_SRVC_DESC = 'Services Provided: Nuclear Medicine Description' 1153 OB_SRVC_CD = 'Services Provided: Obstetrics' 1154 OB_SRVC_DESC = 'Services Provided: Obstetrics Description' 1155 OT_SRVC_CD = 'Services Provided: Occupational Therapy' 1156 OT_SRVC_DESC = 'Services Provided: Occupational Therapy Description' 1157 OPRTG_ROOM_SRVC_DESC = 'Services Provided: Operating Room Description' 1158 OPRTG_ROOM_SRVC_CD = 'Services Provided: Operating Rooms' 1159 OPTHLMC_SRGY_SRVC_CD = 'Services Provided: Ophthalmic Surgery' 1160 OPTHLMC_SRGY_SRVC_DESC = 'Services Provided: Ophthalmic Surgery Description' 1161 OPTMTRC_SRVC_CD = 'Services Provided: Optometric' 1162 OPTMTRC_SRVC_DESC = 'Services Provided: Optometric Description' 1163 ORGN_TRNSPLNT_SRVC_CD = 'Services Provided: Organ Transplant (Not Medicare Certified)' 1164 ORGN_TRNSPLNT_SRVC_DESC = 'Services Provided: Organ Transplant (Not Medicare Certified) Description' 1165 ORTHPDC_SRGY_SRVC_CD = 'Services Provided: Orthopedic Surgery' 1166 ORTHPDC_SRGY_SRVC_DESC = 'Services Provided: Orthopedic Surgery Description' 1167 OP_SRVC_CD = 'Services Provided: Outpatient' 1168 OP_SRVC_DESC = 'Services Provided: Outpatient Description' 1169 OP_SRGRY_UNIT_SRVC_CD = 'Services Provided: Outpatient Surgery' 1170 OP_SRGRY_UNIT_SRVC_DESC = 'Services Provided: Outpatient Surgery Description' 1171 PED_SRVC_CD = 'Services Provided: Pediatric' 1172 PED_SRVC_DESC = 'Services Provided: Pediatric Description' 1173 PED_ICU_SRVC_DESC = 'Services Provided: Pediatric ICU Description' 1174 PET_SCAN_SRVC_CD = 'Services Provided: PET Scan Services' 1175 PET_SCAN_SRVC_DESC = 'Services Provided: PET Scanner Description' 1176 PHRMCY_SRVC_CD = 'Services Provided: Pharmacy' 1177 PHRMCY_SRVC_DESC = 'Services Provided: Pharmacy Description' 1178 PT_SRVC_CD = 'Services Provided: Physical Therapy' 1179 PT_SRVC_DESC = 'Services Provided: Physical Therapy Description' 1180 PSTOPRTV_RCVRY_SRVC_DESC = 'Services Provided: Postoperative Recovery Room Description' 1181 PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Adult Inpatient' 1182 PSYCH_SRVC_DESC = 'Services Provided: Psychiatric - Adult Inpatient Description' 1183 EMER_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Emergency' 1184 FRNSC_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Forensic' 1185 GRTRC_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Geriatric' 1186 OP_PSYCH_SRVC_CD = 'Services Provided: Psychiatric - Outpatient' 22 The SAS System 17:41 Tuesday, January 8, 2013 1187 CHLD_ADLSCNT_PSYCH_SRVC_CD = 'Services Provided: Psychiatric Child/Adolescent' 1188 EMER_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Emergency Description' 1189 FRNSC_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Forensic Description' 1190 GRTRC_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Geriatric Description' 1191 OP_PSYCH_SRVC_DESC = 'Services Provided: Psychiatric Outpatient Description' 1192 DGNSTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Diagnostic)' 1193 THRPTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Therapeutic)' 1194 THRPTC_RDLGY_SRVC_DESC = 'Services Provided: Radiology Therapeutic Description' 1195 RCNSTRCTN_SRGY_SRVC_DESC = 'Services Provided: Reconstruction Surgery Description' 1196 RCNSTRCTN_SRGY_SRVC_CD = 'Services Provided: Reconstructive Surgery' 1197 OP_REHAB_SRVC_CD = 'Services Provided: Rehabilitation Outpatient' 1198 OP_REHAB_SRVC_DESC = 'Services Provided: Rehabilitation Outpatient Description' 1199 RSPRTRY_CARE_SRVC_CD = 'Services Provided: Respiratory Care' 1200 RSPRTRY_CARE_SRVC_DESC = 'Services Provided: Respiratory Care Description' 1201 SCL_SRVC_CD = 'Services Provided: Social' 1202 SCL_SRVC_DESC = 'Services Provided: Social Description' 1203 SPCH_PTHLGY_SRVC_CD = 'Services Provided: Speech Pathology' 1204 SPCH_PTHLGY_SRVC_DESC = 'Services Provided: Speech Pathology Description' 1205 SRGCL_ICU_SRVC_DESC = 'Services Provided: Surgical ICU Description' 1206 MDCR_TRNSPLNT_CNTR_SRVC_CD = 'Services Provided: Transplant Center (Medicare Certified)' 1207 MDCR_TRNSPLNT_CNTR_SRVC_DESC = 'Services Provided: Transplant Center (Medicare Certified) Description' 1208 SHCK_TRMA_SRVC_CD = 'Services Provided: Trauma Center (Designated)' 1209 SHCK_TRMA_SRVC_DESC = 'Services Provided: Trauma Center (Designated) Description' 1210 URGNT_CARE_SRVC_CD = 'Services Provided: Urgent Care Center Services' 1211 URGNT_CARE_SRVC_DESC = 'Services Provided: Urgent Care Description' 1212 SCL_WORKR_CNTRCT_CNT = 'Social Worker - Contract' 1213 SCL_WORKR_FLTM_CNT = 'Social Worker - Full-Time' 1214 SCL_WORKR_PRTM_CNT = 'Social Worker - Part-Time' 1215 SCL_WORKR_CNT = 'Social Workers' 1216 REHAB_BED_CNT = 'Special Care Bed - Specialized Rehab' 1217 AIDS_BED_CNT = 'Special Care Beds - AIDS' 1218 ALZHMR_BED_CNT = 'Special Care Beds - Alzheimers' 1219 DLYS_BED_CNT = 'Special Care Beds - Dialysis' 1220 DSBL_CHLDRN_BED_CNT = 'Special Care Beds - Disabled Child' 1221 HEAD_TRMA_BED_CNT = 'Special Care Beds - Head Trauma' 1222 HOSPC_BED_CNT = 'Special Care Beds - Hospice' 1223 HNTGTN_DEASE_BED_CNT = 'Special Care Beds - Huntingtons' 1224 VNTLTR_BED_CNT = 'Special Care Beds - Ventilator' 1225 THORC_SRGRY_SW = 'Speciality: Thoracic Surgery' 1226 URLGY_SRGRY_SW = 'Speciality: Urology' 1227 CRDVSCLR_SRGRY_SW = 'Specialty: Cardiovascular' 1228 FT_SRGRY_SW = 'Specialty: Foot' 1229 NRLGCL_SRGRY_SW = 'Specialty: Neurological' 1230 OB_GYN_SRGRY_SW = 'Specialty: Obstetrics / Gynecology' 1231 OPTHMLGY_SRGRY_SW = 'Specialty: Opthamology' 1232 ORAL_SRGRY_SW = 'Specialty: Oral' 1233 ORTHPDC_SRGRY_SW = 'Specialty: Orthopedic' 1234 OTLRYNGLGY_SRGRY_SW = 'Specialty: Otolaryngology' 1235 PLSTC_SRGRY_SW = 'Specialty: Plastic Surgery' 1236 GNRL_SRGRY_SW = 'Specialty: Surgery' 1237 SPCH_PTHLGST_CNTRCT_CNT = 'Speech Pathologist - Contract' 1238 SPCH_PTHLGST_FLTM_CNT = 'Speech Pathologist - Full-Time' 1239 SPCH_PTHLGST_PRTM_CNT = 'Speech Pathologist - Part-Time' 1240 SPCH_PTHLGST_AUDLGST_CNT = 'Speech Pathologist or Audiologist' 1241 SPCH_PTHLGST_ARNGMT_CNT = 'Speech Pathologists - Arrangement' 1242 SPCH_PTHLGST_CNT = 'Speech Pathologists - Total' 1243 HMDLYS_STN_ESRD_CNT = 'Stations - Hemodialysis' 1244 DLYS_STN_CNT = 'Stations - Total' 23 The SAS System 17:41 Tuesday, January 8, 2013 1245 SBUNIT_OPRTN_SW = 'Subunit Operation Switch' 1246 SBUNIT_SW = 'Subunit Switch' 1247 SBUNIT_CNT = 'Subunits' 1248 SRTY_BOND_CD = 'Surety Bond Indicator' 1249 SB_SIZE_CD = 'Swing Bed Size Code' 1250 SB_SW = 'Swing Bed Switch' 1251 TCHNLGST_2_YR_RDLGC_CNT = 'Technologists - 2 Year Radiology' 1252 TCHNLGST_ASCT_DGR_CNT = 'Technologists - Associate Degree' 1253 TCHNLGST_BS_BA_DGR_CNT = 'Technologists - BS/BA Degree' 1254 THRPTC_RCRTNL_CNTRCT_CNT = 'Therapeutic Recreational Specialty - Contract' 1255 THRPTC_RCRTNL_FLTM_CNT = 'Therapeutic Recreational Specialty - Full-Time' 1256 THRPTC_RCRTNL_PRTM_CNT = 'Therapeutic Recreational Specialty - Part-Time' 1257 FED_PGM_NAME = 'Title of Federal Program' 1258 EMPLEE_CNT = 'Total Number of Employees' 1259 GNRL_FAC_TYPE_CD = 'Type of Facility' 1260 NPP_TYPE_CD = 'Type of Non-Participating Provider' 1261 VLNTR_OTHR_CNT = 'Volunteers - Other' 1262 VLNTR_CNT = 'Volunteers - Total' 1263 ; 1264 1265 format 1266 CHOW_DT 1267 CRTFCTN_DT 1268 ORGNL_PRTCPTN_DT 1269 CHOW_PRIOR_DT 1270 TRMNTN_EXPRTN_DT 1271 ACRDTN_EFCTV_DT 1272 ACRDTN_EXPRTN_DT 1273 ADMSN_SUSPNSN_DT 1274 ADMSN_SUSPNSN_PRIOR_DT 1275 ASC_BGN_SRVC_DT 1276 VLDTN_SRVY_DT 1277 AGRMT_BGN_DT 1278 AGRMT_END_DT 1279 AGRMT_EXTNSN_DT 1280 AGRMT_END_PRIOR_DT 1281 AGRMT_EXTNSN_PRIOR_DT 1282 RSCND_SUSPNSN_PRIOR_DT 1283 PSYCH_UNIT_EFCTV_DT 1284 PSYCH_UNIT_TRMNN_DT 1285 REHAB_UNIT_EFCTV_DT 1286 REHAB_UNIT_TRMNTN_DT 1287 RSCND_SUSPNSN_DT 1288 date9. ; 1289 1290 proc sort data=WORK.&dataset.; 1291 by &sortit.; 1292 proc format; 1293 value $pcat 1294 "01"="01 Hospitals" 1295 "02"="02 SNF/NF (Dually Certified)" 1296 "03"="03 SNF/NF (Distinct Part)" 1297 "04"="04 Skilled Nursing Facility" 1298 "05"="05 Home Health Agencies" 1299 "07"="07 Portable X-ray Suppliers" 1300 "08"="08 Outpatient Physical Therapy/Speech Pathology" 1301 "09"="09 End Stage Renal Disease" 1302 "10"="10 Nursing Facilities" 24 The SAS System 17:41 Tuesday, January 8, 2013 1303 "11"="11 Intermediate Care Facility-Mentally Retarded" 1304 "12"="12 Rural Health Clinics" 1305 "13"="13 Physical Therapists in Independent Practice" 1306 "14"="14 Comprehensive Outpatient Rehab Facilities" 1307 "15"="15 Ambulatory Surgical Center" 1308 "16"="16 Hospices" 1309 "17"="17 Organ Procurement Organizations" 1310 "19"="19 Community Mental Health Centers" 1311 "21"="21 Federally Qualified Health Centers" 1312 "22"="22 CLIA88 Laboratories" 1313 ; 1314 1315 proc freq; 1316 tables PRVDR_CTGRY_CD; 1317 format PRVDR_CTGRY_CD $pcat.; 1318 proc print DATA = WORK.&dataset. ( obs = 5 ); 1319 proc contents data = WORK.&dataset. ; 1320 1321 %mend; 1322 %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. 25 The SAS System 17:41 Tuesday, January 8, 2013 @996 OCPTNL_THRPST_CNTRCT_CNT 8. @1004 OCPTNL_THRPST_FLTM_CNT 8. @1012 OCPTNL_THRPST_PRTM_CNT 8. @1020 OCPTNL_THRPST_CNT 8. @1028 OT_AIDE_CNTRCT_CNT 8. @1036 OT_AIDE_FLTM_CNT 8. @1044 OT_AIDE_PRTM_CNT 8. @1052 OT_ASTNT_AIDE_CNTRCT_CNT 8. @1060 OT_ASTNT_AIDE_FLTM_CNT 8. @1068 OT_ASTNT_AIDE_PRTM_CNT 8. @1076 OPRTG_ROOM_CNT 2. @1078 ORGNZ_FMLY_MBR_GRP_SW $CHAR1. @1079 ORGNZ_RSDNT_GRP_SW $CHAR1. @1080 ORTHTC_PRSTHTC_SRVC_CD $CHAR1. @1081 STF_OTHR_CNTRCT_CNT 8. @1089 STF_OTHR_FLTM_CNT 8. @1097 STF_OTHR_PRTM_CNT 8. @1105 PRSNEL_OTHR_CNT 8. @1113 PHYSN_OTHR_CNTRCT_CNT 8. @1121 PHYSN_OTHR_FLTM_CNT 8. @1129 PHYSN_OTHR_PRTM_CNT 8. @1137 SCL_SRVC_OTHR_STF_CNTRCT_CNT 8. @1145 SCL_SRVC_OTHR_STF_FLTM_CNT 8. @1153 SCL_SRVC_OTHR_STF_PRTM_CNT 8. @1161 PARENT_PROVIDER_NUMBER $CHAR10. @1171 MDCR_PRTCPTN_OP_PT_SPCH_SW $CHAR1. @1172 PHRMCST_CNTRCT_CNT 8. @1180 PHRMCST_FLTM_CNT 8. @1188 PHRMCST_PRTM_CNT 8. @1196 PHYS_THRPST_ARNGMT_CNT 8. @1204 PHYS_THRPST_CNT 8. @1212 PHYS_THRPST_CNTRCT_CNT 8. @1220 PHYS_THRPST_FLTM_CNT 8. @1228 PHYS_THRPST_PRTM_CNT 8. @1236 PHYS_THRPST_STF_CNT 8. @1244 PT_AIDE_CNTRCT_CNT 8. @1252 PT_AIDE_FLTM_CNT 8. @1260 PT_AIDE_PRTM_CNT 8. @1268 PT_ASTNT_CNTRCT_CNT 8. @1276 PT_ASTNT_FLTM_CNT 8. @1284 PT_ASTNT_PRTM_CNT 8. @1292 PHYSN_ASTNT_CNT 8. @1300 PHYSN_EXT_CNTRCT_CNT 8. @1308 PHYSN_EXT_FLTM_CNT 8. @1316 PHYSN_EXT_PRTM_CNT 8. @1324 PHYSN_EXT_SRVC_OFSITE_RSDNT_SW $CHAR1. @1325 PHYSN_EXT_SRVC_ONST_NRSDNT_SW $CHAR1. @1326 PHYSN_EXT_SRVC_ONST_RSDNT_SW $CHAR1. @1327 PHYSN_CNT 8. @1335 RSDNT_PHYSN_CNT 8. @1343 PHYSN_VLNTR_CNT 8. @1351 PDTRST_CNTRCT_CNT 8. @1359 PDTRST_FLTM_CNT 8. @1367 PDTRST_PRTM_CNT 8. @1375 AGRMT_END_PRIOR_DT YYMMDD8. @1383 AGRMT_EXTNSN_PRIOR_DT YYMMDD8. @1391 RSCND_SUSPNSN_PRIOR_DT YYMMDD8. @1399 PGM_PRTCPTN_CD $CHAR1. @1400 PRVDR_BSD_FAC_SW $CHAR1. @1401 PSYCH_UNIT_BED_CNT 3. @1404 PSYCH_UNIT_EFCTV_DT YYMMDD8. @1412 PSYCH_UNIT_SW $CHAR1. @1413 PSYCH_UNIT_TRMNTN_CD $CHAR1. @1414 PSYCH_UNIT_TRMNTN_DT YYMMDD8. @1422 PSYCHLGST_CNT 8. @1430 RDLGY_TCHNCN_CNT 8. @1438 OVRRD_BED_CNT_SW $CHAR1. @1439 OVRRD_STFG_SW $CHAR1. @1440 OVRRD_NRS_BED_SW $CHAR1. @1441 RN_CNTRCT_CNT 8. @1449 RN_FLTM_CNT 8. @1457 RN_PRTM_CNT 8. @1465 RN_CNT 8. @1473 RN_VLNTR_CNT 8. @1481 REG_PHRMCST_CNT 8. @1489 REHAB_UNIT_BED_CNT 3. @1492 REHAB_UNIT_EFCTV_DT YYMMDD8. @1500 REHAB_UNIT_SW $CHAR1. @1501 REHAB_UNIT_TRMNTN_CD $CHAR1. @1502 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 26 The SAS System 17:41 Tuesday, January 8, 2013 DTRY_SRVC_CD $CHAR1. @2260 DTRY_SRVC_DESC $CHAR39. @2299 DCTD_ER_SRVC_DESC $CHAR39. @2338 DCTD_ER_SRVC_CD $CHAR1. @2339 XTRCRPRL_SHCK_LTHTRPTR_SRVC_CD $CHAR1. @2340 XTRCRPRL_SHCK_LTHTRPTR_SRVCDSC $CHAR39. @2379 GRNTLGCL_SPCLTY_SRVC_CD $CHAR1. @2380 GRNTLGCL_SPCLTY_SRVC_DESC $CHAR39. @2419 CRNRY_CARE_UNIT_SRVC_CD $CHAR1. @2420 CRNRY_CARE_UNIT_SRVC_DESC $CHAR39. @2459 ICU_SRVC_CD $CHAR1. @2460 ICU_SRVC_DESC $CHAR44. @2504 NEONTL_ICU_SRVC_CD $CHAR1. @2505 PED_ICU_SRVC_CD $CHAR1. @2506 SRGCL_ICU_SRVC_CD $CHAR1. @2507 IP_SRGCL_SRVC_CD $CHAR1. @2508 IP_SRGCL_SRVC_DESC $CHAR39. @2547 MGNTC_RSNC_IMG_SRVC_CD $CHAR1. @2548 MGNTC_RSNC_IMG_SRVC_DESC $CHAR39. @2587 NEONTL_ICU_SRVC_DESC $CHAR39. @2626 NEONTL_NRSRY_SRVC_CD $CHAR1. @2627 NEONTL_NRSRY_SRVC_DESC $CHAR39. @2666 NRSRGCL_SRVC_DESC $CHAR39. @2705 NRSRGCL_SRVC_CD $CHAR1. @2706 NUCLR_MDCN_SRVC_CD $CHAR1. @2707 NUCLR_MDCN_SRVC_DESC $CHAR39. @2746 OB_SRVC_CD $CHAR1. @2747 OB_SRVC_DESC $CHAR39. @2786 OT_SRVC_CD $CHAR1. @2787 OT_SRVC_DESC $CHAR39. @2826 OPRTG_ROOM_SRVC_DESC $CHAR39. @2865 OPRTG_ROOM_SRVC_CD $CHAR1. @2866 OPTHLMC_SRGY_SRVC_CD $CHAR1. @2867 OPTHLMC_SRGY_SRVC_DESC $CHAR39. @2906 OPTMTRC_SRVC_CD $CHAR1. @2907 OPTMTRC_SRVC_DESC $CHAR44. @2951 ORGN_TRNSPLNT_SRVC_CD $CHAR1. @2952 ORGN_TRNSPLNT_SRVC_DESC $CHAR39. @2991 ORTHPDC_SRGY_SRVC_CD $CHAR1. @2992 ORTHPDC_SRGY_SRVC_DESC $CHAR39. @3031 OP_SRVC_CD $CHAR1. @3032 OP_SRVC_DESC $CHAR39. @3071 OP_SRGRY_UNIT_SRVC_CD $CHAR1. @3072 OP_SRGRY_UNIT_SRVC_DESC $CHAR39. @3111 PED_SRVC_CD $CHAR1. @3112 PED_SRVC_DESC $CHAR39. @3151 PED_ICU_SRVC_DESC $CHAR39. @3190 PET_SCAN_SRVC_CD $CHAR1. @3191 PET_SCAN_SRVC_DESC $CHAR39. @3230 PHRMCY_SRVC_CD $CHAR1. @3231 PHRMCY_SRVC_DESC $CHAR39. @3270 PT_SRVC_CD $CHAR1. @3271 PT_SRVC_DESC $CHAR39. @3310 PSTOPRTV_RCVRY_SRVC_DESC $CHAR39. @3349 PSYCH_SRVC_CD $CHAR1. @3350 PSYCH_SRVC_DESC $CHAR39. @3389 EMER_PSYCH_SRVC_CD $CHAR1. @3390 FRNSC_PSYCH_SRVC_CD $CHAR1. @3391 GRTRC_PSYCH_SRVC_CD $CHAR1. @3392 OP_PSYCH_SRVC_CD $CHAR1. @3393 CHLD_ADLSCNT_PSYCH_SRVC_CD $CHAR1. @3394 EMER_PSYCH_SRVC_DESC $CHAR39. @3433 FRNSC_PSYCH_SRVC_DESC $CHAR39. @3472 GRTRC_PSYCH_SRVC_DESC $CHAR39. @3511 OP_PSYCH_SRVC_DESC $CHAR39. @3550 DGNSTC_RDLGY_SRVC_CD $CHAR1. @3551 THRPTC_RDLGY_SRVC_CD $CHAR1. @3552 THRPTC_RDLGY_SRVC_DESC $CHAR39. @3591 RCNSTRCTN_SRGY_SRVC_DESC $CHAR39. @3630 RCNSTRCTN_SRGY_SRVC_CD $CHAR1. @3631 OP_REHAB_SRVC_CD $CHAR1. @3632 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; 27 The SAS System 17:41 Tuesday, January 8, 2013 MPRINT(LOOP): attrib st_adr length=$50; MPRINT(LOOP): attrib phne_num length=$10; MPRINT(LOOP): attrib pgm_trmntn_cd length=$2; MPRINT(LOOP): attrib trmntn_exprtn_dt length=5; MPRINT(LOOP): attrib srvy_prpse_cd length=$1; MPRINT(LOOP): attrib gnrl_cntl_type_cd length=$2; MPRINT(LOOP): attrib zip_cd length=$5; MPRINT(LOOP): attrib fips_state_cd length=$2; MPRINT(LOOP): attrib fips_cnty_cd length=$3; MPRINT(LOOP): attrib cbsa_urbn_rrl_ind length=$1; MPRINT(LOOP): attrib acrdtn_efctv_dt length=5; MPRINT(LOOP): attrib acrdtn_exprtn_dt length=5; MPRINT(LOOP): attrib acrdtn_type_cd length=$1; MPRINT(LOOP): attrib crtfd_bed_cnt length=4; MPRINT(LOOP): attrib bed_cnt length=4; MPRINT(LOOP): attrib crna_cnt length=5; MPRINT(LOOP): attrib rn_24_hr_wvr_sw length=$1; MPRINT(LOOP): attrib lsc_wvr_sw length=$1; MPRINT(LOOP): attrib scope_of_srvc_wvr_sw length=$1; 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; 28 The SAS System 17:41 Tuesday, January 8, 2013 MPRINT(LOOP): attrib rehab_unit_trmntn_dt length=5; MPRINT(LOOP): attrib rltd_prvdr_num length=$10; MPRINT(LOOP): attrib rsdnt_pgm_ada_aprvd_sw length=$1; MPRINT(LOOP): attrib rsdnt_pgm_ama_aprvd_sw length=$1; MPRINT(LOOP): attrib rsdnt_pgm_aoa_aprvd_sw length=$1; MPRINT(LOOP): attrib rsdnt_pgm_othr_aprvd_sw length=$1; MPRINT(LOOP): attrib inhltn_thrpst_cnt length=5; MPRINT(LOOP): attrib open_hrt_srgry_srvc_cd length=$1; MPRINT(LOOP): attrib pstoprtv_rcvry_srvc_cd length=$1; MPRINT(LOOP): attrib acute_rnl_dlys_srvc_cd length=$1; MPRINT(LOOP): attrib acute_rnl_dlys_srvc_desc length=$3; WARNING: Length of character variable ACUTE_RNL_DLYS_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib alchl_drug_srvc_desc length=$39; MPRINT(LOOP): attrib alchl_drug_srvc_cd length=$1; MPRINT(LOOP): attrib ansthsa_srvc_cd length=$1; MPRINT(LOOP): attrib ansthsa_srvc_desc length=$39; MPRINT(LOOP): attrib audlgy_srvc_cd length=$1; MPRINT(LOOP): attrib audlgy_srvc_desc length=$39; 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; 29 The SAS System 17:41 Tuesday, January 8, 2013 MPRINT(LOOP): attrib srgcl_icu_srvc_cd length=$1; MPRINT(LOOP): attrib ip_srgcl_srvc_cd length=$1; MPRINT(LOOP): attrib ip_srgcl_srvc_desc length=$39; MPRINT(LOOP): attrib mgntc_rsnc_img_srvc_cd length=$1; MPRINT(LOOP): attrib mgntc_rsnc_img_srvc_desc length=$39; MPRINT(LOOP): attrib neontl_icu_srvc_desc length=$39; MPRINT(LOOP): attrib neontl_nrsry_srvc_cd length=$1; MPRINT(LOOP): attrib neontl_nrsry_srvc_desc length=$39; MPRINT(LOOP): attrib nrsrgcl_srvc_desc length=$39; MPRINT(LOOP): attrib nrsrgcl_srvc_cd length=$1; MPRINT(LOOP): attrib nuclr_mdcn_srvc_cd length=$1; MPRINT(LOOP): attrib nuclr_mdcn_srvc_desc length=$39; MPRINT(LOOP): attrib ob_srvc_cd length=$1; MPRINT(LOOP): attrib ob_srvc_desc length=$39; MPRINT(LOOP): attrib ot_srvc_cd length=$1; MPRINT(LOOP): attrib ot_srvc_desc length=$3; WARNING: Length of character variable OT_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib oprtg_room_srvc_desc length=$39; 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. 30 The SAS System 17:41 Tuesday, January 8, 2013 MPRINT(LOOP): attrib op_psych_srvc_desc length=$3; WARNING: Length of character variable OP_PSYCH_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib dgnstc_rdlgy_srvc_cd length=$1; MPRINT(LOOP): attrib thrptc_rdlgy_srvc_cd length=$1; MPRINT(LOOP): attrib thrptc_rdlgy_srvc_desc length=$1; WARNING: Length of character variable THRPTC_RDLGY_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib rcnstrctn_srgy_srvc_desc length=$1; WARNING: Length of character variable RCNSTRCTN_SRGY_SRVC_DESC has already been set. Use the LENGTH statement as the very first statement in the DATA STEP to declare the length of a character variable. MPRINT(LOOP): attrib rcnstrctn_srgy_srvc_cd length=$1; MPRINT(LOOP): attrib op_rehab_srvc_cd length=$1; MPRINT(LOOP): attrib op_rehab_srvc_desc length=$39; MPRINT(LOOP): attrib rsprtry_care_srvc_cd length=$1; MPRINT(LOOP): attrib rsprtry_care_srvc_desc length=$44; MPRINT(LOOP): attrib scl_srvc_cd length=$1; MPRINT(LOOP): attrib scl_srvc_desc length=$39; MPRINT(LOOP): attrib spch_pthlgy_srvc_cd length=$1; 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): ***************************************************************; 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 31 The SAS System 17:41 Tuesday, January 8, 2013 = 'CLIA ID Number 4' CLIA_ID_NUMBER_5 = 'CLIA ID Number 5' NRS_AIDE_CNTRCT_CNT = 'Certification Nurse Aides - Contract' NRS_AIDE_FLTM_CNT = 'Certification Nurse Aides - Full-Time' NRS_AIDE_PRTM_CNT = 'Certification Nurse Aides - Part-Time' CRNA_CNT = 'Certified Registered Nurse Anesthetists (CRNA)' CHOW_SW = 'Change of Ownership Switch' RN_24_HR_WVR_SW = 'Compliance: 24 Hour Registered Nurse' RN_7_DAY_WVR_SW = 'Compliance: 7 Day Registered Nurse' BED_PER_ROOM_WVR_SW = 'Compliance: Beds Per Room Waiver' LSC_WVR_SW = 'Compliance: Life Safety Code' ROOM_SIZE_WVR_SW = 'Compliance: Patient Room Size' SCOPE_OF_SRVC_WVR_SW = 'Compliance: Scope of Service' TCHNCL_PRSNEL_WVR_SW = 'Compliance: Technical Personnel Waiver' CNSLR_EMPLEE_CNT = 'Counselors - Staff' CNSLR_VLNTR_CNT = 'Counselors - Volunteer' SRVY_EVER_ACRDTD_SW = 'Current Survey Ever Accredited' SRVY_EVER_NACRDTD_SW = 'Current Survey Ever Non-Accredited' SRVY_EVER_SB_SW = 'Current Survey Ever Swing Bed' ASC_BGN_SRVC_DT = 'Date Center Began Providing Services' VLDTN_SRVY_DT = 'Date of Validation Survey' DNTST_CNTRCT_CNT = 'Dentists - Contract' DNTST_FLTM_CNT = 'Dentists - Full-Time' DNTST_PRTM_CNT = 'Dentists - Part-Time' DIETN_CNT = 'Dietitians' DIETN_CNTRCT_CNT = 'Dietitians - Contract' DIETN_FLTM_CNT = 'Dietitians - Full-Time' DIETN_PRTM_CNT = 'Dietitians - Part-Time' DRCT_CARE_PRSNEL_CNT = 'Direct Care Personnel' DRCTR_QUALN_CD = 'Director Qualifications' ESRD_NTWRK_NUM = 'ESRD Network Number' EXPRMT_RSRCH_CNDCTD_SW = 'Experimental Research Conducted' FQHC_APPROVED_RHC_PROVIDER_NUM = 'FQHC Approved RHC Provider Num' FAX_PHNE_NUM = 'Fax Phone Number' FED_PGM_SPRT_SW = 'Federal Program Support' FED_FUNDD_FQHC_SW = 'Federally Funded Health Center' FY_END_MO_DAY_CD = 'Fiscal Year Ending Date' FOOD_SRVC_CNTRCT_CNT = 'Food Service - Contract' FOOD_SRVC_FLTM_CNT = 'Food Service - Full-Time' FOOD_SRVC_PRTM_CNT = 'Food Service - Part-Time' FQHC_APRVD_RHC_SW = 'FQHC Approved Rural Health Clinic' HHA_QLFYD_OPT_SPCH_SW = 'HHA Qualified For Outpatient Physical Therapy' HH_AIDE_CNT = 'Home Health Aides' HH_AIDE_VLNTR_CNT = 'Home Health Aides - Volunteer' HMMKR_EMPLEE_CNT = 'Homemakers - Staff' HMMKR_VLNTR_CNT = 'Homemakers - Volunteer' MDCR_HOSPC_SW = 'Hospice Switch' HOSP_BSD_SW = 'Hospital Based Switch' HSEKPNG_CNTRCT_CNT = 'Housekeeping - Contract' HSEKPNG_FLTM_CNT = 'Housekeeping - Full-Time' HSEKPNG_PRTM_CNT = 'Housekeeping - Part-Time' LTC_CROSS_REF_PROVIDER_NUMBER = 'LTC Cross Ref Provider Number' LPN_LVN_CNT = 'Licensed Practical/Vocational Nurses' LPN_LVN_CNTRCT_CNT = 'LPN/LVN - Contract' LPN_LVN_FLTM_CNT = 'LPN/LVN - Full-Time' LPN_LVN_PRTM_CNT = 'LPN/LVN - Part-Time' LPN_LVN_VLNTR_CNT = 'LPNS/LVNS Volunteer' AGRMT_BGN_DT = 'LTC Agreement Beginning Date' AGRMT_END_DT = 'LTC Agreement Ending Date' AGRMT_EXTNSN_DT = 'LTC Agreement Extension Date' MEDICARE_HOSPICE_PROVIDER_NUM = 'Medicare Hospice Provider Num' MEDICARE_MEDICAID_PRVDR_NUMBER = 'Medicare Medicaid Prvdr Number' MDCL_DRCTR_CNTRCT_CNT = 'Medical Director - Contract' MDCL_DRCTR_FLTM_CNT = 'Medical Director - Full-Time' MDCL_DRCTR_PRTM_CNT = 'Medical Director - Part-Time' MDCL_SCHL_AFLTN_CD = 'Medical School Affiliation' MDCL_SCL_WORKR_CNT = 'Medical Social Workers' MDCL_SCL_WORKR_VLNTR_CNT = 'Medical Social Workers - Volunteer' MDCL_TCHNLGST_CNT = 'Medical Technologist Count' MDCD_MDCR_PRTCPTG_PRVDR_SW = 'Medicare or Medicaid Participating Provider Switch' MDCTN_AIDE_CNTRCT_CNT = 'Medication Aides / Techs - Contract' MDCTN_AIDE_FLTM_CNT = 'Medication Aides / Techs - Full-Time' MDCTN_AIDE_PRTM_CNT = 'Medication Aides / Techs - Part-Time' MEET_1861_SW = 'Meets 1861 Definition' MENTL_HLTH_SRVC_CNTRCT_CNT = 'Mental Health Services - Contract' MENTL_HLTH_SRVC_FLTM_CNT = 'Mental Health Services - Full-Time' MENTL_HLTH_SRVC_PRTM_CNT = 'Mental Health Services - Part-Time' MLT_FAC_ORG_NAME = 'Multi-Facility Organization Name' MLT_OWND_FAC_ORG_SW = 'Multi-Facility Organization Owned' NUCLR_MDCN_TCHNCN_CNT = 'Nuclear Medicine Technician Count' SHIFT_4_TUE_PTNT_CNT = 'Number of Patients Tuesday 4th Shift' NAT_CNTRCT_CNT = 'Nurse Aides in Training - Contract' NAT_FLTM_CNT = 'Nurse Aides in Training - Full-Time' NAT_PRTM_CNT = 'Nurse Aides in Training - Part-Time' NRS_PRCTNR_CNT = 'Nurse Practitioners' 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 32 The SAS System 17:41 Tuesday, January 8, 2013 Onsite To Resident Switch (F37A1)' PHYSN_CNT = 'Physicians' RSDNT_PHYSN_CNT = 'Physicians (Residents)' PHYSN_VLNTR_CNT = 'Physicians - Volunteer' PDTRST_CNTRCT_CNT = 'Podiatrists - Contract' PDTRST_FLTM_CNT = 'Podiatrists - Full-Time' PDTRST_PRTM_CNT = 'Podiatrists - Part-Time' AGRMT_END_PRIOR_DT = 'Prior LTC Agreement Ending Date' AGRMT_EXTNSN_PRIOR_DT = 'Prior LTC Agreement Extension Date' RSCND_SUSPNSN_PRIOR_DT = 'Prior Rescind Suspension Date' PGM_PRTCPTN_CD = 'Program Participation' PRVDR_BSD_FAC_SW = 'Provider Based Facility' PSYCH_UNIT_BED_CNT = 'Psychiatric Unit Bed Count' PSYCH_UNIT_EFCTV_DT = 'Psychiatric Unit Effective Date' PSYCH_UNIT_SW = 'Psychiatric Unit Switch' PSYCH_UNIT_TRMNTN_CD = 'Psychiatric Unit Termination Code' PSYCH_UNIT_TRMNTN_DT = 'Psychiatric Unit Termination Date' PSYCHLGST_CNT = 'Psychologist Count' RDLGY_TCHNCN_CNT = 'Radiology Technician Count' OVRRD_BED_CNT_SW = 'Regional Override # 1 (Number Beds)' OVRRD_STFG_SW = 'Regional Override # 2 (Staffing)' OVRRD_NRS_BED_SW = 'Regional Override # 3 (Nurse - Bed)' RN_CNTRCT_CNT = 'Registered Nurse - Contract' RN_FLTM_CNT = 'Registered Nurse - Full-Time' RN_PRTM_CNT = 'Registered Nurse - Part-Time' RN_CNT = 'Registered Nurses' RN_VLNTR_CNT = 'Registered Nurses - Volunteer' REG_PHRMCST_CNT = 'Registered Pharmacists' REHAB_UNIT_BED_CNT = 'Rehabilitation Unit Bed Count' REHAB_UNIT_EFCTV_DT = 'Rehabilitation Unit Effective Date' REHAB_UNIT_SW = 'Rehabilitation Unit Switch' REHAB_UNIT_TRMNTN_CD = 'Rehabilitation Unit Termination Code' REHAB_UNIT_TRMNTN_DT = 'Rehabilitation Unit Termination Date' RELATED_PROVIDER_NUMBER = 'Related Provider Number' RSCND_SUSPNSN_DT = 'Rescind Suspension Date' RSDNT_PGM_ADA_APRVD_SW = 'Resident Program Approved by ADA' RSDNT_PGM_AMA_APRVD_SW = 'Resident Program Approved by AMA' RSDNT_PGM_AOA_APRVD_SW = 'Resident Program Approved by AOA' RSDNT_PGM_OTHR_APRVD_SW = 'Resident Program Approved by Other' INHLTN_THRPST_CNT = 'Respiratory Therapists' RN_DRCTR_CNTRCT_CNT = 'RN Director of Nursing - Contract' RN_DRCTR_FLTM_CNT = 'RN Director of Nursing - Full-Time' RN_DRCTR_PRTM_CNT = 'RN Director of Nursing - Part-Time' ACTVTY_OFSITE_RSDNT_SW = 'Service: Activities-Offsite-Residents Switch' ACTVTY_ONST_NRSDNT_SW = 'Service: Activities-Onsite-Nonresidents Switch' ACTVTY_ONST_RSDNT_SW = 'Service: Activities-Onsite-Residents Switch' APLNC_EQUIP_SRVC_CD = 'Service: Appliance and Equipment' BLOOD_SRVC_OFSITE_RSDNT_SW = 'Service: Blood Administered-Offsite-Resident' BLOOD_SRVC_ONST_NRSDNT_SW = 'Service: Blood Administered-Onsite-Nonresident' BLOOD_SRVC_ONST_RSDNT_SW = 'Service: Blood Administered-Onsite-Resident' CL_SRVC_OFSITE_RSDNT_SW = 'Service: Clinical Laboratory-Offsite-Resident' CL_SRVC_ONST_NRSDNT_SW = 'Service: Clinical Laboratory-Onsite-Nonresident' CL_SRVC_ONST_RSDNT_SW = 'Service: Clinical Laboratory-Onsite-Resident' CNSLNG_SRVC_CD = 'Service: Counseling' DNTL_SRVC_ONST_NRSDNT_SW = 'Service: Dental On-Site Nonresidents' DNTL_SRVC_OFSITE_RSDNT_SW = 'Service: Dental Off-Site Residents' DNTL_SRVC_ONST_RSDNT_SW = 'Service: Dental On-Site Residents' DTRY_ONST_NRSDNT_SW = 'Service: Dietary On-Site Nonresidents' DTRY_OFSITE_RSDNT_SW = 'Service: Dietary Off-Site Residents' DTRY_ONST_RSDNT_SW = 'Service: Dietary On-Site Residents' EKG_SRVC_CD = 'Service: EKG' HH_AIDE_SRVC_CD = 'Service: Home Health Aide' HMMKR_SRVC_CD = 'Service: Homemaker' HSEKPNG_SRVC_ONST_NRSDNT_SW = 'Service: Housekeeping On-Site to Nonresidents' HSEKPNG_SRVC_OFSITE_RSDNT_SW = 'Service: Housekeeping Off-Site to Residents' HSEKPNG_SRVC_ONST_RSDNT_SW = 'Service: Housekeeping On-Site to Residents' INTRN_RSDNT_SRVC_CD = 'Service: Interns and Residents' LAB_SRVC_CD = 'Service: Laboratory' MDCL_SCL_SRVC_CD = 'Service: Medical Social' MDCL_SUPLY_SRVC_CD = 'Service: Medical Supplies' MENTL_HLTH_OFSITE_RSDNT_SW = 'Service: Mental Health Off-Site to Residents' MENTL_HLTH_ONST_RSDNT_SW = 'Service: Mental Health On-Site to Residents' MENTL_HLTH_ONST_NRSDNT_SW = 'Service: Mental Health On-site to Nonresidents' NRSNG_SRVC_CD = 'Service: Nursing' NRSNG_SRVC_ONST_NRSDNT_SW = 'Service: Nursing On-Site to Nonresidents' NRSNG_2_SRVC_CD = 'Service: Nursing #2' NRSNG_3_SRVC_CD = 'Service: Nursing #3' NRSNG_SRVC_OFSITE_RSDNT_SW = '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' 33 The SAS System 17:41 Tuesday, January 8, 2013 SPCH_PTHLGY_ONST_NRSDNT_SW = 'Service: Speech Pathology On-Site to Nonresidents' SPCH_PTHLGY_ONST_RSDNT_SW = 'Service: Speech Pathology On-Site to Residents' SPCH_THRPY_SRVC_CD = 'Service: Speech Therapy' THRPTC_RCRTNL_OFSITE_RSDNT_SW = 'Service: Therapeutic Recreational Specialty Off-Site to Residents' THRPTC_RCRTNL_ONST_NRSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Non Residents' THRPTC_RCRTNL_ONST_RSDNT_SW = 'Service: Therapeutic Recreational Specialty On-Site to Residents' VCTNL_GDNC_SRVC_CD = 'Service: Vocational Guidance' VCTNL_SRVC_OFSITE_RSDNT_SW = 'Service: Vocational Off-Site to Residents' VCTNL_SRVC_ONST_NRSDNT_SW = 'Service: Vocational On-Site to Nonresidents' VCTNL_SRVC_ONST_RSDNT_SW = 'Service: Vocational On-Site to Residents' DGNSTC_XRAY_OFSITE_RSDNT_SW = 'Service: X-ray Off-Site Residents' DGNSTC_XRAY_ONST_NRSDNT_SW = 'Service: X-ray On-Site Nonresidents' DGNSTC_XRAY_ONST_RSDNT_SW = 'Service: X-ray On-Site Residents' OPEN_HRT_SRGRY_SRVC_CD = 'Services Provided: Cardiac - Thoracic Surgery' PSTOPRTV_RCVRY_SRVC_CD = 'Services Provided: Postoperative Recovery Room' ACUTE_RNL_DLYS_SRVC_CD = 'Services Provided: Acute Renal Dialysis' ACUTE_RNL_DLYS_SRVC_DESC = 'Services Provided: Acute Renal Dialysis Description' ALCHL_DRUG_SRVC_DESC = 'Services Provided: Alcohol and or Drug Description' ALCHL_DRUG_SRVC_CD = 'Services Provided: Alcohol and/or Drug' ANSTHSA_SRVC_CD = 'Services Provided: Anesthesia' ANSTHSA_SRVC_DESC = 'Services Provided: Anesthesia Description' AUDLGY_SRVC_CD = 'Services Provided: Audiology' AUDLGY_SRVC_DESC = 'Services Provided: Audiology Description' BURN_CARE_UNIT_SRVC_CD = 'Services Provided: Burn Care Unit' BURN_CARE_UNIT_SRVC_DESC = 'Services Provided: Burn Care Unit Description' OPEN_HRT_SRGRY_SRVC_DESC = 'Services Provided: Cardiac - Thoracic Surgery Description' CRDC_CTHTRZTN_LAB_SRVC_CD = 'Services Provided: Cardiac Catheterization Lab' CRDC_CTHTRZTN_LAB_SRVC_DESC = 'Services Provided: Cardiac Catheterization Lab Description' CARF_IP_REHAB_SRVC_CD = 'Services Provided: CARF Inpatient Rehabilitation Code' CARF_IP_REHAB_SRVC_DESC = 'Services Provided: CARF Inpatient Rehabilitation Description' CHMTHRPY_SRVC_CD = 'Services Provided: Chemotherapy' CHMTHRPY_SRVC_DESC = 'Services Provided: Chemotherapy Description' CHLD_ADLSCNT_PSYCH_SRVC_DESC = 'Services Provided: Child Adolescent Psychiatric Description' CHRPRCTIC_SRVC_CD = 'Services Provided: Chiropractic' CHRPRCTIC_SRVC_DESC = 'Services Provided: Chiropractic Description' CL_SRVC_CD = 'Services Provided: Clinical Laboratory' CL_SRVC_DESC = 'Services Provided: Clinical Laboratory Description' CT_SCAN_SRVC_CD = 'Services Provided: CT Scanner' CT_SCAN_SRVC_DESC = 'Services Provided: CT Scanner Description' DNTL_SRVC_CD = 'Services Provided: Dental' DNTL_SRVC_DESC = 'Services Provided: Dental Description' DGNSTC_RDLGY_SRVC_DESC = 'Services Provided: Diagnostic Radiology Description' DTRY_SRVC_CD = 'Services Provided: Dietary' DTRY_SRVC_DESC = 'Services Provided: Dietary Description' DCTD_ER_SRVC_DESC = 'Services Provided: Emergency Dept (Dedicated) Description' DCTD_ER_SRVC_CD = 'Services Provided: Emergency Dept(Dedicated)' XTRCRPRL_SHCK_LTHTRPTR_SRVC_CD = 'Services Provided: Extracorporeal Shock Wave' XTRCRPRL_SHCK_LTHTRPTR_SRVCDSC = 'Services Provided: Extracorporeal Shock Wave Description' GRNTLGCL_SPCLTY_SRVC_CD = 'Services Provided: Gerontological Specialty' GRNTLGCL_SPCLTY_SRVC_DESC = 'Services Provided: Gerontological Specialty Description' CRNRY_CARE_UNIT_SRVC_CD = 'Services Provided: ICU Cardiac (non-surgical)' CRNRY_CARE_UNIT_SRVC_DESC = 'Services Provided: ICU Cardiac (non-surgical) Description' ICU_SRVC_CD = 'Services Provided: ICU Medical/Surgical' ICU_SRVC_DESC = 'Services Provided: ICU Medical/Surgical Description' NEONTL_ICU_SRVC_CD = 'Services Provided: ICU Neonatal' PED_ICU_SRVC_CD = 'Services Provided: ICU Pediatric' SRGCL_ICU_SRVC_CD = 'Services Provided: ICU Surgical' IP_SRGCL_SRVC_CD = 'Services Provided: Inpatient Surgical' IP_SRGCL_SRVC_DESC = 'Services Provided: Inpatient Surgical Description' MGNTC_RSNC_IMG_SRVC_CD = 'Services Provided: Magnetic Resonance Imaging' MGNTC_RSNC_IMG_SRVC_DESC = 'Services Provided: Magnetic Resonance Imaging Description' NEONTL_ICU_SRVC_DESC = '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 34 The SAS System 17:41 Tuesday, January 8, 2013 Provided: Psychiatric Outpatient Description' DGNSTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Diagnostic)' THRPTC_RDLGY_SRVC_CD = 'Services Provided: Radiology (Therapeutic)' THRPTC_RDLGY_SRVC_DESC = 'Services Provided: Radiology Therapeutic Description' RCNSTRCTN_SRGY_SRVC_DESC = 'Services Provided: Reconstruction Surgery Description' RCNSTRCTN_SRGY_SRVC_CD = 'Services Provided: Reconstructive Surgery' OP_REHAB_SRVC_CD = 'Services Provided: Rehabilitation Outpatient' OP_REHAB_SRVC_DESC = 'Services Provided: Rehabilitation Outpatient Description' RSPRTRY_CARE_SRVC_CD = 'Services Provided: Respiratory Care' RSPRTRY_CARE_SRVC_DESC = 'Services Provided: Respiratory Care Description' SCL_SRVC_CD = 'Services Provided: Social' SCL_SRVC_DESC = 'Services Provided: Social Description' SPCH_PTHLGY_SRVC_CD = 'Services Provided: Speech Pathology' SPCH_PTHLGY_SRVC_DESC = 'Services Provided: Speech Pathology Description' SRGCL_ICU_SRVC_DESC = 'Services Provided: Surgical ICU Description' MDCR_TRNSPLNT_CNTR_SRVC_CD = 'Services Provided: Transplant Center (Medicare Certified)' MDCR_TRNSPLNT_CNTR_SRVC_DESC = 'Services Provided: Transplant Center (Medicare Certified) Description' SHCK_TRMA_SRVC_CD = 'Services Provided: Trauma Center (Designated)' SHCK_TRMA_SRVC_DESC = 'Services Provided: Trauma Center (Designated) Description' URGNT_CARE_SRVC_CD = 'Services Provided: Urgent Care Center Services' URGNT_CARE_SRVC_DESC = 'Services Provided: Urgent Care Description' SCL_WORKR_CNTRCT_CNT = 'Social Worker - Contract' SCL_WORKR_FLTM_CNT = 'Social Worker - Full-Time' SCL_WORKR_PRTM_CNT = 'Social Worker - Part-Time' SCL_WORKR_CNT = 'Social Workers' REHAB_BED_CNT = 'Special Care Bed - Specialized Rehab' AIDS_BED_CNT = 'Special Care Beds - AIDS' ALZHMR_BED_CNT = 'Special Care Beds - Alzheimers' DLYS_BED_CNT = 'Special Care Beds - Dialysis' DSBL_CHLDRN_BED_CNT = 'Special Care Beds - Disabled Child' HEAD_TRMA_BED_CNT = 'Special Care Beds - Head Trauma' HOSPC_BED_CNT = 'Special Care Beds - Hospice' HNTGTN_DEASE_BED_CNT = 'Special Care Beds - Huntingtons' VNTLTR_BED_CNT = 'Special Care Beds - Ventilator' THORC_SRGRY_SW = 'Speciality: Thoracic Surgery' URLGY_SRGRY_SW = 'Speciality: Urology' CRDVSCLR_SRGRY_SW = 'Specialty: Cardiovascular' FT_SRGRY_SW = 'Specialty: Foot' NRLGCL_SRGRY_SW = 'Specialty: Neurological' OB_GYN_SRGRY_SW = 'Specialty: Obstetrics / Gynecology' OPTHMLGY_SRGRY_SW = 'Specialty: Opthamology' ORAL_SRGRY_SW = 'Specialty: Oral' ORTHPDC_SRGRY_SW = 'Specialty: Orthopedic' OTLRYNGLGY_SRGRY_SW = 'Specialty: Otolaryngology' PLSTC_SRGRY_SW = 'Specialty: Plastic Surgery' GNRL_SRGRY_SW = 'Specialty: Surgery' SPCH_PTHLGST_CNTRCT_CNT = 'Speech Pathologist - Contract' SPCH_PTHLGST_FLTM_CNT = 'Speech Pathologist - Full-Time' SPCH_PTHLGST_PRTM_CNT = 'Speech Pathologist - Part-Time' SPCH_PTHLGST_AUDLGST_CNT = 'Speech Pathologist or Audiologist' SPCH_PTHLGST_ARNGMT_CNT = 'Speech Pathologists - Arrangement' SPCH_PTHLGST_CNT = 'Speech Pathologists - Total' HMDLYS_STN_ESRD_CNT = 'Stations - Hemodialysis' DLYS_STN_CNT = 'Stations - Total' SBUNIT_OPRTN_SW = 'Subunit Operation Switch' SBUNIT_SW = 'Subunit Switch' SBUNIT_CNT = 'Subunits' SRTY_BOND_CD = 'Surety Bond Indicator' SB_SIZE_CD = 'Swing Bed Size Code' SB_SW = 'Swing Bed Switch' TCHNLGST_2_YR_RDLGC_CNT = 'Technologists - 2 Year Radiology' TCHNLGST_ASCT_DGR_CNT = 'Technologists - Associate Degree' TCHNLGST_BS_BA_DGR_CNT = 'Technologists - BS/BA Degree' THRPTC_RCRTNL_CNTRCT_CNT = 'Therapeutic Recreational Specialty - Contract' THRPTC_RCRTNL_FLTM_CNT = 'Therapeutic Recreational Specialty - Full-Time' THRPTC_RCRTNL_PRTM_CNT = 'Therapeutic Recreational Specialty - Part-Time' FED_PGM_NAME = 'Title of Federal Program' EMPLEE_CNT = 'Total Number of Employees' GNRL_FAC_TYPE_CD = 'Type of Facility' NPP_TYPE_CD = 'Type of Non-Participating Provider' VLNTR_OTHR_CNT = 'Volunteers - Other' VLNTR_CNT = 'Volunteers - Total' ; MPRINT(LOOP): format CHOW_DT CRTFCTN_DT ORGNL_PRTCPTN_DT CHOW_PRIOR_DT TRMNTN_EXPRTN_DT ACRDTN_EFCTV_DT ACRDTN_EXPRTN_DT ADMSN_SUSPNSN_DT ADMSN_SUSPNSN_PRIOR_DT ASC_BGN_SRVC_DT VLDTN_SRVY_DT AGRMT_BGN_DT AGRMT_END_DT AGRMT_EXTNSN_DT AGRMT_END_PRIOR_DT AGRMT_EXTNSN_PRIOR_DT RSCND_SUSPNSN_PRIOR_DT PSYCH_UNIT_EFCTV_DT PSYCH_UNIT_TRMNN_DT REHAB_UNIT_EFCTV_DT REHAB_UNIT_TRMNTN_DT 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.12 seconds cpu time 0.02 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.01 seconds 35 The SAS System 17:41 Tuesday, January 8, 2013 cpu time 0.01 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.03 seconds cpu time 0.00 seconds MPRINT(LOOP): proc freq; MPRINT(LOOP): tables PRVDR_CTGRY_CD; MPRINT(LOOP): format PRVDR_CTGRY_CD $pcat.; NOTE: There were 100 observations read from the data set WORK.POS2011. NOTE: The PROCEDURE FREQ printed page 1. NOTE: PROCEDURE FREQ used (Total process time): real time 0.03 seconds cpu time 0.01 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 ; 1323 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.35 seconds cpu time 0.10 seconds