/* PROGRAM: AS10INP PURPOSE: INPUT STATEMENT TO READ PUBLIC USE VERSION OF 2010 NATIONAL HOSPITAL AMBULATORY MEDICAL CARE SURVEY AMBULATORY SURGERY 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 SETTYPE 2. /* Setting type */ @3 FACTYPE 2. /* Type of facility- this is not to be confused with ASCTYPE @5 VMONTH 2. /* ` */ @7 VYEAR 4. /* Year of visit */ @11 AGE 3. /* Patient age in years */ @14 AGEREC 2. /* Patient age in years (recode) */ @16 AGER 2. /* Patient age in years (recode) */ @18 SEX 2. /* Patient sex */ @20 ETHUN 2. /* Patient Ethnicity unimputed */ @22 RACEUN 2. /* Race unimputed */ @24 PAYPRIV 2. /* Expected source of payment for this visit. Private insurance */ @26 PAYMCARE 2. /* Expected source of payment for this visit. Medicare */ @28 PAYMCAID 2. /* Expected source of payment for this visit. Medicaid or CHIP/SCHIP */ @30 PAYWKCMP 2. /* Expected source of payment for this visit. Worker's Comp */ @32 PAYSELF 2. /* Expected source of payment for this visit. Self-pay */ @34 PAYNOCHG 2. /* Expected source of payment for this visit. No charge/charity */ @36 PAYOTH 2. /* Expected source of payment for this visit. Other */ @38 PAYDK 2. /* Expected source of payment for this visit. Unknown */ @40 ORINHR 2. /* Time into operating room (hour) */ @42 ORINMIN 2. /* Time into operating room (minute) */ @44 ORINTIME 2. /* Time into operating room (type) */ @46 SURBHR 2. /* Time surgery began (hour) */ @48 SURBMIN 2. /* Time surgery began (minute) */ @50 SURBTIME 2. /* Time surgery began (type) */ @52 SUREHR 2. /* Time surgery ended (hour) */ @54 SUREMIN 2. /* Time surgery ended (minute) */ @56 SURETIME 2. /* Time surgery ended (type) */ @58 OROUTHR 2. /* Time out of operating room (hour) */ @60 OROUTMIN 2. /* Time out of operating room (minute) */ @62 OROUTIME 2. /* Time out of operating room (type) */ @64 POINHR 2. /* Time into postoperative care (hour) */ @66 POINMIN 2. /* Time into postoperative care (minute) */ @68 POINTIME 2. /* Time into postoperative care (type) */ @70 POUTHR 2. /* Time out of postoperative care (hour) */ @72 POUTMIN 2. /* Time out of postoperative care (minute) */ @74 POUTIME 2. /* Time out of postoperative care (type) */ @76 DIAG1 $CHAR5. /* Primary diagnosis #1 */ @81 DIAG2 $CHAR5. /* Other diagnosis #2 */ @86 DIAG3 $CHAR5. /* Other diagnosis #3 */ @91 DIAG4 $CHAR5. /* Other diagnosis #4 */ @96 DIAG5 $CHAR5. /* Other diagnosis #5 */ @101 PROC1 $CHAR4. /* Primary diagnostic or surgical procedure write-in #1 */ @105 PROC2 $CHAR4. /* Other diagnostic or surgical procedure write-in #2 */ @109 PROC3 $CHAR4. /* Other diagnostic or surgical procedure write-in #3 */ @113 PROC4 $CHAR4. /* Other diagnostic or surgical procedure write-in #4 */ @117 PROC5 $CHAR4. /* Other diagnostic or surgical procedure write-in #5 */ @121 PROC6 $CHAR4. /* Other diagnostic or surgical procedure write-in #6 */ @125 PROC7 $CHAR4. /* Other diagnostic or surgical procedure write-in #7 */ @129 OXYGEN 2. /* Was oxygen administered during this visit? */ @131 NOANES 2. /* Type(s) of anesthesia: None */ @133 GENLANES 2. /* General anesthesia */ @135 IVSED 2. /* IV sedation */ @137 MAC 2. /* MAC (Monitored anesthesia care) */ @139 TOPLOC 2. /* Topical/Local */ @141 EPIDURAL 2. /* Regional - Epidural */ @143 SPINAL 2. /* Regional Spinal */ @145 RETROBUL 2. /* Regional Retrobulbar block */ @147 PERIBUL 2. /* Regional Peribulbar block */ @149 OTHBLOCK 2. /* Regional Other block */ @151 OTHANES 2. /* Other anesthesia */ @153 ANESPHYS 2. /* Anesthesiologist */ @155 CRNA 2. /* Certified Registered Nurse Anesthetist */ @157 SURGOTH 2. /* Surgeon/Other physician */ @159 PROVDK 2. /* Provider(s) of anesthesia: Unknown */ @161 NOSYMP 2. /* Symptom(s) present during or after procedure: None */ @163 APNEA 2. /* Apnea */ @165 BLEED 2. /* Bleeding/Hemorrhage */ @167 DIFFWAKE 2. /* Difficulty waking up. */ @169 DYSRHY 2. /* Dysrhythmia/Arrhythmia */ @171 HTNHBP 2. /* Hypertension/High blood pressure */ @173 HYPOLBP 2. /* Hypotension/Low blood pressure */ @175 HYPOXIA 2. /* Hypoxia */ @177 INCONT 2. /* Incontinence */ @179 NAUSEA 2. /* Nausea */ @181 VOMIT 2. /* Vomiting */ @183 OTHSYMP 2. /* Other symptoms */ @185 ASCDISP 2. /* Disposition @187 FUSURG 2. /* Did someone attempt to follow-up within 24 hours after surgery? */ @189 REACHNO 2. /* What was learned from this followup? Unable to reach patient */ @191 PROBNO 2. /* What was learned from this followup? Patient reported no problems */ @193 PROBCARE 2. /* What was learned from this followup? Patient reported problems and sought medical care */ @195 PROBADV 2. /* What was learned from this followup? Patient reported problems and was advised by ASC staff to seek medical care */ @197 PROBNOFU 2. /* What was learned from this followup? Patient reported problems, but no follow-up medical care was needed */ @199 OTHFU 2. /* What was learned from this followup? Other */ @201 FUDK 2. /* What was learned from follow-up? Unknown */ @203 BDATEFL 2. /* Was birth year imputed? */ @205 SEXFL 2. /* Was sex imputed? */ @207 RACERFL 2. /* Was race imputed (model based)? */ @209 ETHNICFL 2. /* Was ethnicity imputed (model based)? */ @211 RACER 2. /* Race imputed model based (Replaces RACE) */ @213 ETHNIC 2. /* Ethnicity imputed model based */ @215 PAYTYPER 2. /* Primary expected source of payment for visit */ @217 NOPAY 2. /* Whether or not there is at least one expected source of payment marked */ @219 TOTPROC 2. /* Total # of diagnostic and surgical procedures */ @221 HOSPCODE 3. /* Masked version of FSASC/HBASC on PUF - both hospital and ASC id's are called HOSPIDs */ @224 PATCODE 3. /* Patient Code Sequential count of PRF's for each facility */ @227 RECNUM $CHAR6. /* Facility code (HOSPCODE) followed by sequential count of records for each facility */ @233 PATWT 11.6 /* Patient weight (Rounded) used to produce national estimates */ @244 CSTRATM 8. /* Clustered CSTRATM (masked) */ @252 CPSUM 6. /* Clustered CPSUM (masked) */ ;