It would be nice to know how to reference the macro variables in other tasks/code nodes.
After creating a prompt in Enterprise Guide, how can I see the macro variables the prompt creates?
2.9k Views Asked by Jay Corbett At
2
There are 2 best solutions below
0

Once the prompt has been executed, you can see declared macro variables, in the log, by executing the %Put statement (in a program/code node):
%put _all_; %* Lists the values of all user-generated and automatic macro vars ;
%put _automatic_; %* SAS macro vars. Depend on SAS version and products installed;
%put _global_; %* lists user-generated global macro vars;
%put _local_; %* lists user-generated local macro vars;
%put _user_; %* describes user-generated global and local macro vars ;
However, EG (ver 4.3 and 4.2) has an easy way to view the macro vars that are created by a prompt (which comes in handy when the prompt is a range type and creates multiple macro vars)
- From within EG choose the VIEW menu item,
- Then select PROMPT MANAGER
- Then right-click on your prompt and choose "Show Macro Variables..."
- A dialog will then display all macro variables
You could take a snapshot of SASHELP.VMACRO (macro variable dictionary table):
This can be handy if, for example, you want to compare the macro variables present at one point in a process versus those present at another point: