The following SQL query will give you the File Event names (You would need DB Read Access, you can have a runtime user or run yourself)
SELECT [trgmst_name]
FROM [Admiral].[dbo].[trgmst]
WHERE [trgmst_type]=4
There query is simple enough to get a quick list of names however if you want more details or it to look like the GUI you will need to make multiple joins to other tidal tables (for owner, agent, etc.)
If you want some help let me know
Marc