I think the table is discarded when the report is printed.
Anyway, during the existence of the table you will find it in the tempdb database. But I don't think you should pursue this path longer. Instead you need to figure out some other way to get this data.
For example, you can copy this table and make this copied version a non-temporary table.
Then, when data is inserted in the temp table, populate the same record in your normal table.
When you don't need the data anymore, delete it from your normal table.
Also this is a "quick and dirty" solution but since you requested for urgent help, perhaps you could try that.