<?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: No errors but can't see the output after running the code in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/552177#M9125</link>
    <description>&lt;P&gt;I added the semicolon, thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I don't see any output still.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Apr 2019 16:27:16 GMT</pubDate>
    <dc:creator>AJ_Brien</dc:creator>
    <dc:date>2019-04-18T16:27:16Z</dc:date>
    <item>
      <title>No errors but can't see the output after running the code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/551891#M9066</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to test something very basic.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nocenter source2 mlogic symbolgen nomprint

%let unix_out = abc;

%put unix_out;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I run this, I get this in the log window and nothing else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 The SAS System 14:34 Wednesday, April 17, 2019&lt;/P&gt;&lt;P&gt;1 %_eg_gridprologue;&lt;BR /&gt;NOTE: Remote submit to GRID commencing.&lt;BR /&gt;NOTE: Remote submit to GRID complete.&lt;BR /&gt;2 %_eg_gridclientepilogue;&lt;BR /&gt;3 %let _EGRC=&amp;amp;_EGRCGRID;&lt;BR /&gt;4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate any help!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 20:47:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/551891#M9066</guid>
      <dc:creator>AJ_Brien</dc:creator>
      <dc:date>2019-04-17T20:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: No errors but can't see the output after running the code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/551906#M9070</link>
      <description>&lt;P&gt;Classic missing semicolon:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nocenter source2 mlogic symbolgen nomprint; * &amp;lt;=== semicolon here;

%let unix_out = abc;

%put &amp;amp;unix_out;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Apr 2019 21:23:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/551906#M9070</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-04-17T21:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: No errors but can't see the output after running the code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/552177#M9125</link>
      <description>&lt;P&gt;I added the semicolon, thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I don't see any output still.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 16:27:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/552177#M9125</guid>
      <dc:creator>AJ_Brien</dc:creator>
      <dc:date>2019-04-18T16:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: No errors but can't see the output after running the code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/552178#M9126</link>
      <description>&lt;P&gt;I've tried the following to see if any of these might work, but they didn't&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token macrostatement"&gt;%put&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;unix_out.&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token macrostatement"&gt;%put&lt;/SPAN&gt; unix_out&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token macrostatement"&gt;%put&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;unix_out&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 16:30:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/552178#M9126</guid>
      <dc:creator>AJ_Brien</dc:creator>
      <dc:date>2019-04-18T16:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: No errors but can't see the output after running the code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/555734#M9722</link>
      <description>Just to close the thread:&lt;BR /&gt;&lt;BR /&gt;simply using %put as mentioned above never worked for me.&lt;BR /&gt;&lt;BR /&gt;The only thing that did work was :&lt;BR /&gt;%put &amp;amp;=unix_out;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 May 2019 19:27:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/No-errors-but-can-t-see-the-output-after-running-the-code/m-p/555734#M9722</guid>
      <dc:creator>AJ_Brien</dc:creator>
      <dc:date>2019-05-02T19:27:51Z</dc:date>
    </item>
  </channel>
</rss>

