<?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: My Proc print is not displaying on results viewer in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773230#M31154</link>
    <description>&lt;P&gt;thaks. I have done all that. I used the tool-option-preference-results function to try to reset. Now I have set my output to google chrome. I am still unable to view output in sas result viewer&lt;/P&gt;</description>
    <pubDate>Sat, 09 Oct 2021 19:30:36 GMT</pubDate>
    <dc:creator>Banke</dc:creator>
    <dc:date>2021-10-09T19:30:36Z</dc:date>
    <item>
      <title>My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772264#M31045</link>
      <description>&lt;P&gt;Hello all, i observed my proc print does not show in my results viewer and there is no error in my log. Has anyone please encountered this? what can i do please? I use a SAS 9.4 windowing environment.&lt;/P&gt;
&lt;P&gt;An example:&lt;/P&gt;
&lt;P&gt;PROC PRINT DATA = WEEK6.FREQMERGE (OBS = 5);&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LOG:&lt;/P&gt;
&lt;P&gt;PROC PRINT DATA = WEEK6.FREQMERGE (OBS = 5);&lt;BR /&gt;59 RUN;&lt;/P&gt;
&lt;P&gt;NOTE: There were 5 observations read from the data set WEEK6.FREQMERGE.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 19:31:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772264#M31045</guid>
      <dc:creator>Banke</dc:creator>
      <dc:date>2021-10-05T19:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772268#M31047</link>
      <description>&lt;P&gt;Did you close all of the ODS output destinations?&amp;nbsp; Or forget to open any ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you use PROC PRINTTO to redirect the standard listing output to an external file?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 19:46:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772268#M31047</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-10-05T19:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772270#M31048</link>
      <description>I used ODS output yesterday and I tried to close it but my log shows that SAS did not recognize the command ( I tried ODS destination close, ODS _ALL_ close, ODS close  commands)&lt;BR /&gt;&lt;BR /&gt;I did not use PROC PRINTTO to redirect the standard listing output to an external file. Is there something I can do to reset in case the problem is that I altered the setting?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 05 Oct 2021 19:56:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772270#M31048</guid>
      <dc:creator>Banke</dc:creator>
      <dc:date>2021-10-05T19:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772273#M31049</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS _ALL_ CLOSE;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;will close all of the the output destinations, which probably explains what you are seeing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you want to re-open depends a lot on how you are actually submitting your SAS code.&lt;/P&gt;
&lt;P&gt;Are you using SAS directly, for example by using Display Manager?&amp;nbsp; or just typing the a command like sas myfile at the command line of your operating system?&lt;/P&gt;
&lt;P&gt;Are you using a browser to connect to SAS/Studio to edit/submit your SAS code to SAS running somewhere?&lt;/P&gt;
&lt;P&gt;Are you using Enterprise Guide to connect to SAS running somewhere?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try just turning on the listing (plain old text) output and see if it helps.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or just start a new SAS session and get back to you default settings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 20:09:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772273#M31049</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-10-05T20:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772331#M31058</link>
      <description>Thank you so much for your time Tom.&lt;BR /&gt;I am not using my SAS windowing environment with any other SAS application. I restarted a couple of times and it was still the same issue. I have this note in my log though anytime I work with the file: I don't understand it but I'm thinking it has to do with the file and not the result output.&lt;BR /&gt;NOTE: Data file WEEK6.THCICSAMP.DATA is in a format that is native to another host, or the file encoding does not match the&lt;BR /&gt;      session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce&lt;BR /&gt;      performance.&lt;BR /&gt;I&lt;BR /&gt;I added listing in settings and restarted but it still did not work, instead I have my output in the output tab and not result viewer.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Oct 2021 02:32:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772331#M31058</guid>
      <dc:creator>Banke</dc:creator>
      <dc:date>2021-10-06T02:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772371#M31067</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/394970"&gt;@Banke&lt;/a&gt;,&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/394970"&gt;@Banke&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I'm thinking it has to do with the file and not the result output.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you get PROC PRINT output from other datasets, e.g. SASHELP.CLASS, in the results viewer?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can list the active ODS destinations by submitting&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=sashelp.vdest;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If the log of this step says&lt;/P&gt;
&lt;PRE&gt;NOTE: No observations in data set SASHELP.VDEST.&lt;/PRE&gt;
&lt;P&gt;you will not get any output. Otherwise it will show, e.g., LISTING or HTML or both (in the output window or results viewer, respectively).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also check the settings in Tools&amp;nbsp;→ Options&amp;nbsp;→ Preferences...&amp;nbsp;→ Results. Make sure that the checkboxes "Create HTML" and "View results as they are generated" are ticked and that "View results using: Internal Browser" is selected if you want HTML output in the results viewer. If also "Save settings on exit" is ticked on the "General" tab of the Preferences dialog, these settings will be saved in your user profile (and hence persist when you close SAS and start a new session) -- &lt;EM&gt;unless&lt;/EM&gt; system option &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lesysoptsref/n0yehy4wog1ti3n1u3nnqf794fhk.htm" target="_blank" rel="noopener"&gt;RSASUSER&lt;/A&gt; is active. To check this, submit&lt;/P&gt;
&lt;PRE&gt;%put %sysfunc(getoption(rsasuser));&lt;/PRE&gt;
&lt;P&gt;and see the log.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Oct 2021 08:35:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/772371#M31067</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-10-06T08:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773230#M31154</link>
      <description>&lt;P&gt;thaks. I have done all that. I used the tool-option-preference-results function to try to reset. Now I have set my output to google chrome. I am still unable to view output in sas result viewer&lt;/P&gt;</description>
      <pubDate>Sat, 09 Oct 2021 19:30:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773230#M31154</guid>
      <dc:creator>Banke</dc:creator>
      <dc:date>2021-10-09T19:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773295#M31159</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/394970"&gt;@Banke&lt;/a&gt;&amp;nbsp; - Have you tried&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp;'s suggestion to check if you have any active output destinations? Please try this and post the result. Please ensure you have the SAS Windowing System output window open when running your tests.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Oct 2021 23:53:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773295#M31159</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-10-10T23:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773715#M31191</link>
      <description>Thanks a lot, the Tools → Options → Preferences... → Results method worked. I did not  click the "save settings on exit" before, i did that now and i have my ouptput in result viewer bt selcting "internal browser". I appreciate all the responders on this forum, you all are amazing.</description>
      <pubDate>Tue, 12 Oct 2021 18:37:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773715#M31191</guid>
      <dc:creator>Banke</dc:creator>
      <dc:date>2021-10-12T18:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: My Proc print is not displaying on results viewer</title>
      <link>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773718#M31192</link>
      <description>&lt;P&gt;I used the&amp;nbsp;&lt;SPAN&gt;Tools&amp;nbsp;→ Options&amp;nbsp;→ Preferences...&amp;nbsp;→ Results options to change my listing to internal browser and clicked on saving settings on exit in the general tab. I now have my output in result viewer, thanks a lot.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 18:39:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/My-Proc-print-is-not-displaying-on-results-viewer/m-p/773718#M31192</guid>
      <dc:creator>Banke</dc:creator>
      <dc:date>2021-10-12T18:39:03Z</dc:date>
    </item>
  </channel>
</rss>

