Search notes:

SAS: dictionary.destinations

Describe

proc sql;
  describe table dictionary.destinations;
quit;
/*
create table DICTIONARY.DESTINATIONS
  (
   destination char(100) label='Destination',
   style char(32) label='Style'
  );
*/
Github repository about-SAS, path: /programming/dictionary/destinations/describe.sas

sashelp.vdest

The view sashelp.vdest is derived from dictionary.destinations.

Show ODS desinations

dictionary.destinations contains the open ODS destinations.
%macro ods_dest;
  proc sql flow=15;
    select * from dictionary.destinations;
  quit;
%mend ods_dest;

%ods_dest
/*
   Destination      Style
   --------------------------------
   LISTING          Listing
*/

ods html style=sasweb;
%ods_dest
/*
  Destination      Style
  --------------------------------
  LISTING          Listing
  HTML             SasWeb
*/

ods rtf;
%ods_dest
/*
  Destination      Style
  --------------------------------
  LISTING          Listing
  HTML             SasWeb
  RTF              Rtf
*/

ods html close;
%ods_dest
/*
   Destination      Style
   --------------------------------
   LISTING          Listing
   RTF              Rtf
*/
Github repository about-SAS, path: /programming/dictionary/destinations/show-ods-destinations.sas

See also

dictionary tables

Index