HC16CSU.TXT File 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 or the ASCII data file 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. ****************************************************************************** The sample SAS programs provided in Sections A and B show how to create a permanent SAS dataset from the data file, for the HC16C File 1 data provided in this PUF release. A. A Sample SAS Program for Converting the SAS Transport File to a Permanent SAS Dataset The SAS transport file HC16CF1.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 HC16CF1.DAT to a SAS data set as described in Section B. 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\HC16CF1.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.HC16CF1; TITLE "List of Variables in MEPS HC16C SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.HC16CF1 (OBS=20); TITLE "First 20 Observations in MEPS HC16C 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) HC16C 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 HC16CF1.SD2 will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 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 HC16CF1.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\HC16CF1.DAT'; DATA PUFLIB.HC16CF1; INFILE IN1 LRECL=245; 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 (HC16CF1). In the example, after the successful completion of the DATA step, a PC file named HC16CF1.SD2 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 (245 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 HC16CF1.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., 245 for HC16CF1.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (247 for HC16CF1.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 (245 for HC16CF1.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 (HC16CF1.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. 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.HC16CF1; 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 'SD2') and format libraries (file name extension is 'SC2') 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.SC2. 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 each of the HC16C ASCII data files into a SAS data set and creating a SAS format library. *INPUT, LABEL, AND FORMAT STATEMENTS FOR USE WITH HC16C FILE 1; * INPUT STATEMENTS; INFILE IN LRECL=245; 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 FFBEF97 2.0 @100 FFTOT98 2.0 @102 OMSF97X 8.2 @110 OMMR97X 7.2 @117 OMMD97X 7.2 @124 OMPV97X 8.2 @132 OMVA97X 8.2 @140 OMCH97X 6.2 @146 OMOF97X 6.2 @152 OMSL97X 7.2 @159 OMWC97X 7.2 @166 OMOR97X 7.2 @173 OMOU97X 6.2 @179 OMOT97X 8.2 @187 OMXP97X 8.2 @195 OMTC97X 8.2 @203 IMPOMSLF 2.0 @205 IMPOMMCR 2.0 @207 IMPOMMCD 2.0 @209 IMPOMPRV 2.0 @211 IMPOMVA 2.0 @213 IMPOMCHM 2.0 @215 IMPOMOFD 2.0 @217 IMPOMSTL 2.0 @219 IMPOMWCP 2.0 @221 IMPOMOPR 2.0 @223 IMPOMOPU 2.0 @225 IMPOMOTH 2.0 @227 IMPOMCHG 2.0 @229 WTDPER97 12.6 @241 VARSTR97 3.0 @244 VARPSU97 2.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERSI. EVNTIDX $EVNTIDX. EVENTRN EVENTRN. FFEEIDX $FFEEIDX. OMTYPEX OMTYPE. OMTYPE OMTYPE. OMOTHOX $OMOTHOS. OMOTHOS $OMOTHOS. FFOMTYPE OMFFTYPE. FFBEF97 FFBEF9G. FFTOT98 FFTOT9H. OMSF97X OMSF97G. OMMR97X OMMR97G. OMMD97X OMMD97G. OMPV97X OMPV97G. OMVA97X OMVA97G. OMCH97X OMCH97G. OMOF97X OMOF97G. OMSL97X OMSL97G. OMWC97X OMWC97G. OMOR97X OMOR97G. OMOU97X OMOU97G. OMOT97X OMOT97G. OMXP97X OMXP97G. OMTC97X OMTC97G. IMPOMSLF IMPOMSLF. IMPOMMCR IMPOMMCR. IMPOMMCD IMPOMMCD. IMPOMPRV IMPOMPRV. IMPOMVA IMPOMVA. IMPOMCHM IMPOMCHM. IMPOMOFD IMPOMOFD. IMPOMSTL IMPOMSTL. IMPOMWCP IMPOMWCP. IMPOMOPR IMPOMOPR. IMPOMOPU IMPOMOPU. IMPOMOTH IMPOMOTH. IMPOMCHG IMPOMCHG. WTDPER97 WTDPER9G. VARSTR97 VARSTR9G. VARPSU97 VARPSU9G. ; * 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' FFBEF97 ='TOTAL # OF VISITS IN FF BEFORE 1997' FFTOT98 ='TOTAL # OF VISITS IN FF AFTER 1997' OMSF97X ='AMOUNT PAID,FAMILY (IMPUTED)' OMMR97X ='AMOUNT PAID,MEDICARE(IMPUTED)' OMMD97X ='AMOUNT PAID,MEDICAID (IMPUTED)' OMPV97X ='AMOUNT PAID,PRIVATE INSURANCE (IMPUTED)' OMVA97X ='AMOUNT PAID,VETERANS(IMPUTED)' OMCH97X ='AMOUNT PAID,CHAMPUS/CHAMPVA (IMPUTED)' OMOF97X ='AMOUNT PAID,OTHER FEDERAL (IMPUTED)' OMSL97X ='AMOUNT PAID,STATE & LOCAL GOV (IMPUTED)' OMWC97X ='AMOUNT PAID,WORKERS COMP (IMPUTED)' OMOR97X ='AMOUNT PAID,OTHER PRIVATE (IMPUTED)' OMOU97X ='AMOUNT PAID,OTHER PUBLIC (IMPUTED)' OMOT97X ='AMOUNT PAID,OTHER INSURANCE (IMPUTED)' OMXP97X ='SUM OF PAYMENTS OMSF97X-OMOT97X(IMPUTED)' OMTC97X ='HHLD REPORTED TOTAL CHARGE (IMPUTED)' IMPOMSLF='IMPUTATION FLAG FOR OMSF97X' IMPOMMCR='IMPUTATION FLAG FOR OMMR97X' IMPOMMCD='IMPUTATION FLAG FOR OMMD97X' IMPOMPRV='IMPUTATION FLAG FOR OMPV97X' IMPOMVA ='IMPUTATION FLAG FOR OMVA97X' IMPOMCHM='IMPUTATION FLAG FOR OMCH97X' IMPOMOFD='IMPUTATION FLAG FOR OMOF97X' IMPOMSTL='IMPUTATION FLAG FOR OMSL97X' IMPOMWCP='IMPUTATION FLAG FOR OMWC97X' IMPOMOPR='IMPUTATION FLAG FOR OMOR97X' IMPOMOPU='IMPUTATION FLAG FOR OMOU97X' IMPOMOTH='IMPUTATION FLAG FOR OMOT97X' IMPOMCHG='IMPUTATION STATUS OF OMTC97X' WTDPER97='POVERTY/MORTALITY ADJ PERSON LEVL WGT-97' VARSTR97='VARIANCE ESTIMATION STRATUM' VARPSU97='VARIANCE ESTIMATION PSU 1997' ; *INPUT, LABEL, AND FORMAT STATEMENTS FOR USE WITH HC16C FILE 2; * INPUT STATEMENTS; INFILE IN LRECL=134; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 HHSFFIDX $10.0 @39 OMSF97H 8.2 @47 OMMR97H 7.2 @54 OMMD97H 5.2 @59 OMPV97H 8.2 @67 OMVA97H 5.2 @72 OMCH97H 5.2 @77 OMOF97H 6.2 @83 OMSL97H 7.2 @90 OMWC97H 7.2 @97 OMUC97H 6.2 @103 OMOT97H 7.2 @110 OMTC97H 8.2 @118 WTDPER97 12.6 @130 VARSTR97 3.0 @133 VARPSU97 2.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERSI. EVNTIDX $EVNTIDX. HHSFFIDX $HHSFFID. OMSF97H OMSF97H. OMMR97H OMMR97H. OMMD97H OMMD97H. OMPV97H OMPV97H. OMVA97H OMVA97H. OMCH97H OMCH97H. OMOF97H OMOF97H. OMSL97H OMSL97H. OMWC97H OMWC97H. OMUC97H OMUC97H. OMOT97H OMOT97H. OMTC97H OMTC97H. WTDPER97 WTDPER9G. VARSTR97 VARSTR9G. VARPSU97 VARPSU9G. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='PERSON NUMBER' DUPERSID='PERSON ID (DUID+PID)' EVNTIDX ='EVENT ID' HHSFFIDX='HOUSEHOLD REPORTD FLAT FEE ID(UNEDITED)' OMSF97H ='HHLD RPTD AMT PD, FAMILY(PRE-IMPUTED)' OMMR97H ='HHLD RPTD AMT PD, MEDICARE(PRE-IMPUTED)' OMMD97H ='HHLD RPTD AMT PD, MEDICAID(PRE-IMPUTED)' OMPV97H ='HHLD RPTD AMT PD, PRIV INS(PRE-IMPUTED)' OMVA97H ='HHLD RPTD AMT PD, VETERANS(PRE-IMPUTED)' OMCH97H ='HHLD RPTD AMT PD,CHMP/CHPVA(PRE-IMPUTED)' OMOF97H ='HHLD RPTD AMT PD, OTHER FED(PRE-IMPUTED)' OMSL97H ='HHLD RPTD AMT PD, STATE/LOC(PRE-IMPUTED)' OMWC97H ='HHLD RPTD AMT PD, WORK COMP(PRE-IMPUTED)' OMUC97H ='HHLD RPTD AMT PD,UNCOL LIAB(PRE-IMPUTED)' OMOT97H ='HHLD RPTD AMT PD, OTH INSUR(PRE-IMPUTED)' OMTC97H ='HHLD REPORTED TOTAL CHARGE(PRE-IMPUTED)' WTDPER97='POVERTY/MORTALITY ADJ PERSON LEVL WGT-97' VARSTR97='VARIANCE ESTIMATION STRATUM' VARPSU97='VARIANCE ESTIMATION PSU 1997' ; * VALUE STATEMENTS FOR CREATING A FORMAT LIBRARY FOR USE WITH FILES 1 AND 2; VALUE PID 10 - 138 = 'VALID ID' ; VALUE $EVNTIDX "000060180252"-"362840370111"="VALID ID" ; VALUE EVENTRN 1='1' 2='2' 3='3' 4='4' 5='5'; VALUE DUID 6-36284='VALID ID'; VALUE $DUPERSI "00006018"-"36284037"="VALID ID"; VALUE $FFEEIDX "-1"="-1" "0176901001"-"3609001301"="VALID ID"; VALUE FFBEF9G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 1 - 4 = ' 1 - 4' ; VALUE FFTOT9H -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 1 - 3 = ' 1 - 3' ; VALUE IMPOMCHG -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED TLCHRG' 1 = " 1 FAC IMP DONOR'S TLCHRG" 2 = ' 2 IMPUTED TLCHRG' 3 = ' 3 BOTH-RECIPIENTS AND DONORS' ; VALUE IMPOMCHM -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMMCD -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMMCR -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMOFD -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMOPR -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMOPU -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMOTH -1='-1 INAPPLICABLE' 0 =' 0 UNIMPUTED' 1 =' 1 IMPUTED'; VALUE IMPOMPRV -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMSLF -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMSTL -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMVA -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE IMPOMWCP -1 = '-1 INAPPLICABLE' 0 = ' 0 UNIMPUTED' 1 = ' 1 IMPUTED' ; VALUE $OMOTHOS '-1' = '-1 INAPPLICABLE' '-9' = '-9 NOT ASCERTAINED' ' '=' ' OTHER = ' TEXT' ; VALUE OMCH97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 12.5-37='$12.50 - $37.00' 37<-55='$37.01 - $55.00' 55<-80='$55.01 - $80.00' 80<-144='$80.01 - $144.00'; VALUE OMXP97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 1-56='$1.00 - $56.00' 56<-126='$56.01 - $126.00' 126<-231.2='$126.01 - $231.20' 231.2<-42400='$231.21 - $42400.00'; VALUE OMFFTYPE -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = ' 1 FLAT FEE STEM' 2 = ' 2 FLAT FEE LEAF' ; VALUE OMMD97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 0.82-40.18='$0.82 - $40.18' 40.18<-90.2='$40.19 - $90.20' 90.2<-186.14='$90.21 - $186.14' 186.14<-4493.6='$186.15 - $4493.60'; VALUE OMMR97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 5-57='$5.00 - $57.00' 57<-107='$57.01 - $107.00' 107<-320='$107.01 - $320.00' 320<-6000='$320.01 - $6000.00'; VALUE OMOF97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 16-54='$16.00 - $54.00' 54<-139='$54.01 - $139.00' 139<-250='$139.01 - $250.00' 250<-600='$250.01 - $600.00'; VALUE OMOR97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 5-50='$5.00 - $50.00' 50<-133='$50.01 - $133.00' 133<-240='$133.01 - $240.00' 240<-2000='$240.01 - $2000.00'; VALUE OMOU97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 16.4-20.5='$16.40 - $20.50' 20.5<-56.17='$20.51 - $56.17' 56.17<-258.84='$56.18 - $258.84' 258.84<-566.62='$258.85 - $566.62'; VALUE OMOT97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 5-75='$5.00 - $75.00' 75<-150='$75.01 - $150.00' 150<-248='$150.01 - $248.00' 248<-12000='$248.01 - $12000.00'; VALUE OMPV97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 3-45='$3.00 - $45.00' 45<-98='$45.01 - $98.00' 98<-180='$98.01 - $180.00' 180<-42400='$180.01 - $42400.00'; VALUE OMSF97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 1-50='$1.00 - $50.00' 50<-109='$50.01 - $109.00' 109<-200='$109.01 - $200.00' 200<-21200='$200.01 - $21200.00'; VALUE OMSL97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 23-112='$23.00 - $112.00' 112<-167='$112.01 - $167.00' 167<-200='$167.01 - $200.00' 200<-6000='$200.01 - $6000.00'; VALUE OMTC97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 1-60='$1.00 - $60.00' 60<-135='$60.01 - $135.00' 135<-244='$135.01 - $244.00' 244<-42400='$244.01 - $42400.00'; VALUE OMTYPE -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 OMVA97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 8-50='$8.00 - $50.00' 50<-150='$50.01 - $150.00' 150<-376='$150.01 - $376.00' 376<-21200='$376.01 - $21200.00'; VALUE OMWC97G -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 10-44='$10.00 - $44.00' 44<-110='$44.01 - $110.00' 110<-300='$110.01 - $300.00' 300<-1500='$300.01 - $1500.00'; VALUE VARPSU9G 1 - 34 = '1 - 34' ; VALUE VARSTR9G 1 - 254 = '1 - 254' ; VALUE WTDPER9G 0='0' 564.675612 - 66983.924524 = '564.675612 - 66983.924524' ; VALUE $HHSFFID "-1"="-1" "0008201701"-"3628302501"="VALID ID"; VALUE OMCH97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' ; VALUE OMMD97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' ; VALUE OMMR97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 7-55='$7.00 - $55.00' 55<-105='$55.01 - $105.00' 105<-320='$105.01 - $320.00' 320<-4392='$320.01 - $4392.00'; VALUE OMOF97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 54-54='$54.00 - $54.00' 54<-327='$54.01 - $327.00' 327<-600='$327.01 - $600.00' 600<-600='$600.01 - $600.00'; VALUE OMOT97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 38-72.5='$38.00 - $72.50' 72.5<-142='$72.51 - $142.00' 142<-207.5='$142.01 - $207.50' 207.5<-3200='$207.51 - $3200.00'; VALUE OMPV97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 3-60='$3.00 - $60.00' 60<-100='$60.01 - $100.00' 100<-169='$100.01 - $169.00' 169<-42400='$169.01 - $42400.00'; VALUE OMSF97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 1-48='$1.00 - $48.00' 48<-105='$48.01 - $105.00' 105<-200='$105.01 - $200.00' 200<-10000='$200.01 - $10000.00'; VALUE OMSL97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 59-101='$59.00 - $101.00' 101<-176.5='$101.01 - $176.50' 176.5<-910.5='$176.51 - $910.50' 910.5<-6000='$910.51 - $6000.00'; VALUE OMTC97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 1-60='$1.00 - $60.00' 60<-136='$60.01 - $136.00' 136<-235='$136.01 - $235.00' 235<-42400='$235.01 - $42400.00'; VALUE OMUC97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 50-415 = '$50.00-$415.00' ; VALUE OMVA97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' ; VALUE OMWC97H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = ' 0' 15-35='$15.00 - $35.00' 35<-44='$35.01 - $44.00' 44<-376='$44.01 - $376.00' 376<-1200='$376.01 - $1200.00';