How would I call a Stored Procedure that returns data in a View? Is this even possible?
create view sampleView as
select field1, field2, ...
from dbo.MyTableValueFunction
Note that even if your MyTableValueFunction doesn't accept any parameters, you still need to include parentheses after it, i.e.:
... from dbo.MyTableValueFunction()
Without the parentheses, you'll get an "Invalid object name" error.