SAS User File for H94C 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 (H94C.SSP) or the ASCII data file (H94C.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 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 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'; FILENAME IN1 'C:\MEPS\H94C.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.H94C; TITLE 'List of Variables in MEPS H94C SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H94C (OBS=20); TITLE 'First 20 Observations in MEPS H94C 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 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'; 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 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\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) H94C 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 H94C.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 5) The SAS transport file H94C.SSP was created from a PC-SAS Version 8 data file, using PROC COPY. This file has been tested for use with SAS version 8 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 H94C.DAT to a SAS data set 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 H94C.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\H94C.DAT'; DATA PUFLIB.H94C; INFILE IN1 LRECL=YYYYY; 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 (H94C). In the example, after the successful completion of the DATA step, a PC file named H94C.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 (YYYYY 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 H94C.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., YYYYY for H94C.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (XXXXX for H94C.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 (YYYYY for H94C.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 (H94C.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'; 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.H94C; 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') and format libraries (file name extension is 'SAS7BDAT') 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.SAS7BDAT. 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 H94C.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=217; 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 PANEL 2.0 @44 OMTYPEX 2.0 @46 OMTYPE 2.0 @48 OMOTHOX $25.0 @73 OMOTHOS $25.0 @98 FFOMTYPE 2.0 @100 FFBEF05 2.0 @102 OMSF05X 7.2 @109 OMMR05X 8.2 @117 OMMD05X 7.2 @124 OMPV05X 8.2 @132 OMVA05X 7.2 @139 OMTR05X 6.2 @145 OMOF05X 7.2 @152 OMSL05X 6.2 @158 OMWC05X 6.2 @164 OMOR05X 7.2 @171 OMOU05X 7.2 @178 OMOT05X 7.2 @185 OMXP05X 8.2 @193 OMTC05X 8.2 @201 IMPFLAG 1.0 @202 PERWT05F 12.6 @214 VARSTR 3.0 @217 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. FFEEIDX $FFEEIDX. PANEL PANELF. OMTYPEX OMTYPEXF. OMTYPE OMTYPEF. OMOTHOX $OMOTHXF. OMOTHOS $OMOTHOF. FFOMTYPE FFOMTYPF. FFBEF05 FFBEF05F. OMSF05X OMSF05XF. OMMR05X OMMR05XF. OMMD05X OMMD05XF. OMPV05X OMPV05XF. OMVA05X OMVA05XF. OMTR05X OMTR05XF. OMOF05X OMOF05XF. OMSL05X OMSL05XF. OMWC05X OMWC05XF. OMOR05X OMOR05XF. OMOU05X OMOU05XF. OMOT05X OMOT05XF. OMXP05X OMXP05XF. OMTC05X OMTC05XF. IMPFLAG IMPFLAGF. PERWT05F PERWT05F. 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' OMTYPEX ='OTHER MEDICAL EXPENSE TYPE - EDITED' OMTYPE ='OTHER MEDICAL EXPENSE TYPE' OMOTHOX ='OMTYPE OTHER SPECIFY - EDITED' OMOTHOS ='OMTYPE OTHER SPECIFY' FFOMTYPE='FLAT FEE BUNDLE' FFBEF05 ='TOTAL # OF VISITS IN FF BEFORE 2005' OMSF05X ='AMOUNT PAID, FAMILY (IMPUTED)' OMMR05X ='AMOUNT PAID, MEDICARE (IMPUTED)' OMMD05X ='AMOUNT PAID, MEDICAID (IMPUTED)' OMPV05X ='AMOUNT PAID, PRIVATE INSURANCE (IMPUTED)' OMVA05X ='AMOUNT PAID, VETERANS (IMPUTED)' OMTR05X ='HC-AMTPD, TRICARE/CHAMPVA (IMPUTED)' OMOF05X ='AMOUNT PAID, OTHER FEDERAL (IMPUTED)' OMSL05X ='AMOUNT PAID, STATE & LOCAL GOV (IMPUTED)' OMWC05X ='AMOUNT PAID, WORKERS COMP (IMPUTED)' OMOR05X ='AMOUNT PAID, OTHER PRIVATE (IMPUTED)' OMOU05X ='AMOUNT PAID, OTHER PUBLIC (IMPUTED)' OMOT05X ='AMOUNT PAID, OTHER INSURANCE (IMPUTED)' OMXP05X ='SUM OF OMSF05X-OMOT05X (IMPUTED)' OMTC05X ='HHLD REPORTED TOTAL CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT05F='EXPENDITURE FILE PERSON WEIGHT, 2005' VARSTR ='VARIANCE ESTIMATION STRATUM, 2005' VARPSU ='VARIANCE ESTIMATION PSU, 2005' ; * 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 FFBEF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 2 = '1 - 2' ; 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 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 OMMD05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 41 = '$1.00 - $41.00' 41.01 - 114.8 = '$41.01 - $114.80' 114.81 - 246 = '$114.81 - $246.00' 246.01 - 6892.92 = '$246.01 - $6,892.92' ; VALUE OMMR05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4 - 50 = '$4.00 - $50.00' 50.01 - 140 = '$50.01 - $140.00' 140.01 - 300 = '$140.01 - $300.00' 300.01 - 10000 = '$300.01 - $10,000.00' ; VALUE OMOF05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 21 - 3000 = '$21.00 - $3,000.00' ; VALUE OMOR05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9 - 100 = '$9.00 - $100.00' 100.01 - 164 = '$100.01 - $164.00' 164.01 - 220 = '$164.01 - $220.00' 220.01 - 2802 = '$220.01 - $2,802.00' ; VALUE OMOT05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 24 = '$2.00 - $24.00' 24.01 - 133 = '$24.01 - $133.00' 133.01 - 346 = '$133.01 - $346.00' 346.01 - 1734 = '$346.01 - $1,734.00' ; VALUE $OMOTHOF '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' 'ACE BANDAGE/FOOT SUPPORT' = 'ACE BANDAGE/FOOT SUPPORT' 'AIR LIFT' = 'AIR LIFT' 'ANKLE SPLINT' = 'ANKLE SPLINT' 'B/K 30-40 MMHG HOSE' = 'B/K 30-40 MMHG HOSE' 'BACK BRACE' = 'BACK BRACE' 'BACK SUPPORT BAND' = 'BACK SUPPORT BAND' 'BANDAGES' = 'BANDAGES' 'BANDAGES FOR CUTS/ETC' = 'BANDAGES FOR CUTS/ETC' 'BED RAILS' = 'BED RAILS' 'BED, LIFT,' = 'BED, LIFT,' 'BLOOD PRESSURE METER' = 'BLOOD PRESSURE METER' 'BLOOD PRESSURE MONITOR' = 'BLOOD PRESSURE MONITOR' 'BLOOD WORK QUEST DIAGNOST' = 'BLOOD WORK QUEST DIAGNOST' 'BRACE, SYRINGS,BANDAGES' = 'BRACE, SYRINGS,BANDAGES' 'BREAST PUMP' = 'BREAST PUMP' 'C PATH' = 'C PATH' 'C-PAP BREATHING MASK' = 'C-PAP BREATHING MASK' 'CANE' = 'CANE' 'CANE WALKER' = 'CANE WALKER' 'CANE/CRUCHES' = 'CANE/CRUCHES' 'CANES' = 'CANES' 'CANES,WALKER' = 'CANES,WALKER' 'CARPEL TUNNEL SPLINT' = 'CARPEL TUNNEL SPLINT' 'CATHER' = 'CATHER' 'CATHETER' = 'CATHETER' 'CORRECTIVE SHOES' = 'CORRECTIVE SHOES' 'CORRECTIVE SHOES/ORTHOTIC' = 'CORRECTIVE SHOES/ORTHOTIC' 'COUNCELING' = 'COUNCELING' 'CPAP' = 'CPAP' 'CPAP-SLEEP APNEA' = 'CPAP-SLEEP APNEA' 'CPM MACHINE' = 'CPM MACHINE' 'CRUTCHES' = 'CRUTCHES' 'DIAGNOSTIC TESTS' = 'DIAGNOSTIC TESTS' 'DIALYSIS SUPPLIES' = 'DIALYSIS SUPPLIES' 'DOOR REPAIR FOR EQUIP FIT' = 'DOOR REPAIR FOR EQUIP FIT' 'DOPHO SHOES' = 'DOPHO SHOES' 'ELASTIC WRIST BANDAGE' = 'ELASTIC WRIST BANDAGE' 'ELASTICIZED STOCKINGS' = 'ELASTICIZED STOCKINGS' 'ELECTRIC COOLING PAD' = 'ELECTRIC COOLING PAD' 'EXERCISE BIKE' = 'EXERCISE BIKE' 'FEEDING BAGS AND TUBES' = 'FEEDING BAGS AND TUBES' 'FLU SHOT' = 'FLU SHOT' 'HEARING TEST' = 'HEARING TEST' 'HITCH TO LIFT WHEELCHAIR' = 'HITCH TO LIFT WHEELCHAIR' 'HOSPITAL BED' = 'HOSPITAL BED' 'HOSPITAL TYPE BED' = 'HOSPITAL TYPE BED' 'IV STEEL STAND POLE' = 'IV STEEL STAND POLE' 'LIFT CHAIR' = 'LIFT CHAIR' 'MACHINE DEPENSES ALBERTER' = 'MACHINE DEPENSES ALBERTER' 'MASK FOR SLEEP APNIA' = 'MASK FOR SLEEP APNIA' 'MASSAGE THERAPY' = 'MASSAGE THERAPY' 'MASSAGES' = 'MASSAGES' 'MEALS AND CLEANING' = 'MEALS AND CLEANING' 'NEBULIZER' = 'NEBULIZER' 'O2 AND EQUIP RENTAL' = 'O2 AND EQUIP RENTAL' 'ORTHOPEDIC INSERTS' = 'ORTHOPEDIC INSERTS' 'ORTHOPEDICS SHOES INSERTS' = 'ORTHOPEDICS SHOES INSERTS' 'ORTHOTICS' = 'ORTHOTICS' 'OVER COUNTER MEDS' = 'OVER COUNTER MEDS' 'OXYGEN' = 'OXYGEN' 'OXYGEN MACHINE' = 'OXYGEN MACHINE' 'OXYGEN, SUCTION CATHATER' = 'OXYGEN, SUCTION CATHATER' 'PLASMA' = 'PLASMA' 'POWER WHEEL CHAIR' = 'POWER WHEEL CHAIR' 'RAIL OUTSIDE FRONT DOOR' = 'RAIL OUTSIDE FRONT DOOR' 'RAMP FOR VAN' = 'RAMP FOR VAN' 'RASCAL SCOOTER' = 'RASCAL SCOOTER' 'REFILL' = 'REFILL' 'ROLLING WALKER' = 'ROLLING WALKER' 'ROOM VAPORIZER' = 'ROOM VAPORIZER' 'SEEING GLASSES' = 'SEEING GLASSES' 'SHOE INSERTS' = 'SHOE INSERTS' 'SHOE LIFT' = 'SHOE LIFT' 'SLEEP APNEA MONITOR' = 'SLEEP APNEA MONITOR' 'SPEAKER FOR TV' = 'SPEAKER FOR TV' 'SPECIAL BED' = 'SPECIAL BED' 'SPECIAL BRAS' = 'SPECIAL BRAS' 'SPECIAL COMPUTER EQUIP' = 'SPECIAL COMPUTER EQUIP' 'SPECIAL PHONE AMP' = 'SPECIAL PHONE AMP' 'SPECIAL SHOES' = 'SPECIAL SHOES' 'SPECIAL TAPE FOR BANDAGE' = 'SPECIAL TAPE FOR BANDAGE' 'SPECIAL TRIKES' = 'SPECIAL TRIKES' 'TAPE FOR CATHETERS' = 'TAPE FOR CATHETERS' 'TEDS SOCKS' = 'TEDS SOCKS' 'TENS ELECTRODES' = 'TENS ELECTRODES' 'TOILET' = 'TOILET' 'UNDER PADS' = 'UNDER PADS' 'VAPORIZER' = 'VAPORIZER' 'WALKER' = 'WALKER' 'WALKER SEAT' = 'WALKER SEAT' 'WALKING CANE' = 'WALKING CANE' 'WHEELCAHIR RENTAL' = 'WHEELCAHIR RENTAL' 'WHEELCHAIR' = 'WHEELCHAIR' 'WHEELCHAIR, WALKER' = 'WHEELCHAIR, WALKER' 'WRIST BRACE' = 'WRIST BRACE' ; VALUE $OMOTHXF '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' 'B/K 30-40 MMHG HOSE' = 'B/K 30-40 MMHG HOSE' 'BLOOD WORK QUEST DIAGNOST' = 'BLOOD WORK QUEST DIAGNOST' 'BREAST PUMP' = 'BREAST PUMP' 'COUNCELING' = 'COUNCELING' 'DIAGNOSTIC TESTS' = 'DIAGNOSTIC TESTS' 'DOPHO SHOES' = 'DOPHO SHOES' 'ELECTRIC COOLING PAD' = 'ELECTRIC COOLING PAD' 'EXERCISE BIKE' = 'EXERCISE BIKE' 'FLU SHOT' = 'FLU SHOT' 'HEARING TEST' = 'HEARING TEST' 'HITCH TO LIFT WHEELCHAIR' = 'HITCH TO LIFT WHEELCHAIR' 'MASSAGE THERAPY' = 'MASSAGE THERAPY' 'MASSAGES' = 'MASSAGES' 'MEALS AND CLEANING' = 'MEALS AND CLEANING' 'OVER COUNTER MEDS' = 'OVER COUNTER MEDS' 'PLASMA' = 'PLASMA' 'REFILL' = 'REFILL' 'ROOM VAPORIZER' = 'ROOM VAPORIZER' 'SPEAKER FOR TV' = 'SPEAKER FOR TV' 'SPECIAL COMPUTER EQUIP' = 'SPECIAL COMPUTER EQUIP' 'SPECIAL TRIKES' = 'SPECIAL TRIKES' ; VALUE OMOU05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.1 - 80 = '$4.10 - $80.00' 80.01 - 159.9 = '$80.01 - $159.90' 159.91 - 246 = '$159.91 - $246.00' 246.01 - 3444 = '$246.01 - $3,444.00' ; VALUE OMPV05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 69 = '$1.00 - $69.00' 69.01 - 135 = '$69.01 - $135.00' 135.01 - 225 = '$135.01 - $225.00' 225.01 - 16907 = '$225.01 - $16,907.00' ; VALUE OMSF05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 55 = '$1.00 - $55.00' 55.01 - 125 = '$55.01 - $125.00' 125.01 - 237 = '$125.01 - $237.00' 237.01 - 8381 = '$237.01 - $8,381.00' ; VALUE OMSL05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 25 = '$5.00 - $25.00' 25.01 - 51 = '$25.01 - $51.00' 51.01 - 125 = '$51.01 - $125.00' 125.01 - 653 = '$125.01 - $653.00' ; VALUE OMTC05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 75 = '$5.00 - $75.00' 75.01 - 167 = '$75.01 - $167.00' 167.01 - 300 = '$167.01 - $300.00' 300.01 - 17000 = '$300.01 - $17,000.00' ; VALUE OMTR05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 23 = '$2.00 - $23.00' 23.01 - 86.33 = '$23.01 - $86.33' 86.34 - 235 = '$86.34 - $235.00' 235.01 - 800 = '$235.01 - $800.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 OMVA05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 47 = '$5.00 - $47.00' 47.01 - 97.17 = '$47.01 - $97.17' 97.18 - 305 = '$97.18 - $305.00' 305.01 - 3000 = '$305.01 - $3,000.00' ; VALUE OMWC05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 13 - 70 = '$13.00 - $70.00' 70.01 - 92.5 = '$70.01 - $92.50' 92.51 - 173 = '$92.51 - $173.00' 173.01 - 595 = '$173.01 - $595.00' ; VALUE OMXP05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.1 - 70 = '$4.10 - $70.00' 70.01 - 160 = '$70.01 - $160.00' 160.01 - 294 = '$160.01 - $294.00' 294.01 - 16930 = '$294.01 - $16,930.00' ; VALUE PANELF 9 = 'PANEL 9' 10 = 'PANEL 10' ; VALUE PERWT05F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 407.056011 - 53472.330868 = '407.056011 - 53472.330868 WEIGHT' ; VALUE PID OTHER = 'VALID ID' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1 - 203 = '1 - 203' ;