First thing to check ... is this actually part of your program:
set t. tomhscv
If so, you need to change it by removing the blank:
set t.tomhscv
If that doesn't solve things, you need to verify the spelling of the variable names in your data set:
proc contents data=t.tomhscv;
run;
... View more