<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to view Symbol Tables? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864754#M341477</link>
    <description>&lt;P&gt;Go with &lt;A title="Maxim 1" href="https://communities.sas.com/t5/SAS-Communities-Library/Maxims-of-Maximally-Efficient-SAS-Programmers/ta-p/352068" target="_self"&gt;Maxim 1&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Read&lt;/P&gt;
&lt;P&gt;1) here (whole branch):&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/n10i4tmalsyhgxn1hj4ud13ff074.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/n10i4tmalsyhgxn1hj4ud13ff074.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2) here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p0ivgabci0y2den1usf43mxdkpgp.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p0ivgabci0y2den1usf43mxdkpgp.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;3) here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p1lhhti7fjxgb1n1fuiubqk11h4d.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p1lhhti7fjxgb1n1fuiubqk11h4d.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
    <pubDate>Fri, 17 Mar 2023 07:36:14 GMT</pubDate>
    <dc:creator>yabwon</dc:creator>
    <dc:date>2023-03-17T07:36:14Z</dc:date>
    <item>
      <title>How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864249#M341326</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;
&lt;P&gt;Is there a quick way to view the Global or Local Symbol Table(s)? I wish to see my current macro variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 11:55:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864249#M341326</guid>
      <dc:creator>Nietzsche</dc:creator>
      <dc:date>2023-03-15T11:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864253#M341329</link>
      <description>&lt;P&gt;Look at SASHELP.VMACRO&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 12:02:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864253#M341329</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-03-15T12:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864255#M341331</link>
      <description>&lt;P&gt;You just submit&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put _user_;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to see the macro variables that you yourself have created, and&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put _automatic_;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To see the system generated macro variables.&lt;/P&gt;
&lt;P&gt;Inside a macro you can use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put _local_;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to see locally defined macros, and&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put _global_;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to see globally defined macro variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 12:07:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864255#M341331</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2023-03-15T12:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864256#M341332</link>
      <description>&lt;P&gt;... and:&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;%put _all_;&lt;/LI-CODE&gt;
&lt;P&gt;to see everything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 12:15:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864256#M341332</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-03-15T12:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864257#M341333</link>
      <description>&lt;P&gt;... or by SQL:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  select * from dictionary.macros;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 12:17:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864257#M341333</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-03-15T12:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864744#M341469</link>
      <description>&lt;P&gt;I tried&lt;/P&gt;
&lt;PRE&gt;%put _all_;  and&lt;BR /&gt;%put _local_;&lt;/PRE&gt;
&lt;P&gt;My local variables symbol tables are not being displayed.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does the &lt;FONT face="courier new,courier"&gt;%put _all_;&lt;/FONT&gt; and&amp;nbsp;&lt;FONT face="courier new,courier"&gt;%put _local_; &lt;FONT face="arial,helvetica,sans-serif"&gt;have to be inside the macro definition for it to be displayed in the log?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 06:49:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864744#M341469</guid>
      <dc:creator>Nietzsche</dc:creator>
      <dc:date>2023-03-17T06:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864750#M341474</link>
      <description>&lt;P&gt;Yes, local variables only exist inside the macro, so you have to put it inside the macro definition.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 07:03:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864750#M341474</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2023-03-17T07:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864751#M341475</link>
      <description>&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 07:24:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864751#M341475</guid>
      <dc:creator>Nietzsche</dc:creator>
      <dc:date>2023-03-17T07:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864754#M341477</link>
      <description>&lt;P&gt;Go with &lt;A title="Maxim 1" href="https://communities.sas.com/t5/SAS-Communities-Library/Maxims-of-Maximally-Efficient-SAS-Programmers/ta-p/352068" target="_self"&gt;Maxim 1&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Read&lt;/P&gt;
&lt;P&gt;1) here (whole branch):&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/n10i4tmalsyhgxn1hj4ud13ff074.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/n10i4tmalsyhgxn1hj4ud13ff074.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2) here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p0ivgabci0y2den1usf43mxdkpgp.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p0ivgabci0y2den1usf43mxdkpgp.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;3) here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p1lhhti7fjxgb1n1fuiubqk11h4d.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p1lhhti7fjxgb1n1fuiubqk11h4d.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 07:36:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864754#M341477</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-03-17T07:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to view Symbol Tables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864759#M341478</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35763"&gt;@yabwon&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Go with &lt;A title="Maxim 1" href="https://communities.sas.com/t5/SAS-Communities-Library/Maxims-of-Maximally-Efficient-SAS-Programmers/ta-p/352068" target="_self"&gt;Maxim 1&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Read&lt;/P&gt;
&lt;P&gt;1) here (whole branch):&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/n10i4tmalsyhgxn1hj4ud13ff074.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/n10i4tmalsyhgxn1hj4ud13ff074.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2) here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p0ivgabci0y2den1usf43mxdkpgp.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p0ivgabci0y2den1usf43mxdkpgp.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;3) here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p1lhhti7fjxgb1n1fuiubqk11h4d.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p1lhhti7fjxgb1n1fuiubqk11h4d.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Thank you for your input.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 09:02:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-view-Symbol-Tables/m-p/864759#M341478</guid>
      <dc:creator>Nietzsche</dc:creator>
      <dc:date>2023-03-17T09:02:07Z</dc:date>
    </item>
  </channel>
</rss>

