I have some fairly complex views and want to display the definition of the view columns in some way that's dynamic. So if it looks like this:
Create view vTest
As
Select MyTable.ColA as DisplayColA,
MyTable.ColB + MyTable.ColC as DisplayColB
FromMyTable
I want to be able to have a report where I can say
ViewColumnDefinition
vTestDisplayColBMyTable.ColB + MyTable.ColC