A Combination of looking at dependencies and looking at the text of your objects should do it.
select * from sys.sql_modules
where
definition like '%tableName%'
/*AND objectproperty(object_id,'isprocedure')=1 to just look at procedures*/
exec sp_depends 'tableName'