<?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: OSD PDF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2567#M1107</link>
    <description>Hi Scott,&lt;BR /&gt;
&lt;BR /&gt;
Thanks, I tried this in our SAS version 8.*. It returns error in Class Output/ statement out of proper order. Help me Scott, to resolve in veison 8.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Selvi.</description>
    <pubDate>Thu, 22 Mar 2007 10:38:44 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2007-03-22T10:38:44Z</dc:date>
    <item>
      <title>OSD PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2562#M1102</link>
      <description>Hi all,&lt;BR /&gt;
I tried to output the proc print in PDF format using ODS in mainframe. when i opened the PDF file, the proc print output is in table format. I just want to remove the table border. Simply i need the output as we seen in the saslist. Please i need answer ASAP.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Selvi</description>
      <pubDate>Wed, 21 Mar 2007 10:23:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2562#M1102</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-21T10:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: OSD PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2563#M1103</link>
      <description>Hi, &lt;BR /&gt;
&lt;BR /&gt;
have you tried to add the option style=printer to your ods statement? I haven't tried this myself, but that would be my first guess/try...&lt;BR /&gt;
&lt;BR /&gt;
:-)&lt;BR /&gt;
Jenny

&lt;BR /&gt;
Message was edited by: Jenny at Mar 21, 2007 6:27 AM&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Mar 2007 11:27:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2563#M1103</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-21T11:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: OSD PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2564#M1104</link>
      <description>Hi Jenny,&lt;BR /&gt;
&lt;BR /&gt;
Thanks. Its working. But the column header has the table layout.</description>
      <pubDate>Wed, 21 Mar 2007 11:59:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2564#M1104</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-21T11:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: OSD PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2565#M1105</link>
      <description>Hi Friends,&lt;BR /&gt;
&lt;BR /&gt;
the below code working well. But the font size in the PDF file is too small. Please tell me how to increase the size of the font.&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file=pdfout startpage=now;                  &lt;BR /&gt;
data _null_;                                        &lt;BR /&gt;
file print;                                         &lt;BR /&gt;
set cdhcpgrep;                                      &lt;BR /&gt;
format mon $month.;                                 &lt;BR /&gt;
title ' CDHCPG Report';                             &lt;BR /&gt;
put mon y2ddol  y2dpct y1ddol y1dpct;               &lt;BR /&gt;
run;</description>
      <pubDate>Wed, 21 Mar 2007 12:02:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2565#M1105</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-21T12:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: OSD PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2566#M1106</link>
      <description>Selvi,  &lt;BR /&gt;
&lt;BR /&gt;
Using proc template to alter the look of the table can give you what you want.  Here is something simple that I put together that I think answers your question.&lt;BR /&gt;
&lt;BR /&gt;
Let me know if you have more questions.&lt;BR /&gt;
&lt;BR /&gt;
Scott&lt;BR /&gt;
&lt;BR /&gt;
Sample program...&lt;BR /&gt;
&lt;BR /&gt;
options nonumber;&lt;BR /&gt;
&lt;BR /&gt;
proc template;                                                                &lt;BR /&gt;
   define style Styles.noborder;&lt;BR /&gt;
      parent = Styles.minimal;&lt;BR /&gt;
      class Output /                                                          &lt;BR /&gt;
         rules = NONE                                                       &lt;BR /&gt;
         borderwidth = 0;                                                     &lt;BR /&gt;
   end;                                                                       &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file="test.pdf" style=styles.noborder;&lt;BR /&gt;
proc print data=sashelp.class;run;&lt;BR /&gt;
ods pdf close;</description>
      <pubDate>Wed, 21 Mar 2007 16:10:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2566#M1106</guid>
      <dc:creator>ScottH_SAS</dc:creator>
      <dc:date>2007-03-21T16:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: OSD PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2567#M1107</link>
      <description>Hi Scott,&lt;BR /&gt;
&lt;BR /&gt;
Thanks, I tried this in our SAS version 8.*. It returns error in Class Output/ statement out of proper order. Help me Scott, to resolve in veison 8.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Selvi.</description>
      <pubDate>Thu, 22 Mar 2007 10:38:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2567#M1107</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-22T10:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: OSD PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2568#M1108</link>
      <description>My fault I was using some 9.2 sytnax.  Use this sample program instead.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Scott&lt;BR /&gt;
&lt;BR /&gt;
options nonumber;&lt;BR /&gt;
&lt;BR /&gt;
proc template; &lt;BR /&gt;
define style Styles.noborder;&lt;BR /&gt;
parent = Styles.minimal;&lt;BR /&gt;
replace Output /&lt;BR /&gt;
rules = none&lt;BR /&gt;
frame = Box&lt;BR /&gt;
cellpadding = 7&lt;BR /&gt;
cellspacing = 1&lt;BR /&gt;
borderwidth = 0;&lt;BR /&gt;
end; &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file="test.pdf" style=styles.noborder;&lt;BR /&gt;
proc print data=sashelp.class;run;&lt;BR /&gt;
ods pdf close;</description>
      <pubDate>Thu, 22 Mar 2007 14:57:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/OSD-PDF/m-p/2568#M1108</guid>
      <dc:creator>ScottH_SAS</dc:creator>
      <dc:date>2007-03-22T14:57:26Z</dc:date>
    </item>
  </channel>
</rss>

