<?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: ODS PDF SGPLOT missing title in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394250#M25404</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;- Any other ODS destinations active? &amp;nbsp;Try adding ODS _ALL_ CLOSE; at the start of your code and see what happens. &amp;nbsp;Might have some other stuff taking precedence.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/sasdummy/2014/04/16/ods-control-in-eg/" target="_self"&gt;More tips in this blog post&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Fri, 08 Sep 2017 15:40:21 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2017-09-08T15:40:21Z</dc:date>
    <item>
      <title>ODS PDF SGPLOT missing title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394225#M25400</link>
      <description>&lt;P&gt;I'm sure I'm missing something obvious.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Running EG 7.13 connected to&amp;nbsp;a linux server recently upgraded to 9.4M4, when I submit:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics/ reset=all;
ods pdf file="/blah/MyPDF.pdf" ;
title1 j=c "MyTitle" ;
proc sgplot data=sashelp.class;
  scatter y=height x=Weight;
run ;
title1 ;
ods pdf close ;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get a PDF, but no title in it.&amp;nbsp; Running same code in PC SAS works fine.&amp;nbsp; What could cause this (other than it being Friday?)&amp;nbsp; The title shows up fine in ODS HTML, lst output, etc.&amp;nbsp; So seems to be something about the PDF destination?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried adding gtitle, nogtitle, startpage=yes, and other stuff that shouldn't matter, but couldn't get the titles.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;P&gt;Per suggestion from &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;, I ran the same code in SAS Studio, and it ran fine.&amp;nbsp; Since it seems to be related to E.G., will move this to the EG board.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 15:26:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394225#M25400</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2017-09-08T15:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF SGPLOT missing title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394229#M25401</link>
      <description>I added a PROC PRINT inside the PDF sandwich.  The title shows up fine for the PRINT, but not for the SGPLOT.</description>
      <pubDate>Fri, 08 Sep 2017 14:49:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394229#M25401</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2017-09-08T14:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF SGPLOT missing title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394238#M25402</link>
      <description>&lt;P&gt;Are you able to run this code directly on the Linux server and get a title for SGPLOT? I say that because it's possible that there might be a setting in EG that is affecting the title output. I just ran your code directly in a DMS session on a Linux box using SAS 9.4m4, and the title came out okay. Let us know what you find out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;Dan&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 15:06:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394238#M25402</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-09-08T15:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF SGPLOT missing title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394244#M25403</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;.&amp;nbsp; I ran it in SAS Studio and got a title.&amp;nbsp; Good to know that it's not SAS.&amp;nbsp; I'm not seeing how it could be EG, but I'll move this discussion there.&amp;nbsp; Will also see if anyone else internally can replicate it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 15:23:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394244#M25403</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2017-09-08T15:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF SGPLOT missing title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394250#M25404</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;- Any other ODS destinations active? &amp;nbsp;Try adding ODS _ALL_ CLOSE; at the start of your code and see what happens. &amp;nbsp;Might have some other stuff taking precedence.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/sasdummy/2014/04/16/ods-control-in-eg/" target="_self"&gt;More tips in this blog post&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 15:40:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394250#M25404</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-09-08T15:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF SGPLOT missing title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394254#M25405</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;,&amp;nbsp; you're a life saver (or at least sanity saver).&amp;nbsp; I had the SAS REPORT destination open in EG.&amp;nbsp; Didn't think about the possibility of conflicting options beyond what is specified on the ODS statement. But that's a much better outcome than me going crazy wondering why the TITLE statement won't work.&amp;nbsp; I should've posted a couple of hours ago.&amp;nbsp; : )&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 15:52:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF-SGPLOT-missing-title/m-p/394254#M25405</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2017-09-08T15:52:26Z</dc:date>
    </item>
  </channel>
</rss>

