<?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 Reports in single page with respective titles in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Reports-in-single-page-with-respective-titles/m-p/86057#M9152</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Titles are printed at the top of pages, you can use ODS PDF TEXT="" instead of titles if you have multiple reports on one page:&lt;/P&gt;&lt;P&gt;Think of the titles as headers instead of titles in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf file="/drive1/Sample_Reports.pdf"&amp;nbsp; startpage=never ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods proclabel = "Sample Report 1" ;&lt;/P&gt;&lt;P&gt;ods pdf text= &lt;SPAN style="color: #3366ff;"&gt;'REPORT - 1&lt;/SPAN&gt; ';&lt;/P&gt;&lt;P&gt;proc print data=sashelp.class&amp;nbsp; noobs contents = "" ;&lt;BR /&gt;where age =15;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods proclabel = "Sample Report 2" ;&lt;/P&gt;&lt;P&gt;ods pdf text= &lt;SPAN style="color: #3366ff;"&gt;'Report - 2'&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;proc print data= sashelp.class noobs contents = "";&lt;BR /&gt;where SEX = 'F';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Sep 2013 14:53:29 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2013-09-18T14:53:29Z</dc:date>
    <item>
      <title>ODS PDF Reports in single page with respective titles</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Reports-in-single-page-with-respective-titles/m-p/86056#M9151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am generating two reports(two procedures used)&amp;nbsp; in a single page by using ods pdf as per requirement.&lt;/P&gt;&lt;P&gt;The reports are generated one by one in single page, but the title is coming only for first report not for second report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf file="/drive1/Sample_Reports.pdf"&amp;nbsp; startpage=never ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods proclabel = "Sample Report 1" ;&lt;/P&gt;&lt;P&gt;title &lt;SPAN style="color: #3366ff;"&gt;'REPORT - 1&lt;/SPAN&gt; ';&lt;/P&gt;&lt;P&gt;proc print data=sashelp.class&amp;nbsp; noobs contents = "" ;&lt;BR /&gt;where age =15;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods proclabel = "Sample Report 2" ;&lt;/P&gt;&lt;P&gt;title &lt;SPAN style="color: #3366ff;"&gt;'Report - 2'&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;proc print data= sashelp.class noobs contents = "";&lt;BR /&gt;where SEX = 'F';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the report in a single pdf page, but the report is having a only title i.e.,&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;REPORT - 1&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I need second title (&lt;SPAN style="color: #3366ff;"&gt;'Report - 2')&amp;nbsp; t&lt;/SPAN&gt;o be printed after end of&amp;nbsp; first report and before start of second report as mentioned in code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could some one help me .?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 13:07:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Reports-in-single-page-with-respective-titles/m-p/86056#M9151</guid>
      <dc:creator>Prakash_sas</dc:creator>
      <dc:date>2013-09-18T13:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Reports in single page with respective titles</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Reports-in-single-page-with-respective-titles/m-p/86057#M9152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Titles are printed at the top of pages, you can use ODS PDF TEXT="" instead of titles if you have multiple reports on one page:&lt;/P&gt;&lt;P&gt;Think of the titles as headers instead of titles in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf file="/drive1/Sample_Reports.pdf"&amp;nbsp; startpage=never ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods proclabel = "Sample Report 1" ;&lt;/P&gt;&lt;P&gt;ods pdf text= &lt;SPAN style="color: #3366ff;"&gt;'REPORT - 1&lt;/SPAN&gt; ';&lt;/P&gt;&lt;P&gt;proc print data=sashelp.class&amp;nbsp; noobs contents = "" ;&lt;BR /&gt;where age =15;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods proclabel = "Sample Report 2" ;&lt;/P&gt;&lt;P&gt;ods pdf text= &lt;SPAN style="color: #3366ff;"&gt;'Report - 2'&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;proc print data= sashelp.class noobs contents = "";&lt;BR /&gt;where SEX = 'F';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 14:53:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Reports-in-single-page-with-respective-titles/m-p/86057#M9152</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-09-18T14:53:29Z</dc:date>
    </item>
  </channel>
</rss>

