This is an oft-requested feature. It has been implemented in the upcoming SAS 9.2 release. Simply query SASHELP.VDEST, e.g.:
[pre]
proc print data=sashelp.vdest;run;
Obs destination style
1 LISTING Listing
2 HTML Default
3 RTF Rtf
NOTE: There were 3 observations read from the data set SASHELP.VDEST.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.03 seconds
cpu time 0.01 seconds
[/pre]
Note that there's a Listing style named ... well ... Listing. That was added in support of ODS graphics, which is another new SAS 9.2 feature.
-- David Kelley, SAS
... View more