SAS User File for H77C 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 (H77C.SSP) or the ASCII data file (H77C.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. ****************************************************************************** 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 data 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 PC-SAS program that can be used to convert the SAS transport file to a permanent PC SAS dataset (in a Windows environment, with SAS V6.12). LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\MEPS\H77C.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; If the user wants a list of variables and a few sample records in the permanent SAS dataset, following are the SAS statements to accomplish these. PROC CONTENTS DATA=PUFLIB.H77C; TITLE 'List of Variables in MEPS H77C SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H77C (OBS=20); TITLE 'First 20 Observations in MEPS H77C 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) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 2) 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. 3) H77C 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 H77C.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H77C.SSP was created from a PC-SAS Version 6.12 data file, using PROC COPY. This file has been tested for use with PC-SAS version 6.10 or higher, or with mainframe SAS version 6.08 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 H77C.DAT to a SAS data set as described in Section B. ADDITIONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded SAS Transport file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H77C.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; 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 H77C.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'; FILENAME IN1 'C:\MEPS\H77C.DAT'; DATA PUFLIB.H77C; INFILE IN1 LRECL=221; 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 describes the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H77C). In the example, after the successful completion of the DATA step, a PC file named H77C.SAS7BDAT would have been created in the C:\MEPS 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 (221 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 H77C.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., 221 for H77C.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (223 for H77C.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 (221 for H77C.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 (H77C.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. ADDITIONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded ASCII data file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H77C.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; 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'; 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'; OPTIONS FMTSEARCH=(PUFLIB); PROC FREQ DATA=PUFLIB.H77C; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnami and fmtnami 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') and format libraries (file name extension is 'SAS7BCAT') 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 will generate 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 type 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 data set 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 H77C.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=221; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 EVENTRN 1.0 @30 FFEEIDX $12.0 @42 OMTYPEX 2.0 @44 OMTYPE 2.0 @46 OMOTHOX $25.0 @71 OMOTHOS $25.0 @96 FFOMTYPE 2.0 @98 FFBEF03 2.0 @100 FFTOT04 2.0 @102 OMSF03X 8.2 @110 OMMR03X 7.2 @117 OMMD03X 7.2 @124 OMPV03X 7.2 @131 OMVA03X 8.2 @139 OMTR03X 8.2 @147 OMOF03X 7.2 @154 OMSL03X 7.2 @161 OMWC03X 7.2 @168 OMOR03X 7.2 @175 OMOU03X 7.2 @182 OMOT03X 7.2 @189 OMXP03X 8.2 @197 OMTC03X 8.2 @205 IMPFLAG 1.0 @206 PERWT03F 12.6 @218 VARSTR 3.0 @221 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. FFEEIDX $FFEEIDX. OMTYPEX OMTYPEXF. OMTYPE OMTYPEF. OMOTHOX $OMOTHXF. OMOTHOS $OMOTHOF. FFOMTYPE FFOMTYPF. FFBEF03 FFBEF03F. FFTOT04 FFTOT04F. OMSF03X OMSF03XF. OMMR03X OMMR03XF. OMMD03X OMMD03XF. OMPV03X OMPV03XF. OMVA03X OMVA03XF. OMTR03X OMTR03XF. OMOF03X OMOF03XF. OMSL03X OMSL03XF. OMWC03X OMWC03XF. OMOR03X OMOR03XF. OMOU03X OMOU03XF. OMOT03X OMOT03XF. OMXP03X OMXP03XF. OMTC03X OMTC03XF. IMPFLAG IMPFLAGF. PERWT03F PERWT03F. 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' OMTYPEX ='OTHER MEDICAL EXPENSE TYPE - EDITED' OMTYPE ='OTHER MEDICAL EXPENSE TYPE' OMOTHOX ='OMTYPE OTHER SPECIFY - EDITED' OMOTHOS ='OMTYPE OTHER SPECIFY' FFOMTYPE='FLAT FEE BUNDLE' FFBEF03 ='TOTAL # OF VISITS IN FF BEFORE 2003' FFTOT04 ='TOTAL # OF VISITS IN FF AFTER 2003' OMSF03X ='AMOUNT PAID, FAMILY (IMPUTED)' OMMR03X ='AMOUNT PAID, MEDICARE (IMPUTED)' OMMD03X ='AMOUNT PAID, MEDICAID (IMPUTED)' OMPV03X ='AMOUNT PAID, PRIVATE INSURANCE (IMPUTED)' OMVA03X ='AMOUNT PAID, VETERANS (IMPUTED)' OMTR03X ='AMOUNT PAID, TRICARE (IMPUTED)' OMOF03X ='AMOUNT PAID, OTHER FEDERAL (IMPUTED)' OMSL03X ='AMOUNT PAID, STATE & LOCAL GOV (IMPUTED)' OMWC03X ='AMOUNT PAID, WORKERS COMP (IMPUTED)' OMOR03X ='AMOUNT PAID, OTHER PRIVATE (IMPUTED)' OMOU03X ='AMOUNT PAID, OTHER PUBLIC (IMPUTED)' OMOT03X ='AMOUNT PAID, OTHER INSURANCE (IMPUTED)' OMXP03X ='SUM OF OMSF03X-OMOT03X (IMPUTED)' OMTC03X ='HHLD REPORTED TOTAL CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT03F='EXPENDITURE FILE PERSON WEIGHT, 2003' VARSTR ='VARIANCE ESTIMATION STRATUM, 2003' VARPSU ='VARIANCE ESTIMATION PSU, 2003' ; * VALUE STATEMENTS; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE FFBEF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 = '1' ; VALUE $FFEEIDX '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE FFOMTYPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 FLAT FEE STEM' 2 = '2 FLAT FEE LEAF' ; VALUE FFTOT04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 = '1' ; VALUE IMPFLAGF -1 = '-1 INAPPLICABLE' 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 OMMD03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.4 - 41 = '$0.40 - $41.00' 41.01 - 98.4 = '$41.01 - $98.40' 98.41 - 205 = '$98.41 - $205.00' 205.01 - 6560 = '$205.01 - $6,560.00' ; VALUE OMMR03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.5 - 80 = '$0.50 - $80.00' 80.01 - 150 = '$80.01 - $150.00' 150.01 - 276.99 = '$150.01 - $276.99' 277 - 7105 = '$277.00 - $7,105.00' ; VALUE OMOF03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 32 = '$5.00 - $32.00' 32.01 - 90 = '$32.01 - $90.00' 90.01 - 326.5 = '$90.01 - $326.50' 326.51 - 1256 = '$326.51 - $1,256.00' ; VALUE OMOR03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.5 - 75 = '$0.50 - $75.00' 75.01 - 132 = '$75.01 - $132.00' 132.01 - 251 = '$132.01 - $251.00' 251.01 - 2666.67 = '$251.01 - $2,666.67' ; VALUE OMOT03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6 - 88 = '$6.00 - $88.00' 88.01 - 190 = '$88.01 - $190.00' 190.01 - 494 = '$190.01 - $494.00' 494.01 - 7000 = '$494.01 - $7,000.00' ; VALUE $OMOTHOF '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' 'ACCU-CHEK DIABETES MONITO' = 'ACCU-CHEK DIABETES MONITO' 'AMPLIFIED SPEAKER PHONE' = 'AMPLIFIED SPEAKER PHONE' 'AN ACSESS RAMP TO THE HOU' = 'AN ACSESS RAMP TO THE HOU' 'APRI BREATHING MONITOR' = 'APRI BREATHING MONITOR' 'BACK BRACE' = 'BACK BRACE' 'BASKET FOR WALKER' = 'BASKET FOR WALKER' 'BATHING EQUIPMMENT' = 'BATHING EQUIPMMENT' 'BLOOD PRESSURE MONITOR' = 'BLOOD PRESSURE MONITOR' 'BLOOD TESTS' = 'BLOOD TESTS' 'BRACES AND A WALKER' = 'BRACES AND A WALKER' 'BREAST BANDAGE' = 'BREAST BANDAGE' 'C-PAP' = 'C-PAP' 'C-PAP FOR SLEEP APNEA' = 'C-PAP FOR SLEEP APNEA' 'C-PAP MACHINE' = 'C-PAP MACHINE' 'CANE' = 'CANE' 'CANE AND BLOOD PRES MONIT' = 'CANE AND BLOOD PRES MONIT' 'CANES' = 'CANES' 'CANES/WALKER' = 'CANES/WALKER' 'CARPAL TUNNEL SPLINTS' = 'CARPAL TUNNEL SPLINTS' 'CATHETER' = 'CATHETER' 'CONT POSITV AIRWY PRESSUR' = 'CONT POSITV AIRWY PRESSUR' 'CORRECTIVE INSERTS' = 'CORRECTIVE INSERTS' 'CPAP' = 'CPAP' 'CPAP BREATHING DEVICE' = 'CPAP BREATHING DEVICE' 'CRACHES' = 'CRACHES' 'CRUTCHES' = 'CRUTCHES' 'CRUTCHES AND CANE' = 'CRUTCHES AND CANE' 'DIABETIC EQUIPMENT' = 'DIABETIC EQUIPMENT' 'DIABETIC SHOES' = 'DIABETIC SHOES' 'DIALYSIS - BYCARB/ACID' = 'DIALYSIS - BYCARB/ACID' 'DIAPERS' = 'DIAPERS' 'ELECTRIC SCOOTER' = 'ELECTRIC SCOOTER' 'HAND THERAPY EQUIPMENT' = 'HAND THERAPY EQUIPMENT' 'HEADSET FOR PHONE' = 'HEADSET FOR PHONE' 'HEALTH CLINIC' = 'HEALTH CLINIC' 'HEARING AID BATTERIES' = 'HEARING AID BATTERIES' 'HEATING PAD' = 'HEATING PAD' 'HELICOPTOR' = 'HELICOPTOR' 'HERBAL MEDICINE' = 'HERBAL MEDICINE' 'HOMEOPAT TRACTION MACHINE' = 'HOMEOPAT TRACTION MACHINE' 'HOSE' = 'HOSE' 'HOSPIS' = 'HOSPIS' 'HOSPITAL BED' = 'HOSPITAL BED' 'HOSPITAL BED AND OXYGEN A' = 'HOSPITAL BED AND OXYGEN A' 'HOSPTIAL BED' = 'HOSPTIAL BED' 'HOUSING' = 'HOUSING' 'INHALER' = 'INHALER' 'IV STAND' = 'IV STAND' 'KNEE BRACE' = 'KNEE BRACE' 'KNEE BRACES' = 'KNEE BRACES' 'LANCES * STRIPS' = 'LANCES * STRIPS' 'LIFE FLIGHT' = 'LIFE FLIGHT' 'LIFT CHAIR' = 'LIFT CHAIR' 'MACHINE MAGNIFIED TO SEE' = 'MACHINE MAGNIFIED TO SEE' 'MASSAGE THERAPY' = 'MASSAGE THERAPY' 'MASTECTOMY BRAS' = 'MASTECTOMY BRAS' 'MEDICAL EQUIPMENT' = 'MEDICAL EQUIPMENT' 'MONITOR' = 'MONITOR' 'MOTORIZED WHEELCHAIR' = 'MOTORIZED WHEELCHAIR' 'MOUTH GUARD' = 'MOUTH GUARD' 'MSG THERAPY' = 'MSG THERAPY' 'NEBULIZER' = 'NEBULIZER' 'NEW WALKER' = 'NEW WALKER' 'NURSE TO TEACH RE ASTHMA' = 'NURSE TO TEACH RE ASTHMA' 'ORTHOPEADIC BACI CUSHION' = 'ORTHOPEADIC BACI CUSHION' 'OXEGEN' = 'OXEGEN' 'OXYGEN' = 'OXYGEN' 'OXYGEN CONTAINER' = 'OXYGEN CONTAINER' 'OXYGEN EQUPMENT' = 'OXYGEN EQUPMENT' 'OXYGEN TANKS' = 'OXYGEN TANKS' 'PACEMAKER CHECK' = 'PACEMAKER CHECK' 'PERSONAL RESPONSE SYSTEM' = 'PERSONAL RESPONSE SYSTEM' 'PORTABLE OXYGEN BOTTLE' = 'PORTABLE OXYGEN BOTTLE' 'PRONEB' = 'PRONEB' 'PULLEYS FOR PHYSICAL THER' = 'PULLEYS FOR PHYSICAL THER' 'RAISED TOILET SEAT' = 'RAISED TOILET SEAT' 'RAMP' = 'RAMP' 'RAMPS' = 'RAMPS' 'SCOOTER' = 'SCOOTER' 'SHOES' = 'SHOES' 'SLEEPING MACHINE' = 'SLEEPING MACHINE' 'SPECIAL BRAS' = 'SPECIAL BRAS' 'SPLINTS FOR ARTHRITIS' = 'SPLINTS FOR ARTHRITIS' 'STOCKINGS' = 'STOCKINGS' 'SUPPORT STOCKINGS' = 'SUPPORT STOCKINGS' 'TEST STRIPS' = 'TEST STRIPS' 'TRAC TUBE' = 'TRAC TUBE' 'VAPORIZER' = 'VAPORIZER' 'WALKER' = 'WALKER' 'WALKER & CRUTCHES' = 'WALKER & CRUTCHES' 'WALKER AND SCOOTER' = 'WALKER AND SCOOTER' 'WALKING CANE' = 'WALKING CANE' 'WHEEL CHAIR' = 'WHEEL CHAIR' 'WHEELCHAIR' = 'WHEELCHAIR' 'WHEELCHAIR SUPPLIES' = 'WHEELCHAIR SUPPLIES' ; VALUE $OMOTHXF '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' 'BASKET FOR WALKER' = 'BASKET FOR WALKER' 'BLOOD TESTS' = 'BLOOD TESTS' 'CONT POSITV AIRWY PRESSUR' = 'CONT POSITV AIRWY PRESSUR' 'HEADSET FOR PHONE' = 'HEADSET FOR PHONE' 'HEALTH CLINIC' = 'HEALTH CLINIC' 'HEARING AID BATTERIES' = 'HEARING AID BATTERIES' 'HEATING PAD' = 'HEATING PAD' 'HERBAL MEDICINE' = 'HERBAL MEDICINE' 'HOSE' = 'HOSE' 'HOSPIS' = 'HOSPIS' 'HOUSING' = 'HOUSING' 'LIFE FLIGHT' = 'LIFE FLIGHT' 'MASSAGE THERAPY' = 'MASSAGE THERAPY' 'MSG THERAPY' = 'MSG THERAPY' 'NURSE TO TEACH RE ASTHMA' = 'NURSE TO TEACH RE ASTHMA' 'PACEMAKER CHECK' = 'PACEMAKER CHECK' 'PERSONAL RESPONSE SYSTEM' = 'PERSONAL RESPONSE SYSTEM' 'PRONEB' = 'PRONEB' 'WHEELCHAIR SUPPLIES' = 'WHEELCHAIR SUPPLIES' ; VALUE OMOU03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.2 - 50.84 = '$8.20 - $50.84' 50.85 - 114.8 = '$50.85 - $114.80' 114.81 - 369 = '$114.81 - $369.00' 369.01 - 1968 = '$369.01 - $1,968.00' ; VALUE OMPV03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 60 = '$1.00 - $60.00' 60.01 - 120 = '$60.01 - $120.00' 120.01 - 227 = '$120.01 - $227.00' 227.01 - 4750 = '$227.01 - $4,750.00' ; VALUE OMSF03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 50 = '$1.00 - $50.00' 50.01 - 119 = '$50.01 - $119.00' 119.01 - 223 = '$119.01 - $223.00' 223.01 - 26500 = '$223.01 - $26,500.00' ; VALUE OMSL03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 67.5 = '$3.00 - $67.50' 67.51 - 119.5 = '$67.51 - $119.50' 119.51 - 358.5 = '$119.51 - $358.50' 358.51 - 2200 = '$358.51 - $2,200.00' ; VALUE OMTC03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 64.5 = '$5.00 - $64.50' 64.51 - 150 = '$64.51 - $150.00' 150.01 - 277 = '$150.01 - $277.00' 277.01 - 26500 = '$277.01 - $26,500.00' ; VALUE OMTR03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.33 - 22.5 = '$5.33 - $22.50' 22.51 - 80 = '$22.51 - $80.00' 80.01 - 400 = '$80.01 - $400.00' 400.01 - 11200 = '$400.01 - $11,200.00' ; VALUE OMTYPEF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 GLASSES OR CONTACT LENSES' 2 = '2 INSULIN' 3 = '3 DIABETIC EQUIPMENT/SUPPLIES' 4 = '4 AMBULANCE SERVICES' 5 = '5 ORTHOPEDIC ITEMS' 6 = '6 HEARING DEVICES' 7 = '7 PROSTHESIS' 8 = '8 BATHROOM AIDS' 9 = '9 MEDICAL EQUIPMENT' 10 = '10 DISPOSABLE SUPPLIES' 11 = '11 ALTERATIONS/MODIFICATIONS' 91 = '91 OTHER' ; VALUE OMTYPEXF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 GLASSES OR CONTACT LENSES' 2 = '2 INSULIN' 3 = '3 DIABETIC EQUIPMENT/SUPPLIES' 4 = '4 AMBULANCE SERVICES' 5 = '5 ORTHOPEDIC ITEMS' 6 = '6 HEARING DEVICES' 7 = '7 PROSTHESIS' 8 = '8 BATHROOM AIDS' 9 = '9 MEDICAL EQUIPMENT' 10 = '10 DISPOSABLE SUPPLIES' 11 = '11 ALTERATIONS/MODIFICATIONS' 91 = '91 OTHER' ; VALUE OMVA03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6 - 33 = '$6.00 - $33.00' 33.01 - 88 = '$33.01 - $88.00' 88.01 - 266 = '$88.01 - $266.00' 266.01 - 26500 = '$266.01 - $26,500.00' ; VALUE OMWC03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 40 - 64 = '$40.00 - $64.00' 64.01 - 79 = '$64.01 - $79.00' 79.01 - 150 = '$79.01 - $150.00' 150.01 - 1200 = '$150.01 - $1,200.00' ; VALUE OMXP03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.1 - 60.68 = '$4.10 - $60.68' 60.69 - 146 = '$60.69 - $146.00' 146.01 - 267 = '$146.01 - $267.00' 267.01 - 26500 = '$267.01 - $26,500.00' ; VALUE PERWT03F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 429.371049 - 55074.889968 = '429.371049 - 55074.889968 WEIGHT' ; VALUE PID OTHER = 'VALID ID' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1 - 203 = '1 - 203' ;