I need to get a list of the child tables for a given parent table and if possible the foreign keys. Here's the catch, I can't use FOREIGN KEY constraints and use triggers for RI instead and therefore I can't use SP_FKEYS
I think you could use sp_helptrigger to determine the name of the trigger for a given parent table, then use sp_depends to see the dependencies of the trigger.