<?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 ODS PDF borders are coming out thicker than ODS RTF borders in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235196#M14679</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like&amp;nbsp;the borders in the PDF document to come out slightly thinner to match the borders in the RTF document. Can you help with this please? I have tried to change the borderwidth value in the style template and in the style attributes, however the borderwidth is still thicker in the PDF document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are occasions when the borderwidth that is set in the column statement appears thinner than the other borders.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
  define style Styles.rtf_kriss;
    parent = styles.rtf;
      style body from body /
        marginleft = 34.5mm
        marginright = 34.0mm
        margintop = 18.2mm
        marginbottom = 14.2mm;
  
      style fonts from fonts;

      style table from output /
        frame = void
        rules = group
        backgroundcolor = white
        borderspacing = 0pt
        cellpadding = 0pt
        borderwidth = 0.75pt
		  borderbottomcolor= black
		  bordertopcolor= black

         ;
 
      class color_list /
        'bg' = white
        'fg' = black
        'bgH' = white
        'link' = black;
  end;
run;


goptions reset = all;

%let odsescapechar = ^;
ods escapechar="&amp;amp;odsescapechar";
options nonumber;

title1 j= r "Page &amp;amp;odsescapechar.{thispage} of &amp;amp;odsescapechar.{lastpage}";

ods listing close;
ods rtf file='U:\borders_difference_rtf_vs_pdf.rtf' startpage=no style=styles.rtf_kriss;
ods pdf file='U:\borders_difference_rtf_vs_pdf.pdf' startpage=no style=styles.rtf_kriss;

ods escapechar='^';

proc report data=sashelp.cars style(report)={width=100% bordertopwidth = 0.75  borderbottomwidth = 0.75} style(header)=[textalign = left] nowd;
  where make = "Audi";

  column  ('^S={borderbottomwidth = 0.75  borderbottomcolor = black} Make and Model'make model) type origin enginesize;

run;

ods pdf close;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Nov 2015 10:22:05 GMT</pubDate>
    <dc:creator>djrisks</dc:creator>
    <dc:date>2015-11-18T10:22:05Z</dc:date>
    <item>
      <title>ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235196#M14679</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like&amp;nbsp;the borders in the PDF document to come out slightly thinner to match the borders in the RTF document. Can you help with this please? I have tried to change the borderwidth value in the style template and in the style attributes, however the borderwidth is still thicker in the PDF document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are occasions when the borderwidth that is set in the column statement appears thinner than the other borders.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
  define style Styles.rtf_kriss;
    parent = styles.rtf;
      style body from body /
        marginleft = 34.5mm
        marginright = 34.0mm
        margintop = 18.2mm
        marginbottom = 14.2mm;
  
      style fonts from fonts;

      style table from output /
        frame = void
        rules = group
        backgroundcolor = white
        borderspacing = 0pt
        cellpadding = 0pt
        borderwidth = 0.75pt
		  borderbottomcolor= black
		  bordertopcolor= black

         ;
 
      class color_list /
        'bg' = white
        'fg' = black
        'bgH' = white
        'link' = black;
  end;
run;


goptions reset = all;

%let odsescapechar = ^;
ods escapechar="&amp;amp;odsescapechar";
options nonumber;

title1 j= r "Page &amp;amp;odsescapechar.{thispage} of &amp;amp;odsescapechar.{lastpage}";

ods listing close;
ods rtf file='U:\borders_difference_rtf_vs_pdf.rtf' startpage=no style=styles.rtf_kriss;
ods pdf file='U:\borders_difference_rtf_vs_pdf.pdf' startpage=no style=styles.rtf_kriss;

ods escapechar='^';

proc report data=sashelp.cars style(report)={width=100% bordertopwidth = 0.75  borderbottomwidth = 0.75} style(header)=[textalign = left] nowd;
  where make = "Audi";

  column  ('^S={borderbottomwidth = 0.75  borderbottomcolor = black} Make and Model'make model) type origin enginesize;

