<?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: SAS Studio Program Summary doesn't print all the code in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494494#M6183</link>
    <description>&lt;P&gt;Here is the new program summary attached when I do run the bottom half of the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to clarify, the log file is fine. It's the program summary that is not printing all the code. See in the attachment where it says, "Code: Program 1". The log file includes all the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've also done this with other SAS files and it will only print the first two lines of code.&lt;/P&gt;</description>
    <pubDate>Tue, 11 Sep 2018 14:44:21 GMT</pubDate>
    <dc:creator>lflorence</dc:creator>
    <dc:date>2018-09-11T14:44:21Z</dc:date>
    <item>
      <title>SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494211#M6175</link>
      <description>&lt;P&gt;After I run my code, I click "Program Summary", but it doesn't print the code past the second line. See attachment for the program summary that printed. I am trying to figure out why this is happening and how to fix it. Thanks in advance for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the original code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data employees;
	input lname $ fname $ age job $ gender $; /*This is a comment*/
	datalines;
Smith Al 55 Man M
Jones Ted 38 SR2 M
Hall Kim 22 SR1 M
Jones Kim 19 Sec F
Clark Guy 31 SR1 M
Grant Herbert 51 Jan M
Schmidt Henry 62 Mec M
Allen Joe 45 Man M
Call Steve 43 SR2 M
McCall Mac 26 Sec F
Sue Joe 25 Mec F
Murphy Cori 21 SR1 F
Love Sue 27 SR2 F
;
run;

proc print data=employees; 
run;


proc sort data=employees;
	by age;
run;

