In my View, I need to Select ......... WHERE CustReportDT > @60DaysAgo
In stored procedures, I derive the value for @60DaysAgo then do the select but I need
to do the same in a view if possible.
Because a view cannot accept a parameter, do I have to create a UDF?
Thanks for your tips.