run;

ods pdf close;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 10:22:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235196#M14679</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-11-18T10:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235199#M14680</link>
      <description>&lt;P&gt;This could be an illusion. &amp;nbsp;I have noticed that when creating PDF files from RTF files, the PDF sometimes doesn't show the borders, but if you zoom in or print the file they do show. &amp;nbsp;Do they show if you zoom in? &amp;nbsp;The problem is that RTF is an interpreted tagset, so Word decides what it should look like based on its settings, and the tags in the file. &amp;nbsp;I would build your output as two separate viens, each geared to the particular output, or generate the PDF from the RTF.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 11:06:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235199#M14680</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-11-18T11:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235200#M14681</link>
      <description>&lt;P&gt;Hi RW9. I've seen what you have noticed before too. In this instance the PDF borders are thicker, and when I print them out, they are thicker than the ones in RTF too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Generating the PDF from the RTF file is fine when I have one document, however I have many RTF outputs. Do you know of a good way to do the conversion on many RTF files please?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 11:15:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235200#M14681</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-11-18T11:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235202#M14682</link>
      <description>&lt;P&gt;Yes sure. &amp;nbsp;If you have a folder of RTF files, and you have full Adobe installed on your machine, its a simple as highlighting all the files, then right click, select Combine files in Acrobat. &amp;nbsp;This will give you a dialog box with all the selected RTF files in a list. &amp;nbsp;You can rearrange the order if you like, and add bookmark tags. &amp;nbsp;Then click combine, and each one will be converted to PDF, and then all will be combined into one file. &amp;nbsp;Its quite easy and quick. &amp;nbsp;You can also script this or get other tools for an automated process, though thats a bit more advanced.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 11:49:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235202#M14682</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-11-18T11:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235218#M14683</link>
      <description>&lt;P&gt;Thank you for this. We have Adobe Acrobat 9 Pro here. The only thing is that with that version when I select all the RTF files that I want to convert to PDF, I have to save all the files manually, i.e. keep on pressing the Enter button.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 13:18:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235218#M14683</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-11-18T13:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235219#M14684</link>
      <description>&lt;P&gt;What does the dialog box say that you have to press enter for? &amp;nbsp;I am thinking maybe its to do with the Adobe Office plugins being macros maybe, and they are not authorised to just run. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 13:30:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235219#M14684</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-11-18T13:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235255#M14685</link>
      <description>&lt;P&gt;First I select all the files and then right click, and then select the option "Convert to Adobe PDF". Afterwards the Save Adobe PDF File appears and that is when I need to keep pressing Enter to save the files.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 15:07:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235255#M14685</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-11-18T15:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235257#M14686</link>
      <description>&lt;P&gt;Ah, thats where your going wrong, you need to select "Combine files in Acrobat", it should be on the right click menu just below the Convert one. &amp;nbsp;If its not there then speak to&amp;nbsp;your IT group so they can enable it for you. &amp;nbsp;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/872i2D5FC4A5E2FA7EAE/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Untitled.png" title="Untitled.png" /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 15:14:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235257#M14686</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-11-18T15:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235265#M14687</link>
      <description>&lt;P&gt;Thanks, I just tried that way. It seems to get stuck after the 1st file has been converted. I think I need to contact IT. Thank you for all your help!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 15:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235265#M14687</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-11-18T15:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF borders are coming out thicker than ODS RTF borders</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235267#M14688</link>
      <description>&lt;P&gt;Yep, likely to be a permission thing somewhere alonog the line, basically its creating a temporary PDF file for each, and then it combines them, but if it can't create one in the temporary area it breaks. &amp;nbsp;Good luck.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 15:33:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-borders-are-coming-out-thicker-than-ODS-RTF-borders/m-p/235267#M14688</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-11-18T15:33:08Z</dc:date>
    </item>
  </channel>
</rss>

