Hi Valdette,
If you're going with Query Builder, the result will be the Object IDs.
You'll have to re-query these object IDs to get the report names.
Recommend:
//For searching for names of Reprots for one universe
select si_name, si_id from ci_infoobjects where si_id IN('ID1', 'ID2', etc.)
You could query ci_appobjects, using the "IN" filter for several Universes also to modify the query in my last output.
But this is how QB will display the result.
-Sid