Hi,
sure, you need to alias it, e.g. SELECT CONVERT(VARCHAR(10), GETDATE(), 111) AS [MYDATE]
Don't forget to create a 'dummy' view containing the column MYDATE.
Or, if it's possible, create a view on your custom SQL. This is what I would recommend.
G.