<?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 do I access PDF and RTF to produce results? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-access-PDF-and-RTF-to-produce-results/m-p/694128#M25088</link>
    <description>&lt;P&gt;The best way to generate PDF, RTF or other types of files is generally use of ODS destination statements. You surround the code that generates the actual output with an ODS destination statement and close statements.&lt;/P&gt;
&lt;P&gt;Pseudo example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods rtf file="&amp;lt;path&amp;gt;\name.rtf" ;&lt;/P&gt;
&lt;P&gt;ods pdf file= "&amp;lt;path&amp;gt;\name.pdf";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt; procedure that generates output&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;other procedure that generates output&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods pdf close;&lt;/P&gt;
&lt;P&gt;ods rtf close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the &amp;lt;path&amp;gt; you need to replace with where you want the output to go. A fully qualified path from a drive or similar point is recommended. I don't speak MAC so am not sure of the syntax.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can send output to multiple destinations as above, the same output would go to both an RTF and PDF document. Be aware that each destination you use may have a different ODS Style by default, which controls, fonts, colors and other appearance options. So you may want to specify the specific output style using the STYLE=option on the destination statement. Each destination, RTF, PDF, EXCEL, Powerpoint, Html, Html5 and others have additional options.&lt;/P&gt;</description>
    <pubDate>Sun, 25 Oct 2020 20:26:02 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2020-10-25T20:26:02Z</dc:date>
    <item>
      <title>How do I access PDF and RTF to produce results?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-access-PDF-and-RTF-to-produce-results/m-p/694119#M25087</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help with accessing the option to produce a report from the Results tab to PDF or RTF format. I checked 'Preferences' and the settings appear correct, but since I am a new user I am unsure. My computer system is Mac OS Catalina. I have attached screenshots.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Oct 2020 18:49:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-access-PDF-and-RTF-to-produce-results/m-p/694119#M25087</guid>
      <dc:creator>LB5</dc:creator>
      <dc:date>2020-10-25T18:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access PDF and RTF to produce results?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-access-PDF-and-RTF-to-produce-results/m-p/694128#M25088</link>
      <description>&lt;P&gt;The best way to generate PDF, RTF or other types of files is generally use of ODS destination statements. You surround the code that generates the actual output with an ODS destination statement and close statements.&lt;/P&gt;
&lt;P&gt;Pseudo example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods rtf file="&amp;lt;path&amp;gt;\name.rtf" ;&lt;/P&gt;
&lt;P&gt;ods pdf file= "&amp;lt;path&amp;gt;\name.pdf";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt; procedure that generates output&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;other procedure that generates output&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods pdf close;&lt;/P&gt;
&lt;P&gt;ods rtf close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the &amp;lt;path&amp;gt; you need to replace with where you want the output to go. A fully qualified path from a drive or similar point is recommended. I don't speak MAC so am not sure of the syntax.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can send output to multiple destinations as above, the same output would go to both an RTF and PDF document. Be aware that each destination you use may have a different ODS Style by default, which controls, fonts, colors and other appearance options. So you may want to specify the specific output style using the STYLE=option on the destination statement. Each destination, RTF, PDF, EXCEL, Powerpoint, Html, Html5 and others have additional options.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Oct 2020 20:26:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-access-PDF-and-RTF-to-produce-results/m-p/694128#M25088</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-10-25T20:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I access PDF and RTF to produce results?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-access-PDF-and-RTF-to-produce-results/m-p/694812#M25147</link>
      <description>&lt;P&gt;Looks like you are using SAS Studio and that you have your preferences correctly set. After you run a process that creates a report, go to the RESULTS tab. In the upper left part of the tab, right above the Table of Contents, you should see buttons that allow you to download and open the PDF and Word documents. Clicking the button downloads that version of the report.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-10-28_7-26-58.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/51156i3DD7A0770C46C2B2/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-10-28_7-26-58.png" alt="2020-10-28_7-26-58.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I've set up Chrome (my preferred browser) to download to my Windows "Downloads" folder. So after the file finishes downloading, I can either open the Downloads folder in File Explorer to find my reports or I can use the shortcuts Chrome provides at the bottom of the page to open the files:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-10-28_7-30-26.png" style="width: 519px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/51155i439814A65DFE171C/image-dimensions/519x649?v=v2" width="519" height="649" role="button" title="2020-10-28_7-30-26.png" alt="2020-10-28_7-30-26.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Oct 2020 11:36:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-access-PDF-and-RTF-to-produce-results/m-p/694812#M25147</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2020-10-28T11:36:51Z</dc:date>
    </item>
  </channel>
</rss>

