/* PROGRAM: ED14INP PURPOSE: INPUT STATEMENT TO READ 2014 NATIONAL HOSPITAL AMBULATORY MEDICAL CARE SURVEY EMERGENCY DEPARTMENT PUBLIC USE FILE We recommend that you use a MISSOVER option in your INFILE statement. Note that the value of LRECL may equal or exceed the actual file size. We use a value of 9999 for convenience. EXAMPLE: INFILE [file reference] MISSOVER LRECL=9999; */ INPUT @1 VMONTH 2. /*Month of Visit */ @3 VDAYR 1. /*Day of Week of Visit */ @4 ARRTIME $CHAR4. /*Arrival time (military time) */ @8 WAITTIME 4. /*Waiting time to see MD/DO/PA/NP in minutes */ @12 LOV 4. /*Length of visit in minutes */ @16 AGE 3. /*Patient age in years */ @19 AGER 1. /*Age recode */ @20 AGEDAYS 3. /*Age in days for patients less than one year */ @23 RESIDNCE 2. /*Patient residence */ @25 SEX 1. /*Patient sex */ @26 ETHUN 2. /*Unimputed ethnicity */ @28 ETHIM 1. /*Imputed ethnicity */ @29 RACEUN 2. /*Unimputed race */ @31 RACER 1. /*White/Black/Other imputed race */ @32 RACERETH 1. /*RACER and ETHNIC combination */ @33 ARREMS 2. /*Arrival by ambulance */ @35 AMBTRANSFER 2. /*Was the patient transferred from another hospital or urgent care facility? */ @37 NOPAY 1. /*No answer to expected source of payment item */ @38 PAYPRIV 1. /*Expected source of payment: Private insurance */ @39 PAYMCARE 1. /*Expected source of payment: Medicare */ @40 PAYMCAID 1. /*Expected source of payment: Medicaid or CHIP or other state-based program */ @41 PAYWKCMP 1. /*Expected source of payment: Workers Compensation */ @42 PAYSELF 1. /*Expected source of payment: Self pay */ @43 PAYNOCHG 1. /*Expected source of payment: No charge */ @44 PAYOTH 1. /*Expected source of payment: Other */ @45 PAYDK 1. /*Expected source of payment: Unknown */ @46 PAYTYPER 2. /*Recoded primary expected source of payment for visit (based on hierarchy) */ @48 TEMPF 4. /*Initial vital signs: Temperature (Fahrenheit) */ @52 PULSE 3. /*Initial vital signs: Heart rate per minute */ @55 RESPR 3. /*Initial vital signs: Respiratory rate per minute */ @58 BPSYS 3. /*Initial vital signs: Blood pressure - Systolic */ @61 BPDIAS 3. /*Initial vital signs: Blood pressure - Diastolic */ @64 POPCT 3. /*Initial vital signs: Pulse oximetry (percent) */ @67 IMMEDR 2. /*Immediacy with which patient should be seen (unimputed) */ @69 PAINSCALE 2. /*Pain scale (0-10) */ @71 SEEN72 2. /*Was patient seen in this ED within the last 72 hours and discharged? */ @73 RFV1 5. /*Patient's complaint, symptom, or other reason for visit #1 - detailed category */ @78 RFV2 5. /*Patient's complaint, symptom, or other reason for visit #2 - detailed category */ @83 RFV3 5. /*Patient's complaint, symptom, or other reason for visit #3 - detailed category */ @88 RFV4 5. /*Patient's complaint, symptom, or other reason for visit #4 - detailed category */ @93 RFV5 5. /*Patient's complaint, symptom, or other reason for visit #5 - detailed category */ @73 RFV13D 4. /*Patient's complaint, symptom, or other reason for visit #1 - broader category */ @78 RFV23D 4. /*Patient's complaint, symptom, or other reason for visit #2 - broader category */ @83 RFV33D 4. /*Patient's complaint, symptom, or other reason for visit #3 - broader category */ @88 RFV43D 4. /*Patient's complaint, symptom, or other reason for visit #4 - broader category */ @93 RFV53D 4. /*Patient's complaint, symptom, or other reason for visit #5 - broader category */ @98 EPISODE 2. /*Episode of care */ @100 INJURY 2. /*Is visit related to an injury/trauma, overdose, poisoning, or adverse effect of medical treatment? - Recoded from INJPOISAD */ @102 INJR1 1. /*Is visit related to injury or poisoning - recode #1 */ @103 INJR2 1. /*Is visit related to injury or poisoning - recode #2 */ @104 INJPOISAD 2. /*Is visit related to injury, poisoning or adverse effect of medical treatment?  Uses new item format for 2012 */ @106 INJPOISADR1 2. /*Is visit related to injury, poisoning or adverse effect of medical treatment? - recode #1 */ @108 INJPOISADR2 2. /*Is visit related to injury, poisoning or adverse effect of medical treatment? - recode #2 */ @110 INJURY72 2. /*Did the injury/trauma, overdose, or poisoning occur within 72 hours prior to the date and time of visit? */ @112 INTENT 2. /*Is this injury/overdose/poisoning intentional? */ @114 INJDETR 2. /*Is visit related to any of the following? */ @116 INJDETR1 2. /*Is visit related to any of the following? - recode #1 */ @118 INJDETR2 2. /*Is visit related to any of the following? - recode #2 */ @120 CAUSE1 $CHAR4. /*Cause of injury, poisoning, adverse effect #1 - detailed category */ @124 CAUSE2 $CHAR4. /*Cause of injury, poisoning, adverse effect #2 - detailed category */ @128 CAUSE3 $CHAR4. /*Cause of injury, poisoning, adverse effect #3 - detailed category */ @120 CAUSE13D $CHAR3. /*Cause of injury, poisoning, adverse effect #1 - broader category */ @124 CAUSE23D $CHAR3. /*Cause of injury, poisoning, adverse effect #2 - broader category */ @128 CAUSE33D $CHAR3. /*Cause of injury, poisoning, adverse effect #3 - broader category */ @132 CAUSE1R 4. /*Cause of injury, poisoning, adverse effect #1 - numeric recode */ @136 CAUSE2R 4. /*Cause of injury, poisoning, adverse effect #2 - numeric recode */ @140 CAUSE3R 4. /*Cause of injury, poisoning, adverse effect #3 - numeric recode */ @144 DIAG1 $CHAR5. /*Diagnosis #1 - detailed category */ @149 DIAG2 $CHAR5. /*Diagnosis #2 - detailed category */ @154 DIAG3 $CHAR5. /*Diagnosis #3 - detailed category */ @159 DIAG4 $CHAR5. /*Diagnosis #4 - detailed category */ @164 DIAG5 $CHAR5. /*Diagnosis #5 - detailed category */ @144 DIAG13D $CHAR3. /*Diagnosis #1 - broader category */ @149 DIAG23D $CHAR3. /*Diagnosis #2 - broader category */ @154 DIAG33D $CHAR3. /*Diagnosis #3 - broader category */ @159 DIAG43D $CHAR3. /*Diagnosis #4 - broader category */ @164 DIAG53D $CHAR3. /*Diagnosis #5 - broader category */ @169 PRDIAG1 2. /*For diagnosis 1, is this probable, questionable, or ruleout? */ @171 PRDIAG2 2. /*For diagnosis 2, is this probable, questionable, or ruleout? */ @173 PRDIAG3 2. /*For diagnosis 3, is this probable, questionable, or ruleout? */ @175 PRDIAG4 2. /*For diagnosis 4, is this probable, questionable, or ruleout? */ @177 PRDIAG5 2. /*For diagnosis 5, is this probable, questionable, or ruleout? */ @179 DIAG1R 6. /*Diagnosis #1 - detailed category - numeric recode */ @185 DIAG2R 6. /*Diagnosis #2 - detailed category - numeric recode */ @191 DIAG3R 6. /*Diagnosis #3 - detailed category - numeric recode */ @197 DIAG4R 6. /*Diagnosis #4 - detailed category - numeric recode */ @203 DIAG5R 6. /*Diagnosis #5 - detailed category - numeric recode */ @209 CANCER 1. /*Does patient have: Cancer */ @210 ETOHAB 1. /*Does patient have: Alcohol abuse */ @211 ALZHD 1. /*Does patient have: Alzheimer's disease/Dementia */ @212 ASTHMA 1. /*Does patient have: Asthma */ @213 CEBVD 1. /*Does patient have: Cerebrovascular disease/stroke (CVA) or transient ischemic attack (TIA)? */ @214 CKD 1. /*Does patient have: Chronic kidney disease (CKD) */ @215 COPD 1. /*Does patient have: Chronic obstructive pulmonary disease (COPD) */ @216 CHF 1. /*Does patient have: Congestive heart failure (CHF) */ @217 CAD 1. /*Does patient have: Coronary artery disease (CAD), ischemic heart disease (IHD) or history of myocardial infarction (MI) */ @218 DEPRN 1. /*Does patient have: Depression */ @219 DIABTYP1 1. /*Does patient have: Diabetes mellitus (DM) - Type I */ @220 DIABTYP2 1. /*Does patient have: Diabetes mellitus (DM) - Type II */ @221 DIABTYP0 1. /*Does patient have: Diabetes mellitus (DM) - Type unspecified */ @222 ESRD 1. /*Does patient have: End-stage renal disease (ESRD) */ @223 HPE 1. /*Does patient have: History of pulmonary embolism (PE) or deep vein thrombosis (DVT) */ @224 EDHIV 1. /*Does patient have: HIV infection/AIDS */ @225 HYPLIPID 1. /*Does patient have: Hyperlipidemia */ @226 HTN 1. /*Does patient have: Hypertension */ @227 OBESITY 1. /*Does patient have: Obesity */ @228 OSA 1. /*Does patient have: Obstructive sleep apnea (OSA) */ @229 OSTPRSIS 1. /*Does patient have: Osteoporosis */ @230 SUBSTAB 1. /*Does patient have: Substance abuse */ @231 NOCHRON 1. /*Does patient have: None of the above */ @232 TOTCHRON 2. /*Total number of chronic conditions */ @234 DIAGSCRN 1. /*Were diagnostic services ordered or provided? */ @235 ABG 1. /*Arterial blood gases */ @236 BAC 1. /*Blood alcohol concentration */ @237 BLOODCX 1. /*Blood culture */ @238 BNP 1. /*Brain natriuretic peptide */ @239 BUNCREAT 1. /*BUN (Blood urea nitrogen)/creatinine */ @240 CARDENZ 1. /*Cardiac enzymes */ @241 CBC 1. /*CBC */ @242 DDIMER 1. /*D-dimer */ @243 ELECTROL 1. /*Electrolytes */ @244 GLUCOSE 1. /*Glucose */ @245 LACTATE 1. /*Lactate */ @246 LFT 1. /*Liver function tests */ @247 PTTINR 1. /*Prothrombin time/INR */ @248 OTHERBLD 1. /*Other blood test */ @249 CARDMON 1. /*Cardiac monitor */ @250 EKG 1. /*EKG/ECG */ @251 HIVTEST 1. /*HIV test */ @252 FLUTEST 1. /*Rapid flu/Influenza test */ @253 PREGTEST 1. /*Pregnancy test */ @254 TOXSCREN 1. /*Toxicology screen */ @255 URINE 1. /*Urinalysis */ @256 WOUNDCX 1. /*Wound culture */ @257 URINECX 1. /*Urine culture */ @258 OTHRTEST 1. /*Other test/service */ @259 ANYIMAGE 1. /*Any imaging */ @260 XRAY 1. /*X-ray */ @261 CATSCAN 1. /*CT scan */ @262 CTAB 1. /*CT scan - abdomen/pelvis */ @263 CTCHEST 1. /*CT scan - chest */ @264 CTHEAD 1. /*CT scan- head */ @265 CTOTHER 1. /*CT scan - other */ @266 CTUNK 1. /*CT Scan - unknown */ @267 CTCONTRAST 2. /*Was CT Scan ordered/provided with intravenous (IV) contrast? */ @269 MRI 1. /*MRI */ @270 MRICONTRAST 2. /*Was MRI ordered/provided with intravenous (IV) contrast? */ @272 ULTRASND 1. /*Ultrasound */ @273 OTHIMAGE 1. /*Other imaging */ @274 TOTDIAG 2. /*Total number of diagnostic services ordered or provided */ @276 PROC 1. /*Were procedures provided at this visit? */ @277 BPAP 1. /*BPAP/CPAP */ @278 BLADCATH 1. /*Bladder catheter */ @279 CASTSPLINT 1. /*Cast, splint or wrap */ @280 CENTLINE 1. /*Central line */ @281 CPR 1. /*CPR */ @282 ENDOINT 1. /*Endotracheal intubation */ @283 INCDRAIN 1. /*Incision and drainage (I&D) */ @284 IVFLUIDS 1. /*IV fluids */ @285 LUMBAR 1. /*Lumbar puncture */ @286 NEBUTHER 1. /*Nebulizer therapy */ @287 PELVIC 1. /*Pelvic exam */ @288 SKINADH 1. /*Skin adhesives */ @289 SUTURE 1. /*Suturing/Staples */ @290 OTHPROC 1. /*Other procedure */ @291 TOTPROC 2. /*Total number of procedures provided */ @293 MED 1. /*Were medications given at this visit or prescribed at ED discharge? */ @294 MED1 $CHAR5. /*Medication 1 */ @299 MED2 $CHAR5. /*Medication 2 */ @304 MED3 $CHAR5. /*Medication 3 */ @309 MED4 $CHAR5. /*Medication 4 */ @314 MED5 $CHAR5. /*Medication 5 */ @319 MED6 $CHAR5. /*Medication 6 */ @324 MED7 $CHAR5. /*Medication 7 */ @329 MED8 $CHAR5. /*Medication 8 */ @334 MED9 $CHAR5. /*Medication 9 */ @339 MED10 $CHAR5. /*Medication 10 */ @344 MED11 $CHAR5. /*Medication 11 */ @349 MED12 $CHAR5. /*Medication 12 */ @354 MED13 $CHAR5. /*Medication 13 */ @359 MED14 $CHAR5. /*Medication 14 */ @364 MED15 $CHAR5. /*Medication 15 */ @369 MED16 $CHAR5. /*Medication 16 */ @374 MED17 $CHAR5. /*Medication 17 */ @379 MED18 $CHAR5. /*Medication 18 */ @384 MED19 $CHAR5. /*Medication 19 */ @389 MED20 $CHAR5. /*Medication 20 */ @394 MED21 $CHAR5. /*Medication 21 */ @399 MED22 $CHAR5. /*Medication 22 */ @404 MED23 $CHAR5. /*Medication 23 */ @409 MED24 $CHAR5. /*Medication 24 */ @414 MED25 $CHAR5. /*Medication 25 */ @419 MED26 $CHAR5. /*Medication 26 */ @424 MED27 $CHAR5. /*Medication 27 */ @429 MED28 $CHAR5. /*Medication 28 */ @434 MED29 $CHAR5. /*Medication 29 */ @439 MED30 $CHAR5. /*Medication 30 */ @444 GPMED1 2. /*Medication 1 given in ED or Rx at discharge */ @446 GPMED2 2. /*Medication 2 given in ED or Rx at discharge */ @448 GPMED3 2. /*Medication 3 given in ED or Rx at discharge */ @450 GPMED4 2. /*Medication 4 given in ED or Rx at discharge */ @452 GPMED5 2. /*Medication 5 given in ED or Rx at discharge */ @454 GPMED6 2. /*Medication 6 given in ED or Rx at discharge */ @456 GPMED7 2. /*Medication 7 given in ED or Rx at discharge */ @458 GPMED8 2. /*Medication 8 given in ED or Rx at discharge */ @460 GPMED9 2. /*Medication 9 given in ED or Rx at discharge */ @462 GPMED10 2. /*Medication 10 given in ED or Rx at discharge */ @464 GPMED11 2. /*Medication 11 given in ED or Rx at discharge */ @466 GPMED12 2. /*Medication 12 given in ED or Rx at discharge */ @468 GPMED13 2. /*Medication 13 given in ED or Rx at discharge */ @470 GPMED14 2. /*Medication 14 given in ED or Rx at discharge */ @472 GPMED15 2. /*Medication 15 given in ED or Rx at discharge */ @474 GPMED16 2. /*Medication 16 given in ED or Rx at discharge */ @476 GPMED17 2. /*Medication 17 given in ED or Rx at discharge */ @478 GPMED18 2. /*Medication 18 given in ED or Rx at discharge */ @480 GPMED19 2. /*Medication 19 given in ED or Rx at discharge */ @482 GPMED20 2. /*Medication 20 given in ED or Rx at discharge */ @484 GPMED21 2. /*Medication 21 given in ED or Rx at discharge */ @486 GPMED22 2. /*Medication 22 given in ED or Rx at discharge */ @488 GPMED23 2. /*Medication 23 given in ED or Rx at discharge */ @490 GPMED24 2. /*Medication 24 given in ED or Rx at discharge */ @492 GPMED25 2. /*Medication 25 given in ED or Rx at discharge */ @494 GPMED26 2. /*Medication 26 given in ED or Rx at discharge */ @496 GPMED27 2. /*Medication 27 given in ED or Rx at discharge */ @498 GPMED28 2. /*Medication 28 given in ED or Rx at discharge */ @500 GPMED29 2. /*Medication 29 given in ED or Rx at discharge */ @502 GPMED30 2. /*Medication 30 given in ED or Rx at discharge */ @504 NUMGIV 2. /*Number of medications given in ED */ @506 NUMDIS 2. /*Number of medications prescribed at discharge */ @508 NUMMED 2. /*Number of medications */ @510 VITALSD 2. /*Were vitals taken at discharge? */ @512 TEMPDF 4. /*Vitals at discharge: Temperature in Fahrenheit */ @516 PULSED 3. /*Vitals at discharge: Heart rate (beats per minute) */ @519 RESPRD 3. /*Vitals at discharge: Respiratory rate (breaths per minute) */ @522 BPSYSD 3. /*Vitals at discharge: Systolic blood pressure */ @525 BPDIASD 3. /*Vitals at discharge: Diastolic blood pressure */ @528 NOPROVID 1. /*No answer to provider seen item */ @529 ATTPHYS 1. /*ED attending physician seen */ @530 RESINT 1. /*ED resident/intern seen */ @531 CONSULT 1. /*Consulting physician seen */ @532 RNLPN 1. /*Registered nurse/LPN seen */ @533 NURSEPR 1. /*Nurse practitioner seen */ @534 PHYSASST 1. /*Physician assistant seen */ @535 EMT 1. /*EMT */ @536 MHPROV 1. /*Other mental health provider */ @537 OTHPROV 1. /*Other provider seen */ @538 NODISP 1. /*No answer to disposition item */ @539 NOFU 1. /*No follow up planned */ @540 RETRNED 1. /*Return to ED */ @541 RETREFFU 1. /*Return/refer to physician/clinic for FU */ @542 LEFTBTRI 1. /*Left before triage */ @543 LEFTATRI 1. /*Left after triage */ @544 LEFTAMA 1. /*Left AMA (against medical advice) */ @545 DOA 1. /*DOA */ @546 DIEDED 1. /*Died in ED */ @547 TRANNH 1. /*Return/transfer to nursing home */ @548 TRANPSYC 1. /*Transfer to psychiatric hospital */ @549 TRANOTH 1. /*Transfer to other hospital */ @550 ADMITHOS 1. /*Admit to this hospital */ @551 OBSHOS 1. /*Admit to observation unit, then hospitalized */ @552 OBSDIS 1. /*Admit to observation unit, then discharged */ @553 OTHDISP 1. /*Other disposition */ @554 ADMIT 2. /*Admitted to: */ @556 ADMTPHYS 2. /*Admitting physician */ @558 BOARDED 4. /*Length of time boarded in ED in minutes */ @562 LOS 4. /*If admitted, length of stay in hospital (days) */ @566 HDDIAG1 $CHAR5. /*Hospital discharge diagnosis #1 - detailed category */ @571 HDDIAG2 $CHAR5. /*Hospital discharge diagnosis #2 - detailed category */ @576 HDDIAG3 $CHAR5. /*Hospital discharge diagnosis #3 - detailed category */ @581 HDDIAG4 $CHAR5. /*Hospital discharge diagnosis #4 - detailed category */ @586 HDDIAG5 $CHAR5. /*Hospital discharge diagnosis #5 - detailed category */ @566 HDDIAG13D $CHAR3. /*Hospital discharge diagnosis #1 - broader category */ @571 HDDIAG23D $CHAR3. /*Hospital discharge diagnosis #2 - broader category */ @576 HDDIAG33D $CHAR3. /*Hospital discharge diagnosis #3 - broader category */ @581 HDDIAG43D $CHAR3. /*Hospital discharge diagnosis #4 - broader category */ @586 HDDIAG53D $CHAR3. /*Hospital discharge diagnosis #5 - broader category */ @591 HDDIAG1R 6. /*Hospital discharge diagnosis #1 - numeric recode */ @597 HDDIAG2R 6. /*Hospital discharge diagnosis #2 - numeric recode */ @603 HDDIAG3R 6. /*Hospital discharge diagnosis #3 - numeric recode */ @609 HDDIAG4R 6. /*Hospital discharge diagnosis #4 - numeric recode */ @615 HDDIAG5R 6. /*Hospital discharge diagnosis #5 - numeric recode */ @621 HDSTAT 2. /*Hospital discharge status */ @623 ADISP 2. /*Disposition of live discharges */ @625 OBSSTAY 4. /*Length of stay in observation unit in minutes */ @629 STAY24 1. /*ED discharge greater than 24 hours */ @630 AGEFL 2. /*Was patient age reported, calculated or imputed? */ @632 BDATEFL 1. /*Birth date imputed? */ @633 SEXFL 1. /*Sex imputed? */ @634 ETHNICFL 1. /*Ethnicity imputed? */ @635 RACERFL 1. /*RACER imputed? */ @636 HOSPCODE 3. /*Hospital number */ @639 PATCODE 3. /*Patient code */ @642 EBILLANYE 2. /*Does your ED submit any claims electronically (electronic billing)? */ @644 EMRED 2. /*Does your ED use electronic medical or health records (EMR/EHR) (not including billing records)? */ @646 HHSMUE 2. /*Does your current system meet meaningful use criteria as defined by the Department of Health and Human Services? */ @648 SECURCHCKE 2. /*Has your hospital made an assessment of the potential risks and vulnerabilities of your electronic health information within ... */ @650 DIFFEHRE 2. /*Does your EHR have the capability to electronically send health information to another provider whose EHR system is different ...*/ @652 EHRINSE 2. /*Does your ED have plans for installing a new EMR/EHR system within the next 18 months? */ @654 EDEMOGE 2. /*Does your ED have a computerized system for patient history and demographic information? */ @656 EDEMOGER 2. /*Recode of EDEMOGE for trending with data prior to 2010 */ @658 EPROLSTE 2. /*If computerized system for pat history and demo info, does this include patient problem list? */ @660 EPROLSTER 2. /*Recode of EPROLSTE for trending with data prior to 2010 */ @662 EVITALE 2. /*Does your ED have a computerized system for recording and charting vital signs? */ @664 EVITALER 2. /*Recode of EVITALE for trending with data prior to 2010 */ @666 ESMOKEE 2. /*Does your ED have a computerized system for recording patient smoking status? */ @668 ESMOKEER 2. /*Recode of ESMOKEE for trending with data prior to 2010 */ @670 EPNOTESE 2. /*Does your ED have a computerized system for recording clinical notes? */ @672 EPNOTESER 2. /*Recode of EPNOTESE for trending with data prior to 2010 */ @674 EMEDALGE 2. /*Does your ED have a computerized system for recording patient's medications and allergies? */ @676 EMEDALGER 2. /*Recode of EMEDALGE for trending with data prior to 2010 */ @678 EMEDIDE 2. /*Does your ED have a computerized system for reconciling lists of patients' medications to identify the most accurate list? */ @680 EMEDIDER 2. /*Recode of EMEDIDE for trending with data prior to 2010 */ @682 EREMINDE 2. /*Does your ED have a computerized system for providing reminders for guideline-based interventions or screening tests? */ @684 EREMINDER 2. /*Recde of EREMINDE for trending with data prior to 2010 */ @686 ECPOEE 2. /*Does your ED have a computerized system for orders for prescriptions? */ @688 ECPOEER 2. /*Recode of ECPOEE for trending with data prior to 2010 */ @690 ESCRIPE 2. /*If computerized system for orders for prescriptions, are prescriptions sent electronically to the pharmacy? */ @692 ESCRIPER 2. /*Recode of ESCRIPE for trending with data prior to 2010 */ @694 EWARNE 2. /*Does your ED have a computerized system for providing warnings of drug interactions or contraindications? */ @696 EWARNER 2. /*Recode of EWARNE for trending with data prior to 2010 */ @698 EFORMULAE 2. /*Does your ED have a computerized system for performing drug formulary checks? */ @700 EFORMULAER 2. /*Recode of EFORMULAE for trending with data prior to 2010 */ @702 ECTOEE 2. /*Does your ED have a computerized system for ordering lab tests? */ @704 ECTOEER 2. /*Recode of ECTOEE for trending with data prior to 2010 */ @706 EORDERE 2. /*If computerized system for ordering lab tests, are orders sent electronically to the lab? */ @708 EORDERER 2. /*Recode of EORDERE for trending with data prior to 2010 */ @710 ERESULTE 2. /*Does your ED have a computerized system for viewing of lab results? */ @712 ERESULTER 2. /*Recode of ERESULTE for trending with data prior to 2010 */ @714 EGRAPHE 2. /*Can the EHR/EMR automatically graph a specific patient's lab results over time? */ @716 EGRAPHER 2. /*Recode of EGRAPHE for trending with data prior to 2010 */ @718 ERADIE 2. /*Does your ED have a computerized system for ordering radiology tests */ @720 ERADIER 2. /*Recode of ERADIE for trending with data prior to 2010 */ @722 EIMGRESE 2. /*Does your ED have a computerized system for viewing imaging results? */ @724 EIMGRESER 2. /*Recode of EIMGRESE for trending with data prior to 2010 */ @726 EPTEDUE 2. /*Does your ED have a computerized system for identifying educational resources for patients' specific conditions? */ @728 EPTEDUER 2. /*Recode of EPTEDUE for trending with data prior to 2010 */ @730 ECQME 2. /*Does your ED have a computerized system for reporting clinical quantity measures to federal or state agencies (such as CMS or Med*/ @732 ECQMER 2. /*Recode of ECQME for trending with data prior to 2010 */ @734 EIDPTE 2. /*Does your ED have a computerized system for identifying patients due for preventive or follow-up care in order to send patients r*/ @736 EIDPTER 2. /*Recode of EIDPTE for trending with data prior to 2010 */ @738 EGENLISTE 2. /*Does your ED have a computerized system for generating list of patients with particular health conditions? */ @740 EGENLISTER 2. /*Recode of EGENLISTE for trending with data prior to 2010 */ @742 EIMMREGE 2. /*Does your ED have a computerized system for electronic reporting to immunization registries? */ @744 EIMMREGER 2. /*Recode of EIMMREGE for trending with data prior to 2010 */ @746 ESUME 2. /*Does your ED have a computerized system for providing patients with clinical summaries for each visit? */ @748 ESUMER 2. /*Recode of ESUME for trending with data prior to 2010 */ @750 EMSGE 2. /*Does your ED have a computerized system for exchanging secure messages with patients? */ @752 EMSGER 2. /*Recode of EMSGE for trending with data prior to 2010 */ @754 EPTRECE 2. /*Does your ED have a computerized system for providing patients the ability to view online, download or transmit information from */ @756 EPTRECER 2. /*Recode of EPTRECE for trending with data prior to 2010 */ @758 ESHAREE 2. /*Does your ED share any patient health information electronically (not fax) with other providers, including hospitals, ambulatory */ @760 ESHAREEHRE 2. /*How does your ED electronically share patient health information? - EHR/EMR */ @762 ESHAREWEBE 2. /*How does your ED electronically share patient health information? - Web portal (separate from EHR/EMR) */ @764 ESHAREOTHE 2. /*How does your ED electronically share patient health information? - Other electronic methods */ @766 ESHAREUNKE 2. /*How does your ED electronically share patient health information? - Unknown */ @768 ESHAREREFE 2. /*How does your ED electronically share patient health information? - Refused to answer */ @770 EHRTOEHRE 2. /*Is the patient health information that you share electronically sent directly from your HER system to another HER system? */ @772 ESHAREPROVE1 2. /*With what types of providers do you electronically share patient health information? - Ambulatory providers inside your hospital */ @774 ESHAREPROVE2 2. /*With what types of providers do you electronically share patient health information? - Ambulatory providers outside your hospital*/ @776 ESHAREPROVE3 2. /*With what types of providers do you electronically share patient health information? - Hospitals with which you are affiliated */ @778 ESHAREPROVE4 2. /*With what types of providers do you electronically share patient health information? - Hospitals with which you are not affiliate*/ @780 ESHAREPROVE5 2. /*With what types of providers do you electronically share patient health information? - Behavioral health providers */ @782 ESHAREPROVE6 2. /*With what types of providers do you electronically share patient health information? - Long-term care providers */ @784 ESHAREPROVE7 2. /*With what types of providers do you electronically share patient health information? - Home health providers */ @786 ESHAREPROVEREF 2. /*With what types of providers do you electronically share patient health information? - Refused to answer */ @788 ESHAREPROVEUNK 2. /*With what types of providers do you electronically share patient health information? - Unknown */ @790 EDPRIM 2. /*When patients with identified primary care physicians (PCP) arrive at the ED, how often do you electronically send notifications */ @792 EDINFO 2. /*When patients arrive at the ED, are you able to query for patients' healthcare information electronically from outside sources? */ @794 MUSTAGE1 2. /*Does your hospital have plans to apply for stage 1 Meaningful Use of Health IT incentive payments? */ @796 MUSTAGE2 2. /*Are there plans to apply for Stage 2 incentive payments? */ @798 OBSCLIN 2. /*Does your ED have an observation or clinical decision unit? */ @800 OBSSEP 2. /*Is this observation or clinical decision unit physically separate from the ED? */ @802 OBSPHYSED 2. /*What type of physician makes decisions for patients in this observation unit? - ED physicians */ @804 OBSHOSP 2. /*What type of physician makes decisions for patients in this observation unit? - Hospitalists */ @806 OBSPHYSOT 2. /*What type of physician makes decisions for patients in this observation unit? - Other physicians */ @808 OBSPHYSUN 2. /*What type of physician makes decisions for patients in this observation unit? - Unknown */ @810 BOARD 2. /*Are admitted ED patients ever "boarded" for more than 2 hours in the ED or observation unit while waiting for an inpatient bed? */ @812 BOARDHOS 2. /*If ED is critically overloaded, are admitted ED patients ever "boarded" in inpatient hallways or in another space outside ED? */ @814 AMBDIV 2. /*Did your ED go on ambulance diversion in 2013? */ @816 TOTHRDIVR 2. /*What is the total number of hours that your hospital's ED was on ambulance diversion in 2013? */ @818 REGDIV 2. /*Is ambulance diversion actively managed on a regional level versus each hospital adopting diversion if and when it chooses? */ @820 ADMDIV 2. /*Does your hospital continue to admit elective or scheduled surgery cases when ED is on ambulance diversion? */ @822 INCSHX 2. /*In the last two years, has your ED increased the number of standard treatment spaces? */ @824 INCPHYS 2. /*In the last two years, has your ED's physical space been expanded? */ @826 EXPSPACE 2. /*Do you have plans to expand your your ED's physical space within the next two years? */ @828 BEDREG 2. /*Does your ED use bedside registration? */ @830 KIOSELCHK 2. /*Does ED use kiosk self check-in? */ @832 CATRIAGE 2. /*Does ED use computer-assisted triage? */ @834 IMBED 2. /*Does ED use immediate bedding? */ @836 ADVTRIAG 2. /*Does ED use advanced triage (triage-based care) protocols? */ @838 PHYSPRACTRIA 2. /*Does ED use physician/practitioner at triage? */ @840 FASTTRAK 2. /*Does ED use separate fast track unit for nonurgent care? */ @842 EDPTOR 2. /*Does ED use separate operating room dedicated to ED patients? */ @844 DASHBORD 2. /*Does ED use electronic dashboard? */ @846 RFID 2. /*Does ED use radio frequency identification tracking? */ @848 WIRELESS 2. /*Does ED use wireless devices by providers? */ @850 ZONENURS 2. /*Does ED use zone nursing? */ @852 POOLNURS 2. /*Does ED use pool nursing? */ @854 SURGDAY 2. /*Number of days in a week elective surgeries scheduled */ @856 BEDCZAR 2. /*Does your hospital have a bed coordinator, sometimes known as a bed czar? */ @858 BEDDATA 2. /*How often are hospital bed census data available? */ @860 HLIST 2. /*Does your hospital have hospitalists on staff? */ @862 HLISTED 2. /*Do the hospitalists on staff at your hospital admit patients from your ED? */ @864 EMEDRES 2. /*Does hospital have Emergency Medicine residency program? */ @866 REGION 1. /*Geographic region */ @867 MSA 1. /*Metropolitan statistical area status */ @868 DRUGID1 $CHAR6. /*Drug ID code for medication #1 */ @874 PRESCR1 1. /*Prescription status code for medication #1 */ @875 CONTSUB1 1. /*Controlled substance status code for medication #1 */ @876 COMSTAT1 1. /*Composition status code for medication #1 */ @877 RX1CAT1 $CHAR3. /*For RX1, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @880 RX1CAT2 $CHAR3. /*For RX1, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @883 RX1CAT3 $CHAR3. /*For RX1, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @886 RX1CAT4 $CHAR3. /*For RX1, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @889 RX1V1C1 $CHAR3. /*For RX1, level 1 of MULTUM drug category #1 (broad level) */ @892 RX1V1C2 $CHAR3. /*For RX1, level 1 of MULTUM drug category #2 (broad level) */ @895 RX1V1C3 $CHAR3. /*For RX1, level 1 of MULTUM drug category #3 (broad level) */ @898 RX1V1C4 $CHAR3. /*For RX1, level 1 of MULTUM drug category #4 (broad level) */ @901 RX1V2C1 $CHAR3. /*For RX1, level 2 of MULTUM drug category #1 (intermediate level) */ @904 RX1V2C2 $CHAR3. /*For RX1, level 2 of MULTUM drug category #2 (intermediate level) */ @907 RX1V2C3 $CHAR3. /*For RX1, level 2 of MULTUM drug category #3 (intermediate level) */ @910 RX1V2C4 $CHAR3. /*For RX1, level 2 of MULTUM drug category #4 (intermediate level) */ @913 RX1V3C1 $CHAR3. /*For RX1, level 3 of MULTUM drug category #1 (detailed level) */ @916 RX1V3C2 $CHAR3. /*For RX1, level 3 of MULTUM drug category #2 (detailed level) */ @919 RX1V3C3 $CHAR3. /*For RX1, level 3 of MULTUM drug category #3 (detailed level) */ @922 RX1V3C4 $CHAR3. /*For RX1, level 3 of MULTUM drug category #4 (detailed level) */ @925 DRUGID2 $CHAR6. /*Drug ID code for medication #2 */ @931 PRESCR2 1. /*Prescription status code for medication #2 */ @932 CONTSUB2 1. /*Controlled substance status code for medication #2 */ @933 COMSTAT2 1. /*Composition status code for medication #2 */ @934 RX2CAT1 $CHAR3. /*For RX2, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @937 RX2CAT2 $CHAR3. /*For RX2, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @940 RX2CAT3 $CHAR3. /*For RX2, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @943 RX2CAT4 $CHAR3. /*For RX2, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @946 RX2V1C1 $CHAR3. /*For RX2, level 1 of MULTUM drug category #1 (broad level) */ @949 RX2V1C2 $CHAR3. /*For RX2, level 1 of MULTUM drug category #2 (broad level) */ @952 RX2V1C3 $CHAR3. /*For RX2, level 1 of MULTUM drug category #3 (broad level) */ @955 RX2V1C4 $CHAR3. /*For RX2, level 1 of MULTUM drug category #4 (broad level) */ @958 RX2V2C1 $CHAR3. /*For RX2, level 2 of MULTUM drug category #1 (intermediate level) */ @961 RX2V2C2 $CHAR3. /*For RX2, level 2 of MULTUM drug category #2 (intermediate level) */ @964 RX2V2C3 $CHAR3. /*For RX2, level 2 of MULTUM drug category #3 (intermediate level) */ @967 RX2V2C4 $CHAR3. /*For RX2, level 2 of MULTUM drug category #4 (intermediate level) */ @970 RX2V3C1 $CHAR3. /*For RX2, level 3 of MULTUM drug category #1 (detailed level) */ @973 RX2V3C2 $CHAR3. /*For RX2, level 3 of MULTUM drug category #2 (detailed level) */ @976 RX2V3C3 $CHAR3. /*For RX2, level 3 of MULTUM drug category #3 (detailed level) */ @979 RX2V3C4 $CHAR3. /*For RX2, level 3 of MULTUM drug category #4 (detailed level) */ @982 DRUGID3 $CHAR6. /*Drug ID code for medication #3 */ @988 PRESCR3 1. /*Prescription status code for medication #3 */ @989 CONTSUB3 1. /*Controlled substance status code for medication #3 */ @990 COMSTAT3 1. /*Composition status code for medication #3 */ @991 RX3CAT1 $CHAR3. /*For RX3, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @994 RX3CAT2 $CHAR3. /*For RX3, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @997 RX3CAT3 $CHAR3. /*For RX3, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1000 RX3CAT4 $CHAR3. /*For RX3, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1003 RX3V1C1 $CHAR3. /*For RX3, level 1 of MULTUM drug category #1 (broad level) */ @1006 RX3V1C2 $CHAR3. /*For RX3, level 1 of MULTUM drug category #2 (broad level) */ @1009 RX3V1C3 $CHAR3. /*For RX3, level 1 of MULTUM drug category #3 (broad level) */ @1012 RX3V1C4 $CHAR3. /*For RX3, level 1 of MULTUM drug category #4 (broad level) */ @1015 RX3V2C1 $CHAR3. /*For RX3, level 2 of MULTUM drug category #1 (intermediate level) */ @1018 RX3V2C2 $CHAR3. /*For RX3, level 2 of MULTUM drug category #2 (intermediate level) */ @1021 RX3V2C3 $CHAR3. /*For RX3, level 2 of MULTUM drug category #3 (intermediate level) */ @1024 RX3V2C4 $CHAR3. /*For RX3, level 2 of MULTUM drug category #4 (intermediate level) */ @1027 RX3V3C1 $CHAR3. /*For RX3, level 3 of MULTUM drug category #1 (detailed level) */ @1030 RX3V3C2 $CHAR3. /*For RX3, level 3 of MULTUM drug category #2 (detailed level) */ @1033 RX3V3C3 $CHAR3. /*For RX3, level 3 of MULTUM drug category #3 (detailed level) */ @1036 RX3V3C4 $CHAR3. /*For RX3, level 3 of MULTUM drug category #4 (detailed level) */ @1039 DRUGID4 $CHAR6. /*Drug ID code for medication #4 */ @1045 PRESCR4 1. /*Prescription status code for medication #4 */ @1046 CONTSUB4 1. /*Controlled substance status code for medication #4 */ @1047 COMSTAT4 1. /*Composition status code for medication #4 */ @1048 RX4CAT1 $CHAR3. /*For RX4, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1051 RX4CAT2 $CHAR3. /*For RX4, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1054 RX4CAT3 $CHAR3. /*For RX4, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1057 RX4CAT4 $CHAR3. /*For RX4, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1060 RX4V1C1 $CHAR3. /*For RX4, level 1 of MULTUM drug category #1 (broad level) */ @1063 RX4V1C2 $CHAR3. /*For RX4, level 1 of MULTUM drug category #2 (broad level) */ @1066 RX4V1C3 $CHAR3. /*For RX4, level 1 of MULTUM drug category #3 (broad level) */ @1069 RX4V1C4 $CHAR3. /*For RX4, level 1 of MULTUM drug category #4 (broad level) */ @1072 RX4V2C1 $CHAR3. /*For RX4, level 2 of MULTUM drug category #1 (intermediate level) */ @1075 RX4V2C2 $CHAR3. /*For RX4, level 2 of MULTUM drug category #2 (intermediate level) */ @1078 RX4V2C3 $CHAR3. /*For RX4, level 2 of MULTUM drug category #3 (intermediate level) */ @1081 RX4V2C4 $CHAR3. /*For RX4, level 2 of MULTUM drug category #4 (intermediate level) */ @1084 RX4V3C1 $CHAR3. /*For RX4, level 3 of MULTUM drug category #1 (detailed level) */ @1087 RX4V3C2 $CHAR3. /*For RX4, level 3 of MULTUM drug category #2 (detailed level) */ @1090 RX4V3C3 $CHAR3. /*For RX4, level 3 of MULTUM drug category #3 (detailed level) */ @1093 RX4V3C4 $CHAR3. /*For RX4, level 3 of MULTUM drug category #4 (detailed level) */ @1096 DRUGID5 $CHAR6. /*Drug ID code for medication #5 */ @1102 PRESCR5 1. /*Prescription status code medication #5 */ @1103 CONTSUB5 1. /*Controlled substance status code medication #5 */ @1104 COMSTAT5 1. /*Composition status code medication #5 */ @1105 RX5CAT1 $CHAR3. /*For RX5, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1108 RX5CAT2 $CHAR3. /*For RX5, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1111 RX5CAT3 $CHAR3. /*For RX5, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1114 RX5CAT4 $CHAR3. /*For RX5, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1117 RX5V1C1 $CHAR3. /*For RX5, level 1 of MULTUM drug category #1 (broad level) */ @1120 RX5V1C2 $CHAR3. /*For RX5, level 1 of MULTUM drug category #2 (broad level) */ @1123 RX5V1C3 $CHAR3. /*For RX5, level 1 of MULTUM drug category #3 (broad level) */ @1126 RX5V1C4 $CHAR3. /*For RX5, level 1 of MULTUM drug category #4 (broad level) */ @1129 RX5V2C1 $CHAR3. /*For RX5, level 2 of MULTUM drug category #1 (intermediate level) */ @1132 RX5V2C2 $CHAR3. /*For RX5, level 2 of MULTUM drug category #2 (intermediate level) */ @1135 RX5V2C3 $CHAR3. /*For RX5, level 2 of MULTUM drug category #3 (intermediate level) */ @1138 RX5V2C4 $CHAR3. /*For RX5, level 2 of MULTUM drug category #4 (intermediate level) */ @1141 RX5V3C1 $CHAR3. /*For RX5, level 3 of MULTUM drug category #1 (detailed level) */ @1144 RX5V3C2 $CHAR3. /*For RX5, level 3 of MULTUM drug category #2 (detailed level) */ @1147 RX5V3C3 $CHAR3. /*For RX5, level 3 of MULTUM drug category #3 (detailed level) */ @1150 RX5V3C4 $CHAR3. /*For RX5, level 3 of MULTUM drug category #4 (detailed level) */ @1153 DRUGID6 $CHAR6. /*Drug ID code for medication #6 */ @1159 PRESCR6 1. /*Prescription status code for medication #6 */ @1160 CONTSUB6 1. /*Controlled substance status code for medication #6 */ @1161 COMSTAT6 1. /*Composition status code for medication #6 */ @1162 RX6CAT1 $CHAR3. /*For RX6, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1165 RX6CAT2 $CHAR3. /*For RX6, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1168 RX6CAT3 $CHAR3. /*For RX6, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1171 RX6CAT4 $CHAR3. /*For RX6, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1174 RX6V1C1 $CHAR3. /*For RX6, level 1 of MULTUM drug category #1 (broad level) */ @1177 RX6V1C2 $CHAR3. /*For RX6, level 1 of MULTUM drug category #2 (broad level) */ @1180 RX6V1C3 $CHAR3. /*For RX6, level 1 of MULTUM drug category #3 (broad level) */ @1183 RX6V1C4 $CHAR3. /*For RX6, level 1 of MULTUM drug category #4 (broad level) */ @1186 RX6V2C1 $CHAR3. /*For RX6, level 2 of MULTUM drug category #1 (intermediate level) */ @1189 RX6V2C2 $CHAR3. /*For RX6, level 2 of MULTUM drug category #2 (intermediate level) */ @1192 RX6V2C3 $CHAR3. /*For RX6, level 2 of MULTUM drug category #3 (intermediate level) */ @1195 RX6V2C4 $CHAR3. /*For RX6, level 2 of MULTUM drug category #4 (intermediate level) */ @1198 RX6V3C1 $CHAR3. /*For RX6, level 3 of MULTUM drug category #1 (detailed level) */ @1201 RX6V3C2 $CHAR3. /*For RX6, level 3 of MULTUM drug category #2 (detailed level) */ @1204 RX6V3C3 $CHAR3. /*For RX6, level 3 of MULTUM drug category #3 (detailed level) */ @1207 RX6V3C4 $CHAR3. /*For RX6, level 3 of MULTUM drug category #4 (detailed level) */ @1210 DRUGID7 $CHAR6. /*Drug ID code for medication #7 */ @1216 PRESCR7 1. /*Prescription status code for medication #7 */ @1217 CONTSUB7 1. /*Controlled substance status code for medication #7 */ @1218 COMSTAT7 1. /*Composition status code for medication #7 */ @1219 RX7CAT1 $CHAR3. /*For RX7, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1222 RX7CAT2 $CHAR3. /*For RX7, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1225 RX7CAT3 $CHAR3. /*For RX7, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1228 RX7CAT4 $CHAR3. /*For RX7, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1231 RX7V1C1 $CHAR3. /*For RX7, level 1 of MULTUM drug category #1 (broad level) */ @1234 RX7V1C2 $CHAR3. /*For RX7, level 1 of MULTUM drug category #2 (broad level) */ @1237 RX7V1C3 $CHAR3. /*For RX7, level 1 of MULTUM drug category #3 (broad level) */ @1240 RX7V1C4 $CHAR3. /*For RX7, level 1 of MULTUM drug category #4 (broad level) */ @1243 RX7V2C1 $CHAR3. /*For RX7, level 2 of MULTUM drug category #1 (intermediate level) */ @1246 RX7V2C2 $CHAR3. /*For RX7, level 2 of MULTUM drug category #2 (intermediate level) */ @1249 RX7V2C3 $CHAR3. /*For RX7, level 2 of MULTUM drug category #3 (intermediate level) */ @1252 RX7V2C4 $CHAR3. /*For RX7, level 2 of MULTUM drug category #4 (intermediate level) */ @1255 RX7V3C1 $CHAR3. /*For RX7, level 3 of MULTUM drug category #1 (detailed level) */ @1258 RX7V3C2 $CHAR3. /*For RX7, level 3 of MULTUM drug category #2 (detailed level) */ @1261 RX7V3C3 $CHAR3. /*For RX7, level 3 of MULTUM drug category #3 (detailed level) */ @1264 RX7V3C4 $CHAR3. /*For RX7, level 3 of MULTUM drug category #4 (detailed level) */ @1267 DRUGID8 $CHAR6. /*Drug ID code for medication #8 */ @1273 PRESCR8 1. /*Prescription status code for medication #8 */ @1274 CONTSUB8 1. /*Controlled substance status code for medication #8 */ @1275 COMSTAT8 1. /*Composition status code for medication #8 */ @1276 RX8CAT1 $CHAR3. /*For RX8, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1279 RX8CAT2 $CHAR3. /*For RX8, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1282 RX8CAT3 $CHAR3. /*For RX8, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1285 RX8CAT4 $CHAR3. /*For RX8, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1288 RX8V1C1 $CHAR3. /*For RX8, level 1 of MULTUM drug category #1 (broad level) */ @1291 RX8V1C2 $CHAR3. /*For RX8, level 1 of MULTUM drug category #2 (broad level) */ @1294 RX8V1C3 $CHAR3. /*For RX8, level 1 of MULTUM drug category #3 (broad level) */ @1297 RX8V1C4 $CHAR3. /*For RX8, level 1 of MULTUM drug category #4 (broad level) */ @1300 RX8V2C1 $CHAR3. /*For RX8, level 2 of MULTUM drug category #1 (intermediate level) */ @1303 RX8V2C2 $CHAR3. /*For RX8, level 2 of MULTUM drug category #2 (intermediate level) */ @1306 RX8V2C3 $CHAR3. /*For RX8, level 2 of MULTUM drug category #3 (intermediate level) */ @1309 RX8V2C4 $CHAR3. /*For RX8, level 2 of MULTUM drug category #4 (intermediate level) */ @1312 RX8V3C1 $CHAR3. /*For RX8, level 3 of MULTUM drug category #1 (detailed level) */ @1315 RX8V3C2 $CHAR3. /*For RX8, level 3 of MULTUM drug category #2 (detailed level) */ @1318 RX8V3C3 $CHAR3. /*For RX8, level 3 of MULTUM drug category #3 (detailed level) */ @1321 RX8V3C4 $CHAR3. /*For RX8, level 3 of MULTUM drug category #4 (detailed level) */ @1324 DRUGID9 $CHAR6. /*Drug ID code for medication #9 */ @1330 PRESCR9 1. /*Prescription status code for medication #9 */ @1331 CONTSUB9 1. /*Controlled substance status code for medication #9 */ @1332 COMSTAT9 1. /*Composition status code for medication #9 */ @1333 RX9CAT1 $CHAR3. /*For RX9, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1336 RX9CAT2 $CHAR3. /*For RX9, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1339 RX9CAT3 $CHAR3. /*For RX9, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1342 RX9CAT4 $CHAR3. /*For RX9, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1345 RX9V1C1 $CHAR3. /*For RX9, level 1 of MULTUM drug category #1 (broad level) */ @1348 RX9V1C2 $CHAR3. /*For RX9, level 1 of MULTUM drug category #2 (broad level) */ @1351 RX9V1C3 $CHAR3. /*For RX9, level 1 of MULTUM drug category #3 (broad level) */ @1354 RX9V1C4 $CHAR3. /*For RX9, level 1 of MULTUM drug category #4 (broad level) */ @1357 RX9V2C1 $CHAR3. /*For RX9, level 2 of MULTUM drug category #1 (intermediate level) */ @1360 RX9V2C2 $CHAR3. /*For RX9, level 2 of MULTUM drug category #2 (intermediate level) */ @1363 RX9V2C3 $CHAR3. /*For RX9, level 2 of MULTUM drug category #3 (intermediate level) */ @1366 RX9V2C4 $CHAR3. /*For RX9, level 2 of MULTUM drug category #4 (intermediate level) */ @1369 RX9V3C1 $CHAR3. /*For RX9, level 3 of MULTUM drug category #1 (detailed level) */ @1372 RX9V3C2 $CHAR3. /*For RX9, level 3 of MULTUM drug category #2 (detailed level) */ @1375 RX9V3C3 $CHAR3. /*For RX9, level 3 of MULTUM drug category #3 (detailed level) */ @1378 RX9V3C4 $CHAR3. /*For RX9, level 3 of MULTUM drug category #4 (detailed level) */ @1381 DRUGID10 $CHAR6. /*Drug ID code for medication #10 */ @1387 PRESCR10 1. /*Prescription status code for medication #10 */ @1388 CONTSUB10 1. /*Controlled substance status code for medication #10 */ @1389 COMSTAT10 1. /*Composition status code for medication #10 */ @1390 RX10CAT1 $CHAR3. /*For RX10, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1393 RX10CAT2 $CHAR3. /*For RX10, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1396 RX10CAT3 $CHAR3. /*For RX10, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1399 RX10CAT4 $CHAR3. /*For RX10, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1402 RX10V1C1 $CHAR3. /*For RX10, level 1 of MULTUM drug category #1 (broad level) */ @1405 RX10V1C2 $CHAR3. /*For RX10, level 1 of MULTUM drug category #2 (broad level) */ @1408 RX10V1C3 $CHAR3. /*For RX10, level 1 of MULTUM drug category #3 (broad level) */ @1411 RX10V1C4 $CHAR3. /*For RX10, level 1 of MULTUM drug category #4 (broad level) */ @1414 RX10V2C1 $CHAR3. /*For RX10, level 2 of MULTUM drug category #1 (intermediate level) */ @1417 RX10V2C2 $CHAR3. /*For RX10, level 2 of MULTUM drug category #2 (intermediate level) */ @1420 RX10V2C3 $CHAR3. /*For RX10, level 2 of MULTUM drug category #3 (intermediate level) */ @1423 RX10V2C4 $CHAR3. /*For RX10, level 2 of MULTUM drug category #4 (intermediate level) */ @1426 RX10V3C1 $CHAR3. /*For RX10, level 3 of MULTUM drug category #1 (detailed level) */ @1429 RX10V3C2 $CHAR3. /*For RX10, level 3 of MULTUM drug category #2 (detailed level) */ @1432 RX10V3C3 $CHAR3. /*For RX10, level 3 of MULTUM drug category #3 (detailed level) */ @1435 RX10V3C4 $CHAR3. /*For RX10, level 3 of MULTUM drug category #4 (detailed level) */ @1438 DRUGID11 $CHAR6. /*Drug ID code for medication #11 */ @1444 PRESCR11 1. /*Prescription status code for medication #11 */ @1445 CONTSUB11 1. /*Controlled substance status code for medication #11 */ @1446 COMSTAT11 1. /*Composition status code for medication #11 */ @1447 RX11CAT1 $CHAR3. /*For RX11, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1450 RX11CAT2 $CHAR3. /*For RX11, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1453 RX11CAT3 $CHAR3. /*For RX11, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1456 RX11CAT4 $CHAR3. /*For RX11, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1459 RX11V1C1 $CHAR3. /*For RX11, level 1 of MULTUM drug category #1 (broad level) */ @1462 RX11V1C2 $CHAR3. /*For RX11, level 1 of MULTUM drug category #2 (broad level) */ @1465 RX11V1C3 $CHAR3. /*For RX11, level 1 of MULTUM drug category #3 (broad level) */ @1468 RX11V1C4 $CHAR3. /*For RX11, level 1 of MULTUM drug category #4 (broad level) */ @1471 RX11V2C1 $CHAR3. /*For RX11, level 2 of MULTUM drug category #1 (intermediate level) */ @1474 RX11V2C2 $CHAR3. /*For RX11, level 2 of MULTUM drug category #2 (intermediate level) */ @1477 RX11V2C3 $CHAR3. /*For RX11, level 2 of MULTUM drug category #3 (intermediate level) */ @1480 RX11V2C4 $CHAR3. /*For RX11, level 2 of MULTUM drug category #4 (intermediate level) */ @1483 RX11V3C1 $CHAR3. /*For RX11, level 3 of MULTUM drug category #1 (detailed level) */ @1486 RX11V3C2 $CHAR3. /*For RX11, level 3 of MULTUM drug category #2 (detailed level) */ @1489 RX11V3C3 $CHAR3. /*For RX11, level 3 of MULTUM drug category #3 (detailed level) */ @1492 RX11V3C4 $CHAR3. /*For RX11, level 3 of MULTUM drug category #4 (detailed level) */ @1495 DRUGID12 $CHAR6. /*Drug ID code for medication #12 */ @1501 PRESCR12 1. /*Prescription status code for medication #12 */ @1502 CONTSUB12 1. /*Controlled substance status code for medication #12 */ @1503 COMSTAT12 1. /*Composition status code for medication #12 */ @1504 RX12CAT1 $CHAR3. /*For RX12, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1507 RX12CAT2 $CHAR3. /*For RX12, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1510 RX12CAT3 $CHAR3. /*For RX12, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1513 RX12CAT4 $CHAR3. /*For RX12, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1516 RX12V1C1 $CHAR3. /*For RX12, level 1 of MULTUM drug category #1 (broad level) */ @1519 RX12V1C2 $CHAR3. /*For RX12, level 1 of MULTUM drug category #2 (broad level) */ @1522 RX12V1C3 $CHAR3. /*For RX12, level 1 of MULTUM drug category #3 (broad level) */ @1525 RX12V1C4 $CHAR3. /*For RX12, level 1 of MULTUM drug category #4 (broad level) */ @1528 RX12V2C1 $CHAR3. /*For RX12, level 2 of MULTUM drug category #1 (intermediate level) */ @1531 RX12V2C2 $CHAR3. /*For RX12, level 2 of MULTUM drug category #2 (intermediate level) */ @1534 RX12V2C3 $CHAR3. /*For RX12, level 2 of MULTUM drug category #3 (intermediate level) */ @1537 RX12V2C4 $CHAR3. /*For RX12, level 2 of MULTUM drug category #4 (intermediate level) */ @1540 RX12V3C1 $CHAR3. /*For RX12, level 3 of MULTUM drug category #1 (detailed level) */ @1543 RX12V3C2 $CHAR3. /*For RX12, level 3 of MULTUM drug category #2 (detailed level) */ @1546 RX12V3C3 $CHAR3. /*For RX12, level 3 of MULTUM drug category #3 (detailed level) */ @1549 RX12V3C4 $CHAR3. /*For RX12, level 3 of MULTUM drug category #4 (detailed level) */ @1552 DRUGID13 $CHAR6. /*Drug ID code for medication #13 */ @1558 PRESCR13 1. /*Prescription status code for medication #13 */ @1559 CONTSUB13 1. /*Controlled substance status code for medication #13 */ @1560 COMSTAT13 1. /*Composition status code for medication #13 */ @1561 RX13CAT1 $CHAR3. /*For RX13, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1564 RX13CAT2 $CHAR3. /*For RX13, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1567 RX13CAT3 $CHAR3. /*For RX13, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1570 RX13CAT4 $CHAR3. /*For RX13, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1573 RX13V1C1 $CHAR3. /*For RX13, level 1 of MULTUM drug category #1 (broad level) */ @1576 RX13V1C2 $CHAR3. /*For RX13, level 1 of MULTUM drug category #2 (broad level) */ @1579 RX13V1C3 $CHAR3. /*For RX13, level 1 of MULTUM drug category #3 (broad level) */ @1582 RX13V1C4 $CHAR3. /*For RX13, level 1 of MULTUM drug category #4 (broad level) */ @1585 RX13V2C1 $CHAR3. /*For RX13, level 2 of MULTUM drug category #1 (intermediate level) */ @1588 RX13V2C2 $CHAR3. /*For RX13, level 2 of MULTUM drug category #2 (intermediate level) */ @1591 RX13V2C3 $CHAR3. /*For RX13, level 2 of MULTUM drug category #3 (intermediate level) */ @1594 RX13V2C4 $CHAR3. /*For RX13, level 2 of MULTUM drug category #4 (intermediate level) */ @1597 RX13V3C1 $CHAR3. /*For RX13, level 3 of MULTUM drug category #1 (detailed level) */ @1600 RX13V3C2 $CHAR3. /*For RX13, level 3 of MULTUM drug category #2 (detailed level) */ @1603 RX13V3C3 $CHAR3. /*For RX13, level 3 of MULTUM drug category #3 (detailed level) */ @1606 RX13V3C4 $CHAR3. /*For RX13, level 3 of MULTUM drug category #4 (detailed level) */ @1609 DRUGID14 $CHAR6. /*Drug ID code for medication #14 */ @1615 PRESCR14 1. /*Prescription status code for medication #14 */ @1616 CONTSUB14 1. /*Controlled substance status code for medication #14 */ @1617 COMSTAT14 1. /*Composition status code for medication #14 */ @1618 RX14CAT1 $CHAR3. /*For RX14, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1621 RX14CAT2 $CHAR3. /*For RX14, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1624 RX14CAT3 $CHAR3. /*For RX14, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1627 RX14CAT4 $CHAR3. /*For RX14, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1630 RX14V1C1 $CHAR3. /*For RX14, level 1 of MULTUM drug category #1 (broad level) */ @1633 RX14V1C2 $CHAR3. /*For RX14, level 1 of MULTUM drug category #2 (broad level) */ @1636 RX14V1C3 $CHAR3. /*For RX14, level 1 of MULTUM drug category #3 (broad level) */ @1639 RX14V1C4 $CHAR3. /*For RX14, level 1 of MULTUM drug category #4 (broad level) */ @1642 RX14V2C1 $CHAR3. /*For RX14, level 2 of MULTUM drug category #1 (intermediate level) */ @1645 RX14V2C2 $CHAR3. /*For RX14, level 2 of MULTUM drug category #2 (intermediate level) */ @1648 RX14V2C3 $CHAR3. /*For RX14, level 2 of MULTUM drug category #3 (intermediate level) */ @1651 RX14V2C4 $CHAR3. /*For RX14, level 2 of MULTUM drug category #4 (intermediate level) */ @1654 RX14V3C1 $CHAR3. /*For RX14, level 3 of MULTUM drug category #1 (detailed level) */ @1657 RX14V3C2 $CHAR3. /*For RX14, level 3 of MULTUM drug category #2 (detailed level) */ @1660 RX14V3C3 $CHAR3. /*For RX14, level 3 of MULTUM drug category #3 (detailed level) */ @1663 RX14V3C4 $CHAR3. /*For RX14, level 3 of MULTUM drug category #4 (detailed level) */ @1666 DRUGID15 $CHAR6. /*Drug ID code for medication #15 */ @1672 PRESCR15 1. /*Prescription status code for medication #15 */ @1673 CONTSUB15 1. /*Controlled substance status code for medication #15 */ @1674 COMSTAT15 1. /*Composition status code for medication #15 */ @1675 RX15CAT1 $CHAR3. /*For RX15, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1678 RX15CAT2 $CHAR3. /*For RX15, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1681 RX15CAT3 $CHAR3. /*For RX15, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1684 RX15CAT4 $CHAR3. /*For RX15, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1687 RX15V1C1 $CHAR3. /*For RX15, level 1 of MULTUM drug category #1 (broad level) */ @1690 RX15V1C2 $CHAR3. /*For RX15, level 1 of MULTUM drug category #2 (broad level) */ @1693 RX15V1C3 $CHAR3. /*For RX15, level 1 of MULTUM drug category #3 (broad level) */ @1696 RX15V1C4 $CHAR3. /*For RX15, level 1 of MULTUM drug category #4 (broad level) */ @1699 RX15V2C1 $CHAR3. /*For RX15, level 2 of MULTUM drug category #1 (intermediate level) */ @1702 RX15V2C2 $CHAR3. /*For RX15, level 2 of MULTUM drug category #2 (intermediate level) */ @1705 RX15V2C3 $CHAR3. /*For RX15, level 2 of MULTUM drug category #3 (intermediate level) */ @1708 RX15V2C4 $CHAR3. /*For RX15, level 2 of MULTUM drug category #4 (intermediate level) */ @1711 RX15V3C1 $CHAR3. /*For RX15, level 3 of MULTUM drug category #1 (detailed level) */ @1714 RX15V3C2 $CHAR3. /*For RX15, level 3 of MULTUM drug category #2 (detailed level) */ @1717 RX15V3C3 $CHAR3. /*For RX15, level 3 of MULTUM drug category #3 (detailed level) */ @1720 RX15V3C4 $CHAR3. /*For RX15, level 3 of MULTUM drug category #4 (detailed level) */ @1723 DRUGID16 $CHAR6. /*Drug ID code for medication #16 */ @1729 PRESCR16 1. /*Prescription status code for medication #16 */ @1730 CONTSUB16 1. /*Controlled substance status code for medication #16 */ @1731 COMSTAT16 1. /*Composition status code for medication #16 */ @1732 RX16CAT1 $CHAR3. /*For RX16, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1735 RX16CAT2 $CHAR3. /*For RX16, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1738 RX16CAT3 $CHAR3. /*For RX16, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1741 RX16CAT4 $CHAR3. /*For RX16, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1744 RX16V1C1 $CHAR3. /*For RX16, level 1 of MULTUM drug category #1 (broad level) */ @1747 RX16V1C2 $CHAR3. /*For RX16, level 1 of MULTUM drug category #2 (broad level) */ @1750 RX16V1C3 $CHAR3. /*For RX16, level 1 of MULTUM drug category #3 (broad level) */ @1753 RX16V1C4 $CHAR3. /*For RX16, level 1 of MULTUM drug category #4 (broad level) */ @1756 RX16V2C1 $CHAR3. /*For RX16, level 2 of MULTUM drug category #1 (intermediate level) */ @1759 RX16V2C2 $CHAR3. /*For RX16, level 2 of MULTUM drug category #2 (intermediate level) */ @1762 RX16V2C3 $CHAR3. /*For RX16, level 2 of MULTUM drug category #3 (intermediate level) */ @1765 RX16V2C4 $CHAR3. /*For RX16, level 2 of MULTUM drug category #4 (intermediate level) */ @1768 RX16V3C1 $CHAR3. /*For RX16, level 3 of MULTUM drug category #1 (detailed level) */ @1771 RX16V3C2 $CHAR3. /*For RX16, level 3 of MULTUM drug category #2 (detailed level) */ @1774 RX16V3C3 $CHAR3. /*For RX16, level 3 of MULTUM drug category #3 (detailed level) */ @1777 RX16V3C4 $CHAR3. /*For RX16, level 3 of MULTUM drug category #4 (detailed level) */ @1780 DRUGID17 $CHAR6. /*Drug ID code for medication #17 */ @1786 PRESCR17 1. /*Prescription status code for medication #17 */ @1787 CONTSUB17 1. /*Controlled substance status code for medication #17 */ @1788 COMSTAT17 1. /*Composition status code for medication #17 */ @1789 RX17CAT1 $CHAR3. /*For RX17, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1792 RX17CAT2 $CHAR3. /*For RX17, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1795 RX17CAT3 $CHAR3. /*For RX17, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1798 RX17CAT4 $CHAR3. /*For RX17, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1801 RX17V1C1 $CHAR3. /*For RX17, level 1 of MULTUM drug category #1 (broad level) */ @1804 RX17V1C2 $CHAR3. /*For RX17, level 1 of MULTUM drug category #2 (broad level) */ @1807 RX17V1C3 $CHAR3. /*For RX17, level 1 of MULTUM drug category #3 (broad level) */ @1810 RX17V1C4 $CHAR3. /*For RX17, level 1 of MULTUM drug category #4 (broad level) */ @1813 RX17V2C1 $CHAR3. /*For RX17, level 2 of MULTUM drug category #1 (intermediate level) */ @1816 RX17V2C2 $CHAR3. /*For RX17, level 2 of MULTUM drug category #2 (intermediate level) */ @1819 RX17V2C3 $CHAR3. /*For RX17, level 2 of MULTUM drug category #3 (intermediate level) */ @1822 RX17V2C4 $CHAR3. /*For RX17, level 2 of MULTUM drug category #4 (intermediate level) */ @1825 RX17V3C1 $CHAR3. /*For RX17, level 3 of MULTUM drug category #1 (detailed level) */ @1828 RX17V3C2 $CHAR3. /*For RX17, level 3 of MULTUM drug category #2 (detailed level) */ @1831 RX17V3C3 $CHAR3. /*For RX17, level 3 of MULTUM drug category #3 (detailed level) */ @1834 RX17V3C4 $CHAR3. /*For RX17, level 3 of MULTUM drug category #4 (detailed level) */ @1837 DRUGID18 $CHAR6. /*Drug ID code for medication #18 */ @1843 PRESCR18 1. /*Prescription status code for medication #18 */ @1844 CONTSUB18 1. /*Controlled substance status code for medication #18 */ @1845 COMSTAT18 1. /*Composition status code for medication #18 */ @1846 RX18CAT1 $CHAR3. /*For RX18, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1849 RX18CAT2 $CHAR3. /*For RX18, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1852 RX18CAT3 $CHAR3. /*For RX18, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1855 RX18CAT4 $CHAR3. /*For RX18, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1858 RX18V1C1 $CHAR3. /*For RX18, level 1 of MULTUM drug category #1 (broad level) */ @1861 RX18V1C2 $CHAR3. /*For RX18, level 1 of MULTUM drug category #2 (broad level) */ @1864 RX18V1C3 $CHAR3. /*For RX18, level 1 of MULTUM drug category #3 (broad level) */ @1867 RX18V1C4 $CHAR3. /*For RX18, level 1 of MULTUM drug category #4 (broad level) */ @1870 RX18V2C1 $CHAR3. /*For RX18, level 2 of MULTUM drug category #1 (intermediate level) */ @1873 RX18V2C2 $CHAR3. /*For RX18, level 2 of MULTUM drug category #2 (intermediate level) */ @1876 RX18V2C3 $CHAR3. /*For RX18, level 2 of MULTUM drug category #3 (intermediate level) */ @1879 RX18V2C4 $CHAR3. /*For RX18, level 2 of MULTUM drug category #4 (intermediate level) */ @1882 RX18V3C1 $CHAR3. /*For RX18, level 3 of MULTUM drug category #1 (detailed level) */ @1885 RX18V3C2 $CHAR3. /*For RX18, level 3 of MULTUM drug category #2 (detailed level) */ @1888 RX18V3C3 $CHAR3. /*For RX18, level 3 of MULTUM drug category #3 (detailed level) */ @1891 RX18V3C4 $CHAR3. /*For RX18, level 3 of MULTUM drug category #4 (detailed level) */ @1894 DRUGID19 $CHAR6. /*Drug ID code for medication #19 */ @1900 PRESCR19 1. /*Prescription status code for medication #19 */ @1901 CONTSUB19 1. /*Controlled substance status code for medication #19 */ @1902 COMSTAT19 1. /*Composition status code for medication #19 */ @1903 RX19CAT1 $CHAR3. /*For RX19, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1906 RX19CAT2 $CHAR3. /*For RX19, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1909 RX19CAT3 $CHAR3. /*For RX19, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1912 RX19CAT4 $CHAR3. /*For RX19, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1915 RX19V1C1 $CHAR3. /*For RX19, level 1 of MULTUM drug category #1 (broad level) */ @1918 RX19V1C2 $CHAR3. /*For RX19, level 1 of MULTUM drug category #2 (broad level) */ @1921 RX19V1C3 $CHAR3. /*For RX19, level 1 of MULTUM drug category #3 (broad level) */ @1924 RX19V1C4 $CHAR3. /*For RX19, level 1 of MULTUM drug category #4 (broad level) */ @1927 RX19V2C1 $CHAR3. /*For RX19, level 2 of MULTUM drug category #1 (intermediate level) */ @1930 RX19V2C2 $CHAR3. /*For RX19, level 2 of MULTUM drug category #2 (intermediate level) */ @1933 RX19V2C3 $CHAR3. /*For RX19, level 2 of MULTUM drug category #3 (intermediate level) */ @1936 RX19V2C4 $CHAR3. /*For RX19, level 2 of MULTUM drug category #4 (intermediate level) */ @1939 RX19V3C1 $CHAR3. /*For RX19, level 3 of MULTUM drug category #1 (detailed level) */ @1942 RX19V3C2 $CHAR3. /*For RX19, level 3 of MULTUM drug category #2 (detailed level) */ @1945 RX19V3C3 $CHAR3. /*For RX19, level 3 of MULTUM drug category #3 (detailed level) */ @1948 RX19V3C4 $CHAR3. /*For RX19, level 3 of MULTUM drug category #4 (detailed level) */ @1951 DRUGID20 $CHAR6. /*Drug ID code for medication #20 */ @1957 PRESCR20 1. /*Prescription status code for medication #20 */ @1958 CONTSUB20 1. /*Controlled substance status code for medication #20 */ @1959 COMSTAT20 1. /*Composition status code for medication #20 */ @1960 RX20CAT1 $CHAR3. /*For RX20, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1963 RX20CAT2 $CHAR3. /*For RX20, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1966 RX20CAT3 $CHAR3. /*For RX20, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1969 RX20CAT4 $CHAR3. /*For RX20, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1972 RX20V1C1 $CHAR3. /*For RX20, level 1 of MULTUM drug category #1 (broad level) */ @1975 RX20V1C2 $CHAR3. /*For RX20, level 1 of MULTUM drug category #2 (broad level) */ @1978 RX20V1C3 $CHAR3. /*For RX20, level 1 of MULTUM drug category #3 (broad level) */ @1981 RX20V1C4 $CHAR3. /*For RX20, level 1 of MULTUM drug category #4 (broad level) */ @1984 RX20V2C1 $CHAR3. /*For RX20, level 2 of MULTUM drug category #1 (intermediate level) */ @1987 RX20V2C2 $CHAR3. /*For RX20, level 2 of MULTUM drug category #2 (intermediate level) */ @1990 RX20V2C3 $CHAR3. /*For RX20, level 2 of MULTUM drug category #3 (intermediate level) */ @1993 RX20V2C4 $CHAR3. /*For RX20, level 2 of MULTUM drug category #4 (intermediate level) */ @1996 RX20V3C1 $CHAR3. /*For RX20, level 3 of MULTUM drug category #1 (detailed level) */ @1999 RX20V3C2 $CHAR3. /*For RX20, level 3 of MULTUM drug category #2 (detailed level) */ @2002 RX20V3C3 $CHAR3. /*For RX20, level 3 of MULTUM drug category #3 (detailed level) */ @2005 RX20V3C4 $CHAR3. /*For RX20, level 3 of MULTUM drug category #4 (detailed level) */ @2008 DRUGID21 $CHAR6. /*Drug ID code for medication #21 */ @2014 PRESCR21 1. /*Prescription status code for medication #21 */ @2015 CONTSUB21 1. /*Controlled substance status code for medication #21 */ @2016 COMSTAT21 1. /*Composition status code for medication #21 */ @2017 RX21CAT1 $CHAR3. /*For RX21, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2020 RX21CAT2 $CHAR3. /*For RX21, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2023 RX21CAT3 $CHAR3. /*For RX21, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2026 RX21CAT4 $CHAR3. /*For RX21, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2029 RX21V1C1 $CHAR3. /*For RX21, level 1 of MULTUM drug category #1 (broad level) */ @2032 RX21V1C2 $CHAR3. /*For RX21, level 1 of MULTUM drug category #2 (broad level) */ @2035 RX21V1C3 $CHAR3. /*For RX21, level 1 of MULTUM drug category #3 (broad level) */ @2038 RX21V1C4 $CHAR3. /*For RX21, level 1 of MULTUM drug category #4 (broad level) */ @2041 RX21V2C1 $CHAR3. /*For RX21, level 2 of MULTUM drug category #1 (intermediate level) */ @2044 RX21V2C2 $CHAR3. /*For RX21, level 2 of MULTUM drug category #2 (intermediate level) */ @2047 RX21V2C3 $CHAR3. /*For RX21, level 2 of MULTUM drug category #3 (intermediate level) */ @2050 RX21V2C4 $CHAR3. /*For RX21, level 2 of MULTUM drug category #4 (intermediate level) */ @2053 RX21V3C1 $CHAR3. /*For RX21, level 3 of MULTUM drug category #1 (detailed level) */ @2056 RX21V3C2 $CHAR3. /*For RX21, level 3 of MULTUM drug category #2 (detailed level) */ @2059 RX21V3C3 $CHAR3. /*For RX21, level 3 of MULTUM drug category #3 (detailed level) */ @2062 RX21V3C4 $CHAR3. /*For RX21, level 3 of MULTUM drug category #4 (detailed level) */ @2065 DRUGID22 $CHAR6. /*Drug ID code for medication #22 */ @2071 PRESCR22 1. /*Prescription status code for medication #22 */ @2072 CONTSUB22 1. /*Controlled substance status code for medication #22 */ @2073 COMSTAT22 1. /*Composition status code for medication #22 */ @2074 RX22CAT1 $CHAR3. /*For RX22, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2077 RX22CAT2 $CHAR3. /*For RX22, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2080 RX22CAT3 $CHAR3. /*For RX22, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2083 RX22CAT4 $CHAR3. /*For RX22, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2086 RX22V1C1 $CHAR3. /*For RX22, level 1 of MULTUM drug category #1 (broad level) */ @2089 RX22V1C2 $CHAR3. /*For RX22, level 1 of MULTUM drug category #2 (broad level) */ @2092 RX22V1C3 $CHAR3. /*For RX22, level 1 of MULTUM drug category #3 (broad level) */ @2095 RX22V1C4 $CHAR3. /*For RX22, level 1 of MULTUM drug category #4 (broad level) */ @2098 RX22V2C1 $CHAR3. /*For RX22, level 2 of MULTUM drug category #1 (intermediate level) */ @2101 RX22V2C2 $CHAR3. /*For RX22, level 2 of MULTUM drug category #2 (intermediate level) */ @2104 RX22V2C3 $CHAR3. /*For RX22, level 2 of MULTUM drug category #3 (intermediate level) */ @2107 RX22V2C4 $CHAR3. /*For RX22, level 2 of MULTUM drug category #4 (intermediate level) */ @2110 RX22V3C1 $CHAR3. /*For RX22, level 3 of MULTUM drug category #1 (detailed level) */ @2113 RX22V3C2 $CHAR3. /*For RX22, level 3 of MULTUM drug category #2 (detailed level) */ @2116 RX22V3C3 $CHAR3. /*For RX22, level 3 of MULTUM drug category #3 (detailed level) */ @2119 RX22V3C4 $CHAR3. /*For RX22, level 3 of MULTUM drug category #4 (detailed level) */ @2122 DRUGID23 $CHAR6. /*Drug ID code for medication #23 */ @2128 PRESCR23 1. /*Prescription status code for medication #23 */ @2129 CONTSUB23 1. /*Controlled substance status code for medication #23 */ @2130 COMSTAT23 1. /*Composition status code for medication #23 */ @2131 RX23CAT1 $CHAR3. /*For RX23, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2134 RX23CAT2 $CHAR3. /*For RX23, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2137 RX23CAT3 $CHAR3. /*For RX23, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2140 RX23CAT4 $CHAR3. /*For RX23, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2143 RX23V1C1 $CHAR3. /*For RX23, level 1 of MULTUM drug category #1 (broad level) */ @2146 RX23V1C2 $CHAR3. /*For RX23, level 1 of MULTUM drug category #2 (broad level) */ @2149 RX23V1C3 $CHAR3. /*For RX23, level 1 of MULTUM drug category #3 (broad level) */ @2152 RX23V1C4 $CHAR3. /*For RX23, level 1 of MULTUM drug category #4 (broad level) */ @2155 RX23V2C1 $CHAR3. /*For RX23, level 2 of MULTUM drug category #1 (intermediate level) */ @2158 RX23V2C2 $CHAR3. /*For RX23, level 2 of MULTUM drug category #2 (intermediate level) */ @2161 RX23V2C3 $CHAR3. /*For RX23, level 2 of MULTUM drug category #3 (intermediate level) */ @2164 RX23V2C4 $CHAR3. /*For RX23, level 2 of MULTUM drug category #4 (intermediate level) */ @2167 RX23V3C1 $CHAR3. /*For RX23, level 3 of MULTUM drug category #1 (detailed level) */ @2170 RX23V3C2 $CHAR3. /*For RX23, level 3 of MULTUM drug category #2 (detailed level) */ @2173 RX23V3C3 $CHAR3. /*For RX23, level 3 of MULTUM drug category #3 (detailed level) */ @2176 RX23V3C4 $CHAR3. /*For RX23, level 3 of MULTUM drug category #4 (detailed level) */ @2179 DRUGID24 $CHAR6. /*Drug ID code for medication #24 */ @2185 PRESCR24 1. /*Prescription status code for medication #24 */ @2186 CONTSUB24 1. /*Controlled substance status code for medication #24 */ @2187 COMSTAT24 1. /*Composition status code for medication #24 */ @2188 RX24CAT1 $CHAR3. /*For RX24, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2191 RX24CAT2 $CHAR3. /*For RX24, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2194 RX24CAT3 $CHAR3. /*For RX24, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2197 RX24CAT4 $CHAR3. /*For RX24, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2200 RX24V1C1 $CHAR3. /*For RX24, level 1 of MULTUM drug category #1 (broad level) */ @2203 RX24V1C2 $CHAR3. /*For RX24, level 1 of MULTUM drug category #2 (broad level) */ @2206 RX24V1C3 $CHAR3. /*For RX24, level 1 of MULTUM drug category #3 (broad level) */ @2209 RX24V1C4 $CHAR3. /*For RX24, level 1 of MULTUM drug category #4 (broad level) */ @2212 RX24V2C1 $CHAR3. /*For RX24, level 2 of MULTUM drug category #1 (intermediate level) */ @2215 RX24V2C2 $CHAR3. /*For RX24, level 2 of MULTUM drug category #2 (intermediate level) */ @2218 RX24V2C3 $CHAR3. /*For RX24, level 2 of MULTUM drug category #3 (intermediate level) */ @2221 RX24V2C4 $CHAR3. /*For RX24, level 2 of MULTUM drug category #4 (intermediate level) */ @2224 RX24V3C1 $CHAR3. /*For RX24, level 3 of MULTUM drug category #1 (detailed level) */ @2227 RX24V3C2 $CHAR3. /*For RX24, level 3 of MULTUM drug category #2 (detailed level) */ @2230 RX24V3C3 $CHAR3. /*For RX24, level 3 of MULTUM drug category #3 (detailed level) */ @2233 RX24V3C4 $CHAR3. /*For RX24, level 3 of MULTUM drug category #4 (detailed level) */ @2236 DRUGID25 $CHAR6. /*Drug ID code for medication #25 */ @2242 PRESCR25 1. /*Prescription status code for medication #25 */ @2243 CONTSUB25 1. /*Controlled substance status code for medication #25 */ @2244 COMSTAT25 1. /*Composition status code for medication #25 */ @2245 RX25CAT1 $CHAR3. /*For RX25, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2248 RX25CAT2 $CHAR3. /*For RX25, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2251 RX25CAT3 $CHAR3. /*For RX25, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2254 RX25CAT4 $CHAR3. /*For RX25, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2257 RX25V1C1 $CHAR3. /*For RX25, level 1 of MULTUM drug category #1 (broad level) */ @2260 RX25V1C2 $CHAR3. /*For RX25, level 1 of MULTUM drug category #2 (broad level) */ @2263 RX25V1C3 $CHAR3. /*For RX25, level 1 of MULTUM drug category #3 (broad level) */ @2266 RX25V1C4 $CHAR3. /*For RX25, level 1 of MULTUM drug category #4 (broad level) */ @2269 RX25V2C1 $CHAR3. /*For RX25, level 2 of MULTUM drug category #1 (intermediate level) */ @2272 RX25V2C2 $CHAR3. /*For RX25, level 2 of MULTUM drug category #2 (intermediate level) */ @2275 RX25V2C3 $CHAR3. /*For RX25, level 2 of MULTUM drug category #3 (intermediate level) */ @2278 RX25V2C4 $CHAR3. /*For RX25, level 2 of MULTUM drug category #4 (intermediate level) */ @2281 RX25V3C1 $CHAR3. /*For RX25, level 3 of MULTUM drug category #1 (detailed level) */ @2284 RX25V3C2 $CHAR3. /*For RX25, level 3 of MULTUM drug category #2 (detailed level) */ @2287 RX25V3C3 $CHAR3. /*For RX25, level 3 of MULTUM drug category #3 (detailed level) */ @2290 RX25V3C4 $CHAR3. /*For RX25, level 3 of MULTUM drug category #4 (detailed level) */ @2293 DRUGID26 $CHAR6. /*Drug ID code for medication #26 */ @2299 PRESCR26 1. /*Prescription status code for medication #26 */ @2300 CONTSUB26 1. /*Controlled substance status code for medication #26 */ @2301 COMSTAT26 1. /*Composition status code for medication #26 */ @2302 RX26CAT1 $CHAR3. /*For RX26, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2305 RX26CAT2 $CHAR3. /*For RX26, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2308 RX26CAT3 $CHAR3. /*For RX26, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2311 RX26CAT4 $CHAR3. /*For RX26, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2314 RX26V1C1 $CHAR3. /*For RX26, level 1 of MULTUM drug category #1 (broad level) */ @2317 RX26V1C2 $CHAR3. /*For RX26, level 1 of MULTUM drug category #2 (broad level) */ @2320 RX26V1C3 $CHAR3. /*For RX26, level 1 of MULTUM drug category #3 (broad level) */ @2323 RX26V1C4 $CHAR3. /*For RX26, level 1 of MULTUM drug category #4 (broad level) */ @2326 RX26V2C1 $CHAR3. /*For RX26, level 2 of MULTUM drug category #1 (intermediate level) */ @2329 RX26V2C2 $CHAR3. /*For RX26, level 2 of MULTUM drug category #2 (intermediate level) */ @2332 RX26V2C3 $CHAR3. /*For RX26, level 2 of MULTUM drug category #3 (intermediate level) */ @2335 RX26V2C4 $CHAR3. /*For RX26, level 2 of MULTUM drug category #4 (intermediate level) */ @2338 RX26V3C1 $CHAR3. /*For RX26, level 3 of MULTUM drug category #1 (detailed level) */ @2341 RX26V3C2 $CHAR3. /*For RX26, level 3 of MULTUM drug category #2 (detailed level) */ @2344 RX26V3C3 $CHAR3. /*For RX26, level 3 of MULTUM drug category #3 (detailed level) */ @2347 RX26V3C4 $CHAR3. /*For RX26, level 3 of MULTUM drug category #4 (detailed level) */ @2350 DRUGID27 $CHAR6. /*Drug ID code for medication #27 */ @2356 PRESCR27 1. /*Prescription status code for medication #27 */ @2357 CONTSUB27 1. /*Controlled substance status code for medication #27 */ @2358 COMSTAT27 1. /*Composition status code for medication #27 */ @2359 RX27CAT1 $CHAR3. /*For RX27, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2362 RX27CAT2 $CHAR3. /*For RX27, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2365 RX27CAT3 $CHAR3. /*For RX27, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2368 RX27CAT4 $CHAR3. /*For RX27, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2371 RX27V1C1 $CHAR3. /*For RX27, level 1 of MULTUM drug category #1 (broad level) */ @2374 RX27V1C2 $CHAR3. /*For RX27, level 1 of MULTUM drug category #2 (broad level) */ @2377 RX27V1C3 $CHAR3. /*For RX27, level 1 of MULTUM drug category #3 (broad level) */ @2380 RX27V1C4 $CHAR3. /*For RX27, level 1 of MULTUM drug category #4 (broad level) */ @2383 RX27V2C1 $CHAR3. /*For RX27, level 2 of MULTUM drug category #1 (intermediate level) */ @2386 RX27V2C2 $CHAR3. /*For RX27, level 2 of MULTUM drug category #2 (intermediate level) */ @2389 RX27V2C3 $CHAR3. /*For RX27, level 2 of MULTUM drug category #3 (intermediate level) */ @2392 RX27V2C4 $CHAR3. /*For RX27, level 2 of MULTUM drug category #4 (intermediate level) */ @2395 RX27V3C1 $CHAR3. /*For RX27, level 3 of MULTUM drug category #1 (detailed level) */ @2398 RX27V3C2 $CHAR3. /*For RX27, level 3 of MULTUM drug category #2 (detailed level) */ @2401 RX27V3C3 $CHAR3. /*For RX27, level 3 of MULTUM drug category #3 (detailed level) */ @2404 RX27V3C4 $CHAR3. /*For RX27, level 3 of MULTUM drug category #4 (detailed level) */ @2407 DRUGID28 $CHAR6. /*Drug ID code for medication #28 */ @2413 PRESCR28 1. /*Prescription status code for medication #28 */ @2414 CONTSUB28 1. /*Controlled substance status code for medication #28 */ @2415 COMSTAT28 1. /*Composition status code for medication #28 */ @2416 RX28CAT1 $CHAR3. /*For RX28, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2419 RX28CAT2 $CHAR3. /*For RX28, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2422 RX28CAT3 $CHAR3. /*For RX28, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2425 RX28CAT4 $CHAR3. /*For RX28, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2428 RX28V1C1 $CHAR3. /*For RX28, level 1 of MULTUM drug category #1 (broad level) */ @2431 RX28V1C2 $CHAR3. /*For RX28, level 1 of MULTUM drug category #2 (broad level) */ @2434 RX28V1C3 $CHAR3. /*For RX28, level 1 of MULTUM drug category #3 (broad level) */ @2437 RX28V1C4 $CHAR3. /*For RX28, level 1 of MULTUM drug category #4 (broad level) */ @2440 RX28V2C1 $CHAR3. /*For RX28, level 2 of MULTUM drug category #1 (intermediate level) */ @2443 RX28V2C2 $CHAR3. /*For RX28, level 2 of MULTUM drug category #2 (intermediate level) */ @2446 RX28V2C3 $CHAR3. /*For RX28, level 2 of MULTUM drug category #3 (intermediate level) */ @2449 RX28V2C4 $CHAR3. /*For RX28, level 2 of MULTUM drug category #4 (intermediate level) */ @2452 RX28V3C1 $CHAR3. /*For RX28, level 3 of MULTUM drug category #1 (detailed level) */ @2455 RX28V3C2 $CHAR3. /*For RX28, level 3 of MULTUM drug category #2 (detailed level) */ @2458 RX28V3C3 $CHAR3. /*For RX28, level 3 of MULTUM drug category #3 (detailed level) */ @2461 RX28V3C4 $CHAR3. /*For RX28, level 3 of MULTUM drug category #4 (detailed level) */ @2464 DRUGID29 $CHAR6. /*Drug ID code for medication #29 */ @2470 PRESCR29 1. /*Prescription status code for medication #29 */ @2471 CONTSUB29 1. /*Controlled substance status code for medication #29 */ @2472 COMSTAT29 1. /*Composition status code for medication #29 */ @2473 RX29CAT1 $CHAR3. /*For RX29, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2476 RX29CAT2 $CHAR3. /*For RX29, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2479 RX29CAT3 $CHAR3. /*For RX29, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2482 RX29CAT4 $CHAR3. /*For RX29, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2485 RX29V1C1 $CHAR3. /*For RX29, level 1 of MULTUM drug category #1 (broad level) */ @2488 RX29V1C2 $CHAR3. /*For RX29, level 1 of MULTUM drug category #2 (broad level) */ @2491 RX29V1C3 $CHAR3. /*For RX29, level 1 of MULTUM drug category #3 (broad level) */ @2494 RX29V1C4 $CHAR3. /*For RX29, level 1 of MULTUM drug category #4 (broad level) */ @2497 RX29V2C1 $CHAR3. /*For RX29, level 2 of MULTUM drug category #1 (intermediate level) */ @2500 RX29V2C2 $CHAR3. /*For RX29, level 2 of MULTUM drug category #2 (intermediate level) */ @2503 RX29V2C3 $CHAR3. /*For RX29, level 2 of MULTUM drug category #3 (intermediate level) */ @2506 RX29V2C4 $CHAR3. /*For RX29, level 2 of MULTUM drug category #4 (intermediate level) */ @2509 RX29V3C1 $CHAR3. /*For RX29, level 3 of MULTUM drug category #1 (detailed level) */ @2512 RX29V3C2 $CHAR3. /*For RX29, level 3 of MULTUM drug category #2 (detailed level) */ @2515 RX29V3C3 $CHAR3. /*For RX29, level 3 of MULTUM drug category #3 (detailed level) */ @2518 RX29V3C4 $CHAR3. /*For RX29, level 3 of MULTUM drug category #4 (detailed level) */ @2521 DRUGID30 $CHAR6. /*Drug ID code for medication #30 */ @2527 PRESCR30 1. /*Prescription status code for medication #30 */ @2528 CONTSUB30 1. /*Controlled substance status code for medication #30 */ @2529 COMSTAT30 1. /*Composition status code for medication #30 */ @2530 RX30CAT1 $CHAR3. /*For RX30, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2533 RX30CAT2 $CHAR3. /*For RX30, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2536 RX30CAT3 $CHAR3. /*For RX30, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2539 RX30CAT4 $CHAR3. /*For RX30, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2542 RX30V1C1 $CHAR3. /*For RX30, level 1 of MULTUM drug category #1 (broad level) */ @2545 RX30V1C2 $CHAR3. /*For RX30, level 1 of MULTUM drug category #2 (broad level) */ @2548 RX30V1C3 $CHAR3. /*For RX30, level 1 of MULTUM drug category #3 (broad level) */ @2551 RX30V1C4 $CHAR3. /*For RX30, level 1 of MULTUM drug category #4 (broad level) */ @2554 RX30V2C1 $CHAR3. /*For RX30, level 2 of MULTUM drug category #1 (intermediate level) */ @2557 RX30V2C2 $CHAR3. /*For RX30, level 2 of MULTUM drug category #2 (intermediate level) */ @2560 RX30V2C3 $CHAR3. /*For RX30, level 2 of MULTUM drug category #3 (intermediate level) */ @2563 RX30V2C4 $CHAR3. /*For RX30, level 2 of MULTUM drug category #4 (intermediate level) */ @2566 RX30V3C1 $CHAR3. /*For RX30, level 3 of MULTUM drug category #1 (detailed level) */ @2569 RX30V3C2 $CHAR3. /*For RX30, level 3 of MULTUM drug category #2 (detailed level) */ @2572 RX30V3C3 $CHAR3. /*For RX30, level 3 of MULTUM drug category #3 (detailed level) */ @2575 RX30V3C4 $CHAR3. /*For RX30, level 3 of MULTUM drug category #4 (detailed level) */ @2578 SETTYPE 1. /*Setting type */ @2579 YEAR 4. /*YEAR (2014) */ @2583 CSTRATM 8. /*Clustered CSTRATM -- masked */ @2591 CPSUM 6. /*Clustered CPSUM -- masked */ @2597 PATWT 6. /*Patient visit weight */ @2603 EDWT 6. /*ED weight */ ;