<?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 Using ODS Listing while suppressing ODS HTML in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648665#M194358</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to use code to suppress HTML output while keep the LISTING output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried running ODS HTML CLOSE; ODS LISTING;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I still get an html output along with the listing output.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sincerely,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;William Spagnola&lt;/P&gt;</description>
    <pubDate>Mon, 18 May 2020 19:11:06 GMT</pubDate>
    <dc:creator>whs278</dc:creator>
    <dc:date>2020-05-18T19:11:06Z</dc:date>
    <item>
      <title>Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648665#M194358</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to use code to suppress HTML output while keep the LISTING output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried running ODS HTML CLOSE; ODS LISTING;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I still get an html output along with the listing output.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sincerely,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;William Spagnola&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:11:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648665#M194358</guid>
      <dc:creator>whs278</dc:creator>
      <dc:date>2020-05-18T19:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648667#M194359</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods _all_ close;&lt;/P&gt;
&lt;P&gt;ods listing;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:13:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648667#M194359</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-05-18T19:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648668#M194360</link>
      <description>&lt;P&gt;Are you using EG, BASE or Studio? You may have options set elsewhere that may override your ODS settings.&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:14:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648668#M194360</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-05-18T19:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648669#M194361</link>
      <description>&lt;P&gt;I'm using EG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I noticed that ODS _ALL CLOSE; ODS LISTING; works for the first output I produce but HTML is produced for all subsequent output.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:19:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648669#M194361</guid>
      <dc:creator>whs278</dc:creator>
      <dc:date>2020-05-18T19:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648671#M194362</link>
      <description>&lt;P&gt;Tools &amp;gt; Options &amp;gt; General Results. Ensure HTML is not selected and Listing is selected.&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:24:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648671#M194362</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-05-18T19:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648674#M194363</link>
      <description>Thanks for the tip, Reeza.&lt;BR /&gt;&lt;BR /&gt;Is there a way to do this using code?  &lt;BR /&gt;&lt;BR /&gt;For example, I have a project with several programs.  Some of them produce tables and others produce graphs such as histograms.  &lt;BR /&gt;&lt;BR /&gt;I was wondering if there was a way to run code that would only produce HTML output for the programs that produce graphs and only produce LISTING output for the programs that produce tables.</description>
      <pubDate>Mon, 18 May 2020 19:29:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648674#M194363</guid>
      <dc:creator>whs278</dc:creator>
      <dc:date>2020-05-18T19:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648676#M194364</link>
      <description>&lt;P&gt;Not really sure what the advantage of having two types of output would be.&lt;/P&gt;
&lt;P&gt;If I don't like the tables HTML creates, and I can understand several reasons, I would use RTF or PDF output to have "nicer" tables but still have graphics output in the same document.&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:36:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648676#M194364</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-05-18T19:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648677#M194365</link>
      <description>&lt;P&gt;EG adds wrapper code that will likely overwrite what you have included. You'll first need to include it in ALL your programs to ensure your output is as desired. EG settings apply to the whole project so changing your default settings seems like the easiest method IMO.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TBH this is a slightly weird request, why not just output everything to the same output, PDF, Word, Excel or PowerPoint, HTML and control your styles to get what you need?&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:37:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648677#M194365</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-05-18T19:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648681#M194367</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yeah, I admit that it is probably not a typical request and will probably not make much sense, even if I try to explain it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, here is my explanation.&amp;nbsp; I actually don't want to create an output file.&amp;nbsp; I just want to have a file that I can quickly reference located in the Process Flow window.&amp;nbsp; I guess it would make sense to follow ballard's advice and use only one output that allows graphics instead of using ODS listing plus ODS html.&amp;nbsp; However, there is a few reasons why I would like to use ODS listing plus another output that supports graphs.&amp;nbsp; First, I find the table formats created by ODS listing to be more visually appealing. Second, using two different formats will help me remember which programs do what in a given EGP.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:51:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648681#M194367</guid>
      <dc:creator>whs278</dc:creator>
      <dc:date>2020-05-18T19:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using ODS Listing while suppressing ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648685#M194370</link>
      <description>Have you changed the style from HTMLBLUE? Honestly, styling/design is still one area where the default graphics really suck in SAS. I prefer using Meadow or Seaside or Journal if you prefer a more skeleton look.</description>
      <pubDate>Mon, 18 May 2020 20:14:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-ODS-Listing-while-suppressing-ODS-HTML/m-p/648685#M194370</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-05-18T20:14:29Z</dc:date>
    </item>
  </channel>
</rss>

