<?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 in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332454#M22081</link>
    <description>&lt;PRE&gt;
Maybe you need to reset it before applying it.


options orientation=landscape center;
ods pdf file ="/export/TPL_Membership/Summary/test.pdf";
%ABC (VAR=0100)

ods pdf;
options orientation=landscape center;
%ABC (VAR=0500)

ods pdf close;
&lt;/PRE&gt;</description>
    <pubDate>Tue, 14 Feb 2017 03:01:04 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2017-02-14T03:01:04Z</dc:date>
    <item>
      <title>ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332292#M22063</link>
      <description>&lt;P&gt;I have code as following, but second report&amp;nbsp;&lt;SPAN&gt;TPL_SUMMARY_0500, nt the landscaping any more, even I set up the Landscspe as the option, therefor the out put looks very in consisitance.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options orientation=landscape center;&lt;BR /&gt;ods pdf file ="/export/TPL_Membership/Summary/test.pdf";&lt;BR /&gt;ods listing close;&lt;/P&gt;&lt;P&gt;%MACRO ABC (VAR);&lt;BR /&gt;PROC REPORT DATA=WORK.TPL_SUMMARY_&amp;amp;VAR;&lt;BR /&gt;COLUMN MONTH Category OVERALL_MEMBERSHIP TPL MEDICARE MEDICARE_SUPPLEMENTAL MEDICARE_A MEDICARE_B MEDICARE_AB MEDICARE_ADVANTAGE COMMERCIAL VISION DENTAL LIMITED_BENEFITS Casualty PHARMACY;&lt;BR /&gt;DEFINE MONTH/GROUP;&lt;BR /&gt;title " LOB &amp;amp;VAR TPL Membership" ;&lt;BR /&gt;footnote" Run at &amp;amp;sDay &amp;amp;stime" ;&lt;BR /&gt;RUN;&lt;BR /&gt;%MEND;&lt;BR /&gt;%ABC (VAR=0100);&lt;BR /&gt;%ABC (VAR=0500);&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 18:51:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332292#M22063</guid>
      <dc:creator>JHE</dc:creator>
      <dc:date>2017-02-13T18:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332293#M22064</link>
      <description>&lt;P&gt;You do not show an ODS PDF CLOSE statement. Was there one in the actual program? If not you may have a previous version of the pdf file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 18:55:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332293#M22064</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-02-13T18:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332295#M22066</link>
      <description>&lt;P&gt;Ok, I see.&amp;nbsp; Let me check if I remove CLOSE statement.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See attach,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 18:58:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332295#M22066</guid>
      <dc:creator>JHE</dc:creator>
      <dc:date>2017-02-13T18:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332334#M22067</link>
      <description>&lt;P&gt;Without data it is hard to test what may be causing the change.&lt;/P&gt;
&lt;P&gt;Try running this:&lt;/P&gt;
&lt;PRE&gt;ods pdf file ="/export/TPL_Membership/Summary/test.pdf";

%ABC (VAR=0100);
%ABC (VAR=0100);

ods pdf close;&lt;/PRE&gt;
&lt;P&gt;And see if both pages look the same. If so then there is something subtle in the data that likely means one or more of the columns wants just a little more room at which point the PDF generator splits off several columns to make a "nicer" report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know that generally if I want tables based on separate data sets to appear the same that I usually have to go into setting style overrides for each column to the width stays the same for each report call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might look at the Proc Contents results for your data sets and see if the lengths of the character variables are the same.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 20:49:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332334#M22067</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-02-13T20:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332338#M22068</link>
      <description>&lt;P&gt;Thank you !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am going to try .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 20:51:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332338#M22068</guid>
      <dc:creator>JHE</dc:creator>
      <dc:date>2017-02-13T20:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332454#M22081</link>
      <description>&lt;PRE&gt;
Maybe you need to reset it before applying it.


options orientation=landscape center;
ods pdf file ="/export/TPL_Membership/Summary/test.pdf";
%ABC (VAR=0100)

ods pdf;
options orientation=landscape center;
%ABC (VAR=0500)

ods pdf close;
&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Feb 2017 03:01:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332454#M22081</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-02-14T03:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332603#M22110</link>
      <description>thank you for reply to me. still dose not working ..&lt;BR /&gt;&lt;BR /&gt;##- Please type your reply above this line. Simple formatting, no&lt;BR /&gt;attachments. -##</description>
      <pubDate>Tue, 14 Feb 2017 13:47:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332603#M22110</guid>
      <dc:creator>JHE</dc:creator>
      <dc:date>2017-02-14T13:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332753#M22124</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/128890"&gt;@JHE&lt;/a&gt; wrote:&lt;BR /&gt;thank you for reply to me. still dose not working ..&lt;BR /&gt;&lt;BR /&gt;##- Please type your reply above this line. Simple formatting, no&lt;BR /&gt;attachments. -##&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Which are you responding to? There is a button above the text entry area that says "Quote" . If you click on that the text of the post you respond to is brought into the message area so it is clear which which post you are responding to.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 18:21:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-PDF/m-p/332753#M22124</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-02-14T18:21:48Z</dc:date>
    </item>
  </channel>
</rss>

