Easiest solution that I might have found is to create a table from the data you get from the SP. Then create a view from that:
Insert this at the last step when selecting data from the SP.
SELECT * into table1 FROM #Temp
create view vw_view1 as select * from table1