The following is an example on how to search Foreign Keys using TSQL
Tested using MS SQL Server 2000-2017
-- List Foreign Key Constraints on table. Ex: D_TRANS_ACCOUNT_ENTRY
DECLARE @tableName sysname
SET @tableName = '...' -- Your table name goes here
SELECT