Search notes:

SAS: dictionary.macros

The dictionary.macros table can be used to query existing macro variables.

Describe

proc sql;
  describe table dictionary.macros;
quit;

/*
create table DICTIONARY.MACROS
  (
   scope char(32) label='Macro Scope',
   name char(32) label='Macro Variable Name',
   offset num label='Offset into Macro Variable',
   value char(200) label='Macro Variable Value'
  );
*/
Github repository about-SAS, path: /programming/dictionary/macros.sas

scope

The column scope indicates whether a variable is local or global.

See also

dictionary tables
macros

Index