This is incomplete just because I am lazy, but the following will pull a list of views based on the table name specified ni the query. You could use the results of it to match part number to column name in some fasion:
select tabname,owner,partnum,tabid
from systables where tabid in
(select dtabid from sysdepend where btabid in
(select tabid from systables where tabname = 'sometable'))