Maybe what you need is SELECT INTO to create the table for you.
SELECT * INTO NewTable
FROM dbo.View
Refresh SSMS to see your table has been created.
You can also get the information related to each column of the view by running the following query:
SELECT * FROM information_schema.columns WHERE table_name = 'VIEW_NAME'