<?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: Show only one specific output in SAS EG Result -SAS Report window in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Show-only-one-specific-output-in-SAS-EG-Result-SAS-Report-window/m-p/444705#M20610</link>
    <description>&lt;P&gt;Hi Kurt.&lt;/P&gt;&lt;P&gt;Thanks . If there is no other solution ,&amp;nbsp;I vil do as you say. However my SAS program is rather complicated and use macro's witch runs another macros, therefor I was thinking about applying somehow Dm clear "output". The problem is , that it&amp;nbsp;'s not working as I want it to.&lt;/P&gt;&lt;P&gt;Best regards !&lt;/P&gt;</description>
    <pubDate>Mon, 12 Mar 2018 11:17:40 GMT</pubDate>
    <dc:creator>Forca_DK</dc:creator>
    <dc:date>2018-03-12T11:17:40Z</dc:date>
    <item>
      <title>Show only one specific output in SAS EG Result -SAS Report window</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Show-only-one-specific-output-in-SAS-EG-Result-SAS-Report-window/m-p/444675#M20608</link>
      <description>&lt;P&gt;Dear friends.&lt;/P&gt;&lt;P&gt;When I am running&amp;nbsp; SAS EG( v&amp;nbsp;9.4)&amp;nbsp;programs,&amp;nbsp; the output in&amp;nbsp; Result- SAS report window appear&amp;nbsp;to be rather confusing , since it shows a lot of different&amp;nbsp; tabels witch are not importend for the users. I need to show only one table in that window, but I can't finde the right way to do so. I have been searching on the Communities, but&amp;nbsp;perhaps I&amp;nbsp;was searching&amp;nbsp;on&amp;nbsp;the wrong branch since&amp;nbsp;I did not find anything useful.&lt;/P&gt;&lt;P&gt;What can I don't want to show the to first reports , but only the last one ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Let say that I run the two &amp;nbsp;following&amp;nbsp; proc steps&amp;nbsp; and I only want to show&amp;nbsp; table for the last proc step ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;contents&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;= sashelp.CITIDAY; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;proc&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;print&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;= sashelp.class; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help me with that problem please ?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:48:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Show-only-one-specific-output-in-SAS-EG-Result-SAS-Report-window/m-p/444675#M20608</guid>
      <dc:creator>Forca_DK</dc:creator>
      <dc:date>2018-03-12T08:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Show only one specific output in SAS EG Result -SAS Report window</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Show-only-one-specific-output-in-SAS-EG-Result-SAS-Report-window/m-p/444677#M20609</link>
      <description>&lt;P&gt;Procedures that produce output usually have an option to suppress it, eg&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=sashelp.class out=test noprint;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;See the documentation for a given procedure to dteremine how to get rid of unwanted output.&lt;/P&gt;
&lt;P&gt;If a procedure step is written that it &lt;EM&gt;only&lt;/EM&gt; produces visual output (no out=dataset or similar defined), then comment that step with /* */, as it is not needed anyway.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 09:00:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Show-only-one-specific-output-in-SAS-EG-Result-SAS-Report-window/m-p/444677#M20609</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-12T09:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: Show only one specific output in SAS EG Result -SAS Report window</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Show-only-one-specific-output-in-SAS-EG-Result-SAS-Report-window/m-p/444705#M20610</link>
      <description>&lt;P&gt;Hi Kurt.&lt;/P&gt;&lt;P&gt;Thanks . If there is no other solution ,&amp;nbsp;I vil do as you say. However my SAS program is rather complicated and use macro's witch runs another macros, therefor I was thinking about applying somehow Dm clear "output". The problem is , that it&amp;nbsp;'s not working as I want it to.&lt;/P&gt;&lt;P&gt;Best regards !&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 11:17:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Show-only-one-specific-output-in-SAS-EG-Result-SAS-Report-window/m-p/444705#M20610</guid>
      <dc:creator>Forca_DK</dc:creator>
      <dc:date>2018-03-12T11:17:40Z</dc:date>
    </item>
  </channel>
</rss>

