You just want to know the child table names?

Normally if I dont use GUI tool I find out the PK of parent tables then using dba_constraints I find the child tables

select table_name
from dba_constraints where r_constraint_name='PARENT_TABLE_PK'

dunno if this helps you