proc print data=employees; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Sep 2018 17:20:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494211#M6175</guid>
      <dc:creator>lflorence</dc:creator>
      <dc:date>2018-09-10T17:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494377#M6178</link>
      <description>&lt;P&gt;That's puzzling. I have copied your code, exactly, and run it within SAS Studio and the log is complete.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you getting the results and output data as expected?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 03:22:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494377#M6178</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2018-09-11T03:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494379#M6179</link>
      <description>&lt;P&gt;Yes, I get the results and output data as expected. The issue is when I click the Program Summary button, it doesn't display all the code. I want to see the code with the syntax highlighting and formatting (in addition to the log file and results).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was using SAS Studio: OnDemand when this problem occurred. I ran it in University Edition and it worked fine. I wanted to have this option for students to submit their homework assignments, but it will be frustrating&amp;nbsp;if it sometimes doesn't display all the code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 03:31:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494379#M6179</guid>
      <dc:creator>lflorence</dc:creator>
      <dc:date>2018-09-11T03:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494383#M6180</link>
      <description>&lt;P&gt;Hmm. One thing that puzzled me was the &lt;EM&gt;datalines&lt;/EM&gt; statement, or particularly how it was highlighted. Note that the syntaxer (word of the day) shows yellow around it - only the data lines themselves should be yellow. When I copy and paste the whole code into SAS/EG and SAS Studio, it doesn't do that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just to make sure that there aren't any artifacts in your code which might be doing something weird, can you please:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;copy and paste all that code into a text editor - any artifacts on your computer, if they exist (and I can't think why they would) should be stripped off&lt;/LI&gt;
&lt;LI&gt;copy and paste that into&amp;nbsp;&lt;SPAN&gt;SAS Studio: OnDemand&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Then run it again and see if it makes any difference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 03:39:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494383#M6180</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2018-09-11T03:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494385#M6181</link>
      <description>&lt;P&gt;Unfortunately, it didn't make a difference. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; I just can't tell if it's a bug in the software or something I'm doing wrong in OnDemand...&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 03:48:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494385#M6181</guid>
      <dc:creator>lflorence</dc:creator>
      <dc:date>2018-09-11T03:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494387#M6182</link>
      <description>&lt;P&gt;Curioser and curioser.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;OK, copy from the&amp;nbsp;&lt;EM&gt;proc print&lt;/EM&gt; down into another programming tab, and execute that. Do you get the full log for that?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 03:52:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494387#M6182</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2018-09-11T03:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494494#M6183</link>
      <description>&lt;P&gt;Here is the new program summary attached when I do run the bottom half of the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to clarify, the log file is fine. It's the program summary that is not printing all the code. See in the attachment where it says, "Code: Program 1". The log file includes all the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've also done this with other SAS files and it will only print the first two lines of code.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 14:44:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494494#M6183</guid>
      <dc:creator>lflorence</dc:creator>
      <dc:date>2018-09-11T14:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494643#M6186</link>
      <description>&lt;P&gt;D'oh. Sorry. I see what you mean.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just looked at the program summary when I ran it, and it showed everything.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data employees; 
    input lname $ fname $ age job $ gender $; /*This is a comment*/ 
    datalines; 
Smith Al 55 Man M 
Jones Ted 38 SR2 M 
Hall Kim 22 SR1 M 
Jones Kim 19 Sec F 
Clark Guy 31 SR1 M 
Grant Herbert 51 Jan M 
Schmidt Henry 62 Mec M 
Allen Joe 45 Man M 
Call Steve 43 SR2 M 
McCall Mac 26 Sec F 
Sue Joe 25 Mec F 
Murphy Cori 21 SR1 F 
Love Sue 27 SR2 F 
; 
run; 
 
proc print data=employees;  
run; 
 
 
proc sort data=employees; 
    by age; 
run; 
 
proc print data=employees;  
run; 
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Can you show what's in your autoexec.sas file?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 21:24:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494643#M6186</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2018-09-11T21:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494649#M6187</link>
      <description>&lt;P&gt;Why does it look like there is scroll box around the code?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 299px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23203iABAA5C67DB73ABD1/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I don't see anything like those scroll bars around the program code when I look at a program summary in SAS/studio.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23204i12C1D1B8AD29E337/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If the code really is in a scroll-able box then is it possible that you scrolled the other lines of code out of the frame before generating the PDF?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 21:42:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494649#M6187</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-09-11T21:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494652#M6188</link>
      <description>&lt;P&gt;I haven't edited the autoexec file at all (that I'm aware of). How do I access it in SAS Studio? Did you mean is there anything in the "Edit AutoExec File"? That is blank and I haven't added anything in there.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 21:58:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494652#M6188</guid>
      <dc:creator>lflorence</dc:creator>
      <dc:date>2018-09-11T21:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494656#M6189</link>
      <description>&lt;P&gt;I noticed the scroll bars as well. They aren't functioning and I can't click on them to scroll up/down.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This was working fine until I went to make an instructional video explaining how to use this feature. &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; I've tried deleting cookies, history, resetting my preferences, logging in/out of SAS Studio multiple times. I need to know how to debug this, though, in case students have the same problem.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 21:53:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494656#M6189</guid>
      <dc:creator>lflorence</dc:creator>
      <dc:date>2018-09-11T21:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494664#M6190</link>
      <description>&lt;P&gt;I was finally able to get it to work in a different user profile in Chrome. I guess I will have to recommend that until I figure out why it's not working in my own profile. Thanks for trying to help. I appreciate it!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 22:12:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/494664#M6190</guid>
      <dc:creator>lflorence</dc:creator>
      <dc:date>2018-09-11T22:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio Program Summary doesn't print all the code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/495118#M6195</link>
      <description>&lt;DIV class="lia-quilt-row lia-quilt-row-forum-message-main"&gt;&lt;DIV class="lia-quilt-column lia-quilt-column-20 lia-quilt-column-right lia-quilt-column-main-right"&gt;&lt;DIV class="lia-quilt-column-alley lia-quilt-column-alley-right"&gt;&lt;DIV class="lia-message-body lia-component-body"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;&lt;SPAN&gt;Do you know how to report this bug to SAS? I asked technical support and they said to "r&lt;/SPAN&gt;&lt;SPAN&gt;eport it on the SAS Support Communities&lt;/SPAN&gt;&lt;SPAN&gt;" but I'm not sure how to do that. Do I need to create a new thread?&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-quilt-row lia-quilt-row-forum-message-footer"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 13 Sep 2018 01:10:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-Program-Summary-doesn-t-print-all-the-code/m-p/495118#M6195</guid>
      <dc:creator>lflorence</dc:creator>
      <dc:date>2018-09-13T01:10:29Z</dc:date>
    </item>
  </channel>
</rss>

