<?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 PROC GAM I don't want print the out put to out put window i used the noprint but it won't work in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GAM-I-don-t-want-print-the-out-put-to-out-put-window-i-used/m-p/225626#M53954</link>
    <description>&lt;P&gt;Hi User,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using procedure called &lt;STRONG&gt;PROC GAM&lt;/STRONG&gt; I don't want to print the results in to out put window i used the noprint but it won't work with &lt;STRONG&gt;PROC GAM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Can some body suggest me how to make results into nonprintable in PROC GAM &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thanks,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Veera&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Sep 2015 15:29:23 GMT</pubDate>
    <dc:creator>veera</dc:creator>
    <dc:date>2015-09-15T15:29:23Z</dc:date>
    <item>
      <title>PROC GAM I don't want print the out put to out put window i used the noprint but it won't work</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GAM-I-don-t-want-print-the-out-put-to-out-put-window-i-used/m-p/225626#M53954</link>
      <description>&lt;P&gt;Hi User,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using procedure called &lt;STRONG&gt;PROC GAM&lt;/STRONG&gt; I don't want to print the results in to out put window i used the noprint but it won't work with &lt;STRONG&gt;PROC GAM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Can some body suggest me how to make results into nonprintable in PROC GAM &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thanks,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Veera&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2015 15:29:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GAM-I-don-t-want-print-the-out-put-to-out-put-window-i-used/m-p/225626#M53954</guid>
      <dc:creator>veera</dc:creator>
      <dc:date>2015-09-15T15:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM I don't want print the out put to out put window i used the noprint but it won't work</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GAM-I-don-t-want-print-the-out-put-to-out-put-window-i-used/m-p/225630#M53955</link>
      <description>&lt;P&gt;One way to prevent output from appearing in the output window is to use ODS destination controls:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE; /* LISTING is name of the output window for procedures*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt; your procedures and such&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS LISTING; /* for when you want to resume sending to output window*/&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2015 15:43:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GAM-I-don-t-want-print-the-out-put-to-out-put-window-i-used/m-p/225630#M53955</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-09-15T15:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GAM I don't want print the out put to out put window i used the noprint but it won't work</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GAM-I-don-t-want-print-the-out-put-to-out-put-window-i-used/m-p/225652#M53958</link>
      <description>&lt;P&gt;ballardw has the right idea, but use&lt;/P&gt;&lt;P&gt;ODS EXCLUDE ALL;&lt;/P&gt;&lt;P&gt;proc gam;&lt;/P&gt;&lt;P&gt;/* ... */&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ODS EXCLUDE NONE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This code is more portable, and if you are running SAS in the Windowing Environment, EG, or SAS Studio, the LISTING destination is not open by default.&amp;nbsp; For more thoughts on ODS EXCLUDE and the LISTING destination, see &lt;A href="http://blogs.sas.com/content/iml/2015/05/28/five-reasons-ods-exclude.html" target="_self"&gt;"Five reasons to use ODS EXCLUDE to suppress SAS output."&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2015 17:15:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GAM-I-don-t-want-print-the-out-put-to-out-put-window-i-used/m-p/225652#M53958</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2015-09-15T17:15:02Z</dc:date>
    </item>
  </channel>
</rss>

