SAS User File for H102F Data This file contains information and sample SAS programs to create a permanent SAS dataset for users who want to use SAS in processing the MEPS data provided in this PUF release. There are two ways to create a permanent SAS dataset, using either the SAS transport data file (H102F.SSP) or the ASCII data file (H102F.DAT) supplied in this PUF release. Section A provides a sample SAS program for the first alternative, which is to convert the SAS transport data file to a regular SAS dataset using the SAS PROCedure: XCOPY. Section B provides a sample SAS program for the second alternative, which is to read data from the ASCII data file using a SAS DATA step with INFILE, INPUT, and LABEL statements. Section C explains format-related SAS statements that a user may optionally use when working with the SAS dataset. Examples of SAS programs (DATA step or PROC) are provided in all three sections, primarily for the benefit of inexperienced users. Section D contains complete SAS statements that must be used in the programs described in Sections B and C. INCLUDED BELOW ARE NOTES APPLICABLE TO USERS OF SAS VERSION 8 OR HIGHER. ****************************************************************************** The sample SAS programs provided in Sections A and B show how to create a permanent SAS dataset from the data files provided in this PUF release. A. A Sample SAS Program for Converting the SAS Transport File to a Permanent SAS Dataset The SAS PROCedure XCOPY will read a SAS transport file and convert the data to regular SAS format, storing the output in a permanent SAS dataset. This permanent SAS dataset can then be used for all future processing and analyses. Below is a sample SAS program that can be used to convert the SAS transport file to a permanent SAS dataset (in a Windows environment, with SAS V8 or higher). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H102F.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; SAS transport files, SAS data files, and SAS program files each should be stored in separate locations (directory names). Storing different types of SAS files in one location can cause errors with converting or retrieving data. Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H102F; TITLE 'List of Variables in MEPS H102F SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H102F (OBS=20); TITLE 'First 20 Observations in MEPS H102F SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC XCOPY. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) If you have an error reading a SAS data file you created, the problem may be a result of where you are storing and/or how you are retrieving the data. First check the data library for multiple releases of SAS files (e.g., V8 or higher with file extensions of '.SAS7BDAT' and V6 with file extensions of '.SD2') stored in the same location. a) You can avoid errors when reading these files by including the SAS release within the LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS\SASDATA'; or b) Store SAS data files with different file extensions such as .SD2 and .SAS7BDAT, in separate folders (do not co-mingle V8 and V6 files in the same folder); or c) When importing transport files, output the SAS dataset to a different library than the one which contains the downloaded SAS transport file - e.g., LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\Hxx.SSP'; PROC XCOPY IN=IN1 OUT=PUBLIB IMPORT; RUN; 2) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 3) The directory and file names used in the LIBNAME and FILENAME statements shown above are Windows syntax and may need to be modified for other operating systems such as UNIX, MAC/OS, VMS, or OS/2. 4) H102F is the internal SAS dataset name (also the PC file name, without the extension) prior to the creation of the SAS transport data file. After running PROC XCOPY, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H102F.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H102F.SSP was created from a SAS V9 data file, using PROC COPY. This file has been tested for use with SAS V8 or higher. This file may work with earlier versions of SAS, although it has not been tested with those versions. Users who are unable to use this SAS transport file should instead convert the ASCII data file H102F.DAT to a SAS dataset as described in Section B. B. A Sample SAS Program for Converting the ASCII Data File to a Permanent SAS Dataset The complete SAS statements (INPUT and LABEL) included in Section D are intended to save time for those users wishing to create a permanent SAS dataset from the H102F.DAT ASCII data file. These statements must be used in combination with other SAS statements to create the appropriate SAS program, as shown below. To use the statements provided in Section D to create a SAS program, you will need an ASCII text editor. If you are using an interactive form of SAS (Windows, UNIX, OS2, etc.), use the editor provided as part of the SAS software. Following is a sample SAS program that will convert the ASCII data file to SAS format: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H102F.DAT'; DATA PUFLIB.H102F; INFILE IN1 LRECL=378; INPUT .....; * to user: insert the complete INPUT statement that is provided in Section D; LABEL .....; * to user: insert the complete LABEL statement that is provided in Section D; RUN; Here is an explanation of the SAS statements used in the program above. LIBNAME statement: This tells SAS the location (directory name) of the permanent SAS dataset. FILENAME statement: This tells SAS the location of the input ASCII data file. DATA statement: This signifies the beginning of a SAS DATA step and specifies the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H102F). In the example, after the successful completion of the DATA step, a PC file named H102F.SAS7BDAT would have been created in the C:\MEPS\SASDATA directory. INFILE statement: This tells SAS the location (directory and file name) of the input ASCII data file. Also provided is the logical record length (378 bytes), with the default of RECFM=V implied when this parameter is omitted. LRECL and RECFM are optional parameters in the INFILE statement. With regard to these options, please note the following: the ASCII data file H102F.DAT contains a 2-byte carriage return/line feed at the end of each record. When converting to a PC-SAS file, the LRECL option should be used to specify the record length to avoid use of a default record length by PC-SAS. If the RECFM=V option is used, the LRECL option must be specified as the logical record length (e.g., 378 for H102F.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (380 for H102F.DAT). Note that if the RECFM option is omitted, then the default option of RECFM=V is automatically used, and LRECL should be specified as the logical record (378 for H102F.DAT). INPUT statement: This specifies the input record layout, giving names and the beginning and ending column positions for data items (which become SAS variables) in the ASCII data file (H102F.DAT). Variable type (numeric or character) is also defined via the INPUT statement. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. See Section A.1 above for tips on retrieving and storing the permanent SAS data files. C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format library must first be created. Below is a SAS program that will accomplish this: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; PROC FORMAT LIBRARY=PUFLIB; VALUE .....; * to user: insert the complete set of VALUE statements found in Section D; VALUE .....; .......... ; RUN; Below is an example of how to use the SAS formats defined by the PROC FORMAT procedure: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; OPTIONS FMTSEARCH=(PUFLIB); PROC FREQ DATA=PUFLIB.H102F; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnam1 and fmtnam1 with actual variable names and format names; * Insert the FORMAT statement provided in Section D, if you are using all the variables in the TABLES statement; TITLE 'Frequency Distributions ....'; RUN; Here is an explanation of the SAS statements used above. LIBNAME statement: This tells SAS the location (directory name) of the SAS format library. Please note that SAS datasets (file name extension is 'SAS7BDAT' for SAS V8 or higher and 'SD2' for SAS V6) and format libraries (file name extension is 'SAS7BCAT' for SAS V8 or higher and 'SC2' for SAS V6) can be stored under the same directory. OPTIONS FMTSEARCH=...: This specifies the SAS format library. PROC FORMAT statement: This identifies the SAS procedure that will make SAS formats according to VALUE statements. Formats will be stored in a file named FORMATS.SAS7BCAT. Please note that the option 'LIBRARY=...' can be omitted if the user does not want to create a permanent SAS format library. When simply 'PROC FORMAT;' is used, the formats are defined only for the duration of the batch SAS program or an interactive SAS session. VALUE statement: This gives a) names to formats; and b) descriptive labels for individual values, or range of values. The format names can then be invoked using a FORMAT statement if desired. PROC FREQ statement: This identifies the SAS procedure that generates frequency distributions of variables specified in the TABLES statement, formatted if a FORMAT statement is used. The input SAS dataset is specified in the 'DATA=' option. FORMAT statement: This associates existing formats with variables. When using this statement, the formats must have already been created with a PROC FORMAT procedure. RUN statement: This tells SAS to execute all commands up to this point. NOTES: 1) Use of formats is entirely optional, and depends on the types of analyses that you are doing. It is recommended that you create and use them as appropriate. 2) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 3) You only create the permanent SAS dataset once. Additional analyses can be run using this permanent dataset. 4) The file and directory specifications in the LIBNAME and FILENAME statements are Windows syntax and may need to be modified for other operating systems such as UNIX, MAC/OS, VMS, or OS/2. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in converting the ASCII H102F.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=378; INPUT @1 DUID 5.0 @6 PID 2.0 @8 DUPERSID $8.0 @16 EVNTIDX $12.0 @28 EVENTRN 1.0 @29 FFEEIDX $12.0 @41 PANEL 2.0 @43 MPCDATA 1.0 @44 OPDATEYR 4.0 @48 OPDATEMM 2.0 @50 OPDATEDD 2.0 @52 SEETLKPV 2.0 @54 SEEDOC 2.0 @56 DRSPLTY 2.0 @58 MEDPTYPE 2.0 @60 VSTCTGRY 2.0 @62 VSTRELCN 2.0 @64 PHYSTH 2.0 @66 OCCUPTH 2.0 @68 SPEECHTH 2.0 @70 CHEMOTH 2.0 @72 RADIATTH 2.0 @74 KIDNEYD 2.0 @76 IVTHER 2.0 @78 DRUGTRT 2.0 @80 RCVSHOT 2.0 @82 PSYCHOTH 2.0 @84 OTHSHOT 2.0 @86 LABTEST 2.0 @88 SONOGRAM 2.0 @90 XRAYS 2.0 @92 MAMMOG 2.0 @94 MRI 2.0 @96 EKG 2.0 @98 EEG 2.0 @100 RCVVAC 2.0 @102 ANESTH 2.0 @104 OTHSVCE 2.0 @106 SURGPROC 2.0 @108 MEDPRESC 2.0 @110 VAPLACE 1.0 @111 OPICD1X $3.0 @114 OPICD2X $3.0 @117 OPICD3X $3.0 @120 OPICD4X $3.0 @123 OPPRO1X $2.0 @125 OPPRO2X $2.0 @127 OPCCC1X $3.0 @130 OPCCC2X $3.0 @133 OPCCC3X $3.0 @136 OPCCC4X $3.0 @139 FFOPTYPE 2.0 @141 FFTOT07 2.0 @143 OPXP06X 8.2 @151 OPTC06X 9.2 @160 OPFSF06X 8.2 @168 OPFMR06X 8.2 @176 OPFMD06X 8.2 @184 OPFPV06X 8.2 @192 OPFVA06X 8.2 @200 OPFTR06X 7.2 @207 OPFOF06X 6.2 @213 OPFSL06X 7.2 @220 OPFWC06X 8.2 @228 OPFOR06X 7.2 @235 OPFOU06X 7.2 @242 OPFOT06X 7.2 @249 OPFXP06X 8.2 @257 OPFTC06X 9.2 @266 OPDSF06X 7.2 @273 OPDMR06X 8.2 @281 OPDMD06X 7.2 @288 OPDPV06X 7.2 @295 OPDVA06X 6.2 @301 OPDTR06X 6.2 @307 OPDOF06X 5.2 @312 OPDSL06X 6.2 @318 OPDWC06X 7.2 @325 OPDOR06X 7.2 @332 OPDOU06X 7.2 @339 OPDOT06X 7.2 @346 OPDXP06X 8.2 @354 OPDTC06X 8.2 @362 IMPFLAG 1.0 @363 PERWT06F 12.6 @375 VARSTR 3.0 @378 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. FFEEIDX $FFEEIDX. PANEL PANELF. MPCDATA MPCDATAF. OPDATEYR OPDTEYRF. OPDATEMM OPDTEMMF. OPDATEDD OPDTEDDF. SEETLKPV SEETLKPF. SEEDOC SEEDOCF. DRSPLTY DRSPLTYF. MEDPTYPE MEDPTYPF. VSTCTGRY VSTCTGRF. VSTRELCN VSTRELCF. PHYSTH PHYSTHF. OCCUPTH OCCUPTHF. SPEECHTH SPEECHTF. CHEMOTH CHEMOTHF. RADIATTH RADIATTF. KIDNEYD KIDNEYDF. IVTHER IVTHERF. DRUGTRT DRUGTRTF. RCVSHOT RCVSHOTF. PSYCHOTH PSYCHOTF. OTHSHOT OTHSHOTF. LABTEST LABTESTF. SONOGRAM SONOGRMF. XRAYS XRAYSF. MAMMOG MAMMOGF. MRI MRIF. EKG EKGF. EEG EEGF. RCVVAC RCVVACF. ANESTH ANESTHF. OTHSVCE OTHSVCEF. SURGPROC SURGPROF. MEDPRESC MEDPRESF. VAPLACE VAPLACEF. OPICD1X $OPICD1X. OPICD2X $OPICD2X. OPICD3X $OPICD3X. OPICD4X $OPICD4X. OPPRO1X $OPPRO1X. OPPRO2X $OPPRO2X. OPCCC1X $OPCCC1X. OPCCC2X $OPCCC2X. OPCCC3X $OPCCC3X. OPCCC4X $OPCCC4X. FFOPTYPE FFOPTYPF. FFTOT07 FFTOT07F. OPXP06X OPXP06XF. OPTC06X OPTC06XF. OPFSF06X OPFSF06F. OPFMR06X OPFMR06F. OPFMD06X OPFMD06F. OPFPV06X OPFPV06F. OPFVA06X OPFVA06F. OPFTR06X OPFTR06F. OPFOF06X OPFOF06F. OPFSL06X OPFSL06F. OPFWC06X OPFWC06F. OPFOR06X OPFOR06F. OPFOU06X OPFOU06F. OPFOT06X OPFOT06F. OPFXP06X OPFXP06F. OPFTC06X OPFTC06F. OPDSF06X OPDSF06F. OPDMR06X OPDMR06F. OPDMD06X OPDMD06F. OPDPV06X OPDPV06F. OPDVA06X OPDVA06F. OPDTR06X OPDTR06F. OPDOF06X OPDOF06F. OPDSL06X OPDSL06F. OPDWC06X OPDWC06F. OPDOR06X OPDOR06F. OPDOU06X OPDOU06F. OPDOT06X OPDOT06F. OPDXP06X OPDXP06F. OPDTC06X OPDTC06F. IMPFLAG IMPFLAGF. PERWT06F PERWT06F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='PERSON NUMBER' DUPERSID='PERSON ID (DUID + PID)' EVNTIDX ='EVENT ID' EVENTRN ='EVENT ROUND NUMBER' FFEEIDX ='FLAT FEE ID' PANEL ='PANEL NUMBER' MPCDATA ='MPC DATA FLAG' OPDATEYR='EVENT DATE - YEAR' OPDATEMM='EVENT DATE - MONTH' OPDATEDD='EVENT DATE - DAY' SEETLKPV='DID P VISIT PROV IN PERSON OR TELEPHONE' SEEDOC ='DID P TALK TO MD THIS VISIT/PHONE CALL' DRSPLTY ='OPAT DOCTOR S SPECIALTY' MEDPTYPE='TYPE OF MED PERSON P TALKED TO ON VST DT' VSTCTGRY='BEST CATEGORY FOR CARE P RECV ON VST DT' VSTRELCN='THIS VST/PHONE CALL RELATED TO SPEC COND' PHYSTH ='THIS VISIT DID P HAVE PHYSICAL THERAPY' OCCUPTH ='THIS VIS DID P HAVE OCCUPATIONAL THERAPY' SPEECHTH='THIS VISIT DID P HAVE SPEECH THERAPY' CHEMOTH ='THIS VISIT DID P HAVE CHEMOTHERAPY' RADIATTH='THIS VISIT DID P HAVE RADIATION THERAPY' KIDNEYD ='THIS VISIT DID P HAVE KIDNEY DIALYSIS' IVTHER ='THIS VISIT DID P HAVE IV THERAPY' DRUGTRT ='THIS VIS DID P HAVE TRT FOR DRUG/ALCOHOL' RCVSHOT ='THIS VISIT DID P RECEIVE AN ALLERGY SHOT' PSYCHOTH='DID P HAVE PSYCHOTHERAPY/COUNSELING' OTHSHOT ='THIS VISIT DID P HAVE OTHER SHOT' LABTEST ='THIS VISIT DID P HAVE LAB TESTS' SONOGRAM='THIS VISIT DID P HAVE SONOGRAM OR ULTRSD' XRAYS ='THIS VISIT DID P HAVE X-RAYS' MAMMOG ='THIS VISIT DID P HAVE A MAMMOGRAM' MRI ='THIS VISIT DID P HAVE AN MRI/CATSCAN' EKG ='THIS VISIT DID P HAVE AN EKG OR ECG' EEG ='THIS VISIT DID P HAVE AN EEG' RCVVAC ='THIS VISIT DID P RECEIVE A VACCINATION' ANESTH ='THIS VISIT DID P RECEIVE ANESTHESIA' OTHSVCE ='THIS VISIT DID P HAVE OTH DIAG TEST/EXAM' SURGPROC='WAS SURG PROC PERFORMED ON P THIS VISIT' MEDPRESC='ANY MEDICINE PRESCRIBED FOR P THIS VISIT' VAPLACE ='VA FACILITY FLAG' OPICD1X ='3-DIGIT ICD-9-CM CONDITION CODE' OPICD2X ='3-DIGIT ICD-9-CM CONDITION CODE' OPICD3X ='3-DIGIT ICD-9-CM CONDITION CODE' OPICD4X ='3-DIGIT ICD-9-CM CONDITION CODE' OPPRO1X ='2-DIGIT ICD-9-CM PROCEDURE CODE' OPPRO2X ='2-DIGIT ICD-9-CM PROCEDURE CODE' OPCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC4X ='MODIFIED CLINICAL CLASSIFICATION CODE' FFOPTYPE='FLAT FEE BUNDLE' FFTOT07 ='TOTAL # OF VISITS IN FF AFTER 2006' OPXP06X ='TOT EXP FOR EVENT (OPFXP06X + OPDXP06X)' OPTC06X ='TOTAL CHG FOR EVENT (OPFTC06X+OPDTC06X)' OPFSF06X='FACILITY AMT PD, FAMILY (IMPUTED)' OPFMR06X='FACILITY AMT PD, MEDICARE (IMPUTED)' OPFMD06X='FACILITY AMT PD, MEDICAID (IMPUTED)' OPFPV06X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' OPFVA06X='FACILITY AMT PD, VETERANS (IMPUTED)' OPFTR06X='FACILITY AMT PD,TRICARE/CHAMPVA(IMPUTED)' OPFOF06X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' OPFSL06X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' OPFWC06X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' OPFOR06X='FACILITY AMT PD, OTH PRIV (IMPUTED)' OPFOU06X='FACILITY AMT PD, OTH PUB (IMPUTED)' OPFOT06X='FACILITY AMT PD, OTH INSUR (IMPUTED)' OPFXP06X='FACILITY SUM PAYMENTS OPFSF06X-OPFOT06X' OPFTC06X='TOTAL FACILITY CHARGE (IMPUTED)' OPDSF06X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' OPDMR06X='DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)' OPDMD06X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' OPDPV06X='DOCTOR AMT PD, PRIVATE INSUR (IMPUTED)' OPDVA06X='DOCTOR AMOUNT PAID, VETERANS (IMPUTED)' OPDTR06X='DOCTOR AMT PD, TRICARE/CHAMPVA (IMPUTED)' OPDOF06X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' OPDSL06X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' OPDWC06X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' OPDOR06X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' OPDOU06X='DOCTOR AMT PD, OTH PUBLIC (IMPUTED)' OPDOT06X='DOCTOR AMT PAID, OTH INSUR (IMPUTED)' OPDXP06X='DOCTOR SUM PAYMENTS OPDSF06X-OPDOT06X' OPDTC06X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT06F='EXPENDITURE FILE PERSON WEIGHT, 2006' VARSTR ='VARIANCE ESTIMATION STRATUM, 2006' VARPSU ='VARIANCE ESTIMATION PSU, 2006' ; * VALUE STATEMENTS; VALUE ANESTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE CHEMOTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE DRSPLTYF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 ALLERGY/IMMUNOLOGY' 2 = '2 ANESTHESIOLOGY' 3 = '3 CARDIOLOGY (HEART)' 4 = '4 DERMATOLOGY (SKIN)' 5 = '5 ENDOCRINOLOGY/METABOLISM' 6 = '6 FAMILY PRACTICE' 7 = '7 GASTROENTEROLOGY' 8 = '8 GENERAL PRACTICE' 9 = '9 GENERAL SURGERY' 10 = '10 GERIATRICS (ELDERLY)' 11 = '11 GYNECOLOGY/OBSTETRICS' 12 = '12 HEMATOLOGY (BLOOD)' 13 = '13 HOSPITAL RESIDENCE' 14 = '14 INTERNAL MEDICINE' 15 = '15 NEPHROLOGY (KIDNEYS)' 16 = '16 NEUROLOGY' 17 = '17 NUCLEAR MEDICINE' 18 = '18 ONCOLOGY' 19 = '19 OPHTHALMOLOGY' 20 = '20 ORTHOPEDICS' 21 = '21 OSTEOPATHY' 22 = '22 OTORHINOLARYNGOLOGY' 23 = '23 PATHOLOGY' 24 = '24 PEDIATRICIAN' 25 = '25 PHYSICAL MEDICINE/REHAB' 26 = '26 PLASTIC SURGERY' 27 = '27 PROCTOLOGY' 28 = '28 PSYCHIATRY' 29 = '29 PULMONARY' 30 = '30 RADIOLOGY' 31 = '31 RHEUMATOLOGY (ARTHRITIS)' 32 = '32 THORACIC SURGERY' 33 = '33 UROLOGY' 91 = '91 OTHER DR SPECIALTY' ; VALUE DRUGTRTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EEGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE EKGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE $FFEEIDX '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE FFOPTYPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 FLAT FEE STEM' 2 = '2 FLAT FEE LEAF' ; VALUE FFTOT07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 = '1' ; VALUE IMPFLAGF 0 = '0 NOT ELIGIBLE FOR IMPUTATION' 1 = '1 COMPLETE HC DATA' 2 = '2 COMPLETE MPC DATA' 3 = '3 FULLY IMPUTED' 4 = '4 PARTIALLY IMPUTED' 5 = '5 CAPITATION IMPUTATION' ; VALUE IVTHERF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE KIDNEYDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE LABTESTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MAMMOGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MEDPRESF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE MEDPTYPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 CHIROPRACTOR' 2 = '2 DENTIST/DENTAL CARE PERSON' 3 = '3 MIDWIFE' 4 = '4 NURSE/NURSE PRACTITIONER' 5 = '5 OPTOMETRIST' 6 = '6 PODIATRIST' 7 = "7 PHYSICIAN'S ASSISTANT" 8 = '8 PHYSICAL THERAPIST' 9 = '9 OCCUPATIONAL THERAPIST' 10 = '10 PSYCHOLOGIST' 11 = '11 SOCIAL WORKER' 12 = '12 TECHNICIAN' 14 = '14 ACUPUNCTURIST' 15 = '15 MASSAGE THERAPIST' 16 = '16 HOMEOPATHIC/NATURAPATHIC/HERBALIST' 17 = '17 OTHER ALTERNATIVE/COMPLEMENTARY CARE PRO' 91 = '91 OTHER' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE MRIF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE OCCUPTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE $OPCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $OPCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $OPCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $OPCCC4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE OPDMD06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 16 = '$0.01 - $16.00' 16.01 - 48.16 = '$16.01 - $48.16' 48.17 - 146.55 = '$48.17 - $146.55' 146.56 - 2730.6 = '$146.56 - $2,730.60' ; VALUE OPDMR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 34.1 = '$3.00 - $34.10' 34.11 - 92.08 = '$34.11 - $92.08' 92.09 - 242.42 = '$92.09 - $242.42' 242.43 - 10212.89 = '$242.43 - $10,212.89' ; VALUE OPDOF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.69 - 10.87 = '$1.69 - $10.87' ; VALUE OPDOR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.07 - 13.34 = '$1.07 - $13.34' 13.35 - 39.26 = '$13.35 - $39.26' 39.27 - 112.67 = '$39.27 - $112.67' 112.68 - 9400 = '$112.68 - $9,400.00' ; VALUE OPDOT06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 53.11 - 57.58 = '$53.11 - $57.58' 57.59 - 614.25 = '$57.59 - $614.25' 614.26 - 2833.23 = '$614.26 - $2,833.23' 2833.24 - 4500 = '$2,833.24 - $4,500.00' ; VALUE OPDOU06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 5.19 = '$0.01 - $5.19' 5.2 - 20.92 = '$5.20 - $20.92' 20.93 - 40.75 = '$20.93 - $40.75' 40.76 - 1341.55 = '$40.76 - $1,341.55' ; VALUE OPDPV06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.6 - 34.85 = '$0.60 - $34.85' 34.86 - 98.92 = '$34.86 - $98.92' 98.93 - 408.43 = '$98.93 - $408.43' 408.44 - 9400 = '$408.44 - $9,400.00' ; VALUE OPDSF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.11 - 12.75 = '$0.11 - $12.75' 12.76 - 35 = '$12.76 - $35.00' 35.01 - 99.67 = '$35.01 - $99.67' 99.68 - 9588 = '$99.68 - $9,588.00' ; VALUE OPDSL06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.89 - 226.2 = '$5.89 - $226.20' ; VALUE OPDTC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 98 = '$3.00 - $98.00' 98.01 - 290.18 = '$98.01 - $290.18' 290.19 - 1000 = '$290.19 - $1,000.00' 1000.01 - 20105 = '$1,000.01 - $20,105.00' ; VALUE OPDTEDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE OPDTEMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1-12 MONTH' ; VALUE OPDTEYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2006 = '2006' ; VALUE OPDTR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.2 - 7.71 = '$2.20 - $7.71' 7.72 - 27.32 = '$7.72 - $27.32' 27.33 - 59.49 = '$27.33 - $59.49' 59.5 - 732.32 = '$59.50 - $732.32' ; VALUE OPDVA06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.05 - 691 = '$0.05 - $691.00' ; VALUE OPDWC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 12.88 - 98.49 = '$12.88 - $98.49' 98.5 - 301.21 = '$98.50 - $301.21' 301.22 - 1307.07 = '$301.22 - $1,307.07' 1307.08 - 7627.12 = '$1,307.08 - $7,627.12' ; VALUE OPDXP06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.6 - 43.5 = '$0.60 - $43.50' 43.51 - 119.67 = '$43.51 - $119.67' 119.68 - 401.15 = '$119.68 - $401.15' 401.16 - 10350.34 = '$401.16 - $10,350.34' ; VALUE OPFMD06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.25 - 39 = '$0.25 - $39.00' 39.01 - 89.8 = '$39.01 - $89.80' 89.81 - 187.6 = '$89.81 - $187.60' 187.61 - 15730.04 = '$187.61 - $15,730.04' ; VALUE OPFMR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.68 - 51.11 = '$1.68 - $51.11' 51.12 - 116.4 = '$51.12 - $116.40' 116.41 - 293.79 = '$116.41 - $293.79' 293.8 - 35456.44 = '$293.80 - $35,456.44' ; VALUE OPFOF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.18 - 15 = '$4.18 - $15.00' 15.01 - 126.22 = '$15.01 - $126.22' 126.23 - 146.61 = '$126.23 - $146.61' 146.62 - 997.27 = '$146.62 - $997.27' ; VALUE OPFOR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.45 - 19.53 = '$3.45 - $19.53' 19.54 - 74.62 = '$19.54 - $74.62' 74.63 - 211.34 = '$74.63 - $211.34' 211.35 - 9431.49 = '$211.35 - $9,431.49' ; VALUE OPFOT06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.38 - 47.48 = '$2.38 - $47.48' 47.49 - 72.66 = '$47.49 - $72.66' 72.67 - 211.5 = '$72.67 - $211.50' 211.51 - 3901 = '$211.51 - $3,901.00' ; VALUE OPFOU06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.91 - 52.5 = '$6.91 - $52.50' 52.51 - 63.96 = '$52.51 - $63.96' 63.97 - 89.28 = '$63.97 - $89.28' 89.29 - 1001.85 = '$89.29 - $1,001.85' ; VALUE OPFPV06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.07 - 48 = '$0.07 - $48.00' 48.01 - 137.77 = '$48.01 - $137.77' 137.78 - 478.2 = '$137.78 - $478.20' 478.21 - 79349 = '$478.21 - $79,349.00' ; VALUE OPFSF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.19 - 13.2 = '$0.19 - $13.20' 13.21 - 26.02 = '$13.21 - $26.02' 26.03 - 100 = '$26.03 - $100.00' 100.01 - 11303 = '$100.01 - $11,303.00' ; VALUE OPFSL06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.98 - 25 = '$3.98 - $25.00' 25.01 - 60.84 = '$25.01 - $60.84' 60.85 - 389.8 = '$60.85 - $389.80' 389.81 - 5335.5 = '$389.81 - $5,335.50' ; VALUE OPFTC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.68 - 152.31 = '$5.68 - $152.31' 152.32 - 318 = '$152.32 - $318.00' 318.01 - 1237 = '$318.01 - $1,237.00' 1237.01 - 156998.28 = '$1,237.01 - $156,998.28' ; VALUE OPFTR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.78 - 19.25 = '$1.78 - $19.25' 19.26 - 43.95 = '$19.26 - $43.95' 43.96 - 133 = '$43.96 - $133.00' 133.01 - 3723.25 = '$133.01 - $3,723.25' ; VALUE OPFVA06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.18 - 95.96 = '$4.18 - $95.96' 95.97 - 222.52 = '$95.97 - $222.52' 222.53 - 441.87 = '$222.53 - $441.87' 441.88 - 23887 = '$441.88 - $23,887.00' ; VALUE OPFWC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.32 - 48662.2 = '$5.32 - $48,662.20' ; VALUE OPFXP06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.13 - 64.84 = '$1.13 - $64.84' 64.85 - 143.87 = '$64.85 - $143.87' 143.88 - 431.94 = '$143.88 - $431.94' 431.95 - 81349 = '$431.95 - $81,349.00' ; VALUE $OPICD1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V01' - 'V83' = 'V01-V83' ; VALUE $OPICD2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V01' - 'V83' = 'V01-V83' ; VALUE $OPICD3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V01' - 'V83' = 'V01-V83' ; VALUE $OPICD4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V01' - 'V83' = 'V01-V83' ; VALUE $OPPRO1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '00' - '05' = '00-05' '06' - '07' = '06-07' '08' - '16' = '08-16' '18' - '20' = '18-20' '21' - '29' = '21-29' '30' - '34' = '30-34' '35' - '39' = '35-39' '40' - '41' = '40-41' '42' - '54' = '42-54' '55' - '59' = '55-59' '60' - '64' = '60-64' '65' - '71' = '65-71' '72' - '75' = '72-75' '76' - '84' = '76-84' '85' - '86' = '85-86' '87' - '99' = '87-99' ; VALUE $OPPRO2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '00' - '05' = '00-05' '06' - '07' = '06-07' '08' - '16' = '08-16' '18' - '20' = '18-20' '21' - '29' = '21-29' '30' - '34' = '30-34' '35' - '39' = '35-39' '40' - '41' = '40-41' '42' - '54' = '42-54' '55' - '59' = '55-59' '60' - '64' = '60-64' '65' - '71' = '65-71' '72' - '75' = '72-75' '76' - '84' = '76-84' '85' - '86' = '85-86' '87' - '99' = '87-99' ; VALUE OPTC06XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.68 - 164 = '$5.68 - $164.00' 164.01 - 367 = '$164.01 - $367.00' 367.01 - 1510 = '$367.01 - $1,510.00' 1510.01 - 158323.28 = '$1,510.01 - $158,323.28' ; VALUE OPXP06XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.6 - 71.72 = '$0.60 - $71.72' 71.73 - 165.41 = '$71.73 - $165.41' 165.42 - 537.05 = '$165.42 - $537.05' 537.06 - 82496.08 = '$537.06 - $82,496.08' ; VALUE OTHSHOTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE OTHSVCEF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE PANELF 10 = 'PANEL 10' 11 = 'PANEL 11' ; VALUE PERWT06F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 596.614111 - 58145.393971 = '596.614111 - 58145.393971 WEIGHT' ; VALUE PHYSTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE PID OTHER = 'VALID ID' ; VALUE PSYCHOTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RADIATTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RCVSHOTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RCVVACF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SEEDOCF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SEETLKPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 SAW PROVIDER' 2 = '2 TELEPHONE CALL' ; VALUE SONOGRMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SPEECHTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE SURGPROF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE VAPLACEF -1 = '-1 INAPPLICABLE' 0 = '0 NO' 1 = '1 YES' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1 - 203 = '1 - 203' ; VALUE VSTCTGRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 GENERAL CHECKUP' 2 = '2 DIAGNOSIS OR TREATMENT' 3 = '3 EMERGENCY (E.G., ACCIDENT OR INJURY)' 4 = '4 PSYCHOTHERAPY/MENTAL HEALTH COUNSELING' 5 = '5 FOLLOW-UP OR POST-OPERATIVE VISIT' 6 = '6 IMMUNIZATIONS OR SHOTS' 7 = '7 VISION EXAM' 8 = '8 MATERNITY CARE (PRE/POSTNATAL)' 9 = '9 WELL CHILD EXAM' 10 = '10 LASER EYE SURGERY' 91 = '91 OTHER' ; VALUE VSTRELCF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE XRAYSF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ;