Approach No. 1
Right-click the table name and select "View Dependencies", as shown below, we look at the dependencies for the Employee table.

Approach No. 2
SELECT
routine_name,
routine_type
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%Your Object Name%'
№ 3
EXEC sp_depends 'Your Object Name'
№ 4
SELECT referencing_schema_name, referencing_entity_name,
referencing_id, referencing_class_desc, is_caller_dependent
FROM sys.dm_sql_referencing_entities ('Your Object Name', 'OBJECT');
user1499112