<?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 First Page Blank in ODS PDF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/599790#M23436</link>
    <description>&lt;P&gt;Using the following code, a blank page appears as the first page in the report (landscape orientation):&lt;/P&gt;&lt;P&gt;%Let Rpt_FS=[Fontsize=0.3] ;&lt;BR /&gt;%Let Rpt_HDR_FS=[fontsize=1 font_weight=light ];&lt;BR /&gt;ods PDF file="c:\Portfolio_Report.pdf"&lt;BR /&gt;style=HTMLBLUE Startpage=NO pdftoc = 1;&lt;BR /&gt;title1 "Analysis for the Period";&lt;BR /&gt;proc report data = select_data style(column)=&amp;amp;Rpt_FS&lt;BR /&gt;style(header)=[fontsize=1 BACKGROUNDCOLOR=#4F81B9 FOREGROUND=White]&lt;BR /&gt;Style(report)=[cellpadding=1 ]&lt;BR /&gt;style(summary)=[font_weight=bold bordertopwidth=.1pt bordertopstyle=solid&lt;BR /&gt;bordertopcolor=black borderbottomwidth=.1pt borderbottomstyle=solid&lt;BR /&gt;borderbottomcolor=black BACKGROUNDCOLOR=#4F81BD FOREGROUND=White] out = xxx;&lt;BR /&gt;column mmsort ('Major' major) ('Group' group) ('LOB Market' lob_market)&lt;BR /&gt;("Amounts in 000s " rr),balance ;&lt;BR /&gt;define mmsort / ' ' group noprint order = internal;&lt;BR /&gt;define major/ '' group format = $F_MAJ. mlf style(column)=[cellwidth = 1.0in] ;&lt;BR /&gt;define Lob_market / '' group format = $f_lob. mlf order = data style(column)=[cellwidth = 0.9in];&lt;BR /&gt;define group / '' group style(column)=[cellwidth = 2.75in];&lt;BR /&gt;define rr / ' ' format = f_rr. across order = internal style = [cellwidth = 0.7in] ;&lt;BR /&gt;define balance / ' ' format = comma32. ;&lt;BR /&gt;compute major/length = 100;&lt;BR /&gt;if UPCASE(_break_) = "_RBREAK_" then do;&lt;BR /&gt;major = "Total";&lt;BR /&gt;end;&lt;BR /&gt;else if upcase(_break_) = "MAJOR" and group = ' ' then do;&lt;BR /&gt;major = "Total "||strip(major);&lt;BR /&gt;end;&lt;BR /&gt;endcomp;&lt;BR /&gt;compute group / length =100;&lt;BR /&gt;if upcase(_break_) = "GROUP" then do;&lt;BR /&gt;group = "Total "||strip(group);&lt;BR /&gt;major = ' ';&lt;BR /&gt;end;&lt;BR /&gt;endcomp;&lt;BR /&gt;&lt;BR /&gt;break after major/summarize;&lt;BR /&gt;rbreak after / summarize;&lt;BR /&gt;break after group/summarize;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Oct 2019 13:35:37 GMT</pubDate>
    <dc:creator>Doug____</dc:creator>
    <dc:date>2019-10-28T13:35:37Z</dc:date>
    <item>
      <title>First Page Blank in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/599790#M23436</link>
      <description>&lt;P&gt;Using the following code, a blank page appears as the first page in the report (landscape orientation):&lt;/P&gt;&lt;P&gt;%Let Rpt_FS=[Fontsize=0.3] ;&lt;BR /&gt;%Let Rpt_HDR_FS=[fontsize=1 font_weight=light ];&lt;BR /&gt;ods PDF file="c:\Portfolio_Report.pdf"&lt;BR /&gt;style=HTMLBLUE Startpage=NO pdftoc = 1;&lt;BR /&gt;title1 "Analysis for the Period";&lt;BR /&gt;proc report data = select_data style(column)=&amp;amp;Rpt_FS&lt;BR /&gt;style(header)=[fontsize=1 BACKGROUNDCOLOR=#4F81B9 FOREGROUND=White]&lt;BR /&gt;Style(report)=[cellpadding=1 ]&lt;BR /&gt;style(summary)=[font_weight=bold bordertopwidth=.1pt bordertopstyle=solid&lt;BR /&gt;bordertopcolor=black borderbottomwidth=.1pt borderbottomstyle=solid&lt;BR /&gt;borderbottomcolor=black BACKGROUNDCOLOR=#4F81BD FOREGROUND=White] out = xxx;&lt;BR /&gt;column mmsort ('Major' major) ('Group' group) ('LOB Market' lob_market)&lt;BR /&gt;("Amounts in 000s " rr),balance ;&lt;BR /&gt;define mmsort / ' ' group noprint order = internal;&lt;BR /&gt;define major/ '' group format = $F_MAJ. mlf style(column)=[cellwidth = 1.0in] ;&lt;BR /&gt;define Lob_market / '' group format = $f_lob. mlf order = data style(column)=[cellwidth = 0.9in];&lt;BR /&gt;define group / '' group style(column)=[cellwidth = 2.75in];&lt;BR /&gt;define rr / ' ' format = f_rr. across order = internal style = [cellwidth = 0.7in] ;&lt;BR /&gt;define balance / ' ' format = comma32. ;&lt;BR /&gt;compute major/length = 100;&lt;BR /&gt;if UPCASE(_break_) = "_RBREAK_" then do;&lt;BR /&gt;major = "Total";&lt;BR /&gt;end;&lt;BR /&gt;else if upcase(_break_) = "MAJOR" and group = ' ' then do;&lt;BR /&gt;major = "Total "||strip(major);&lt;BR /&gt;end;&lt;BR /&gt;endcomp;&lt;BR /&gt;compute group / length =100;&lt;BR /&gt;if upcase(_break_) = "GROUP" then do;&lt;BR /&gt;group = "Total "||strip(group);&lt;BR /&gt;major = ' ';&lt;BR /&gt;end;&lt;BR /&gt;endcomp;&lt;BR /&gt;&lt;BR /&gt;break after major/summarize;&lt;BR /&gt;rbreak after / summarize;&lt;BR /&gt;break after group/summarize;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 13:35:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/599790#M23436</guid>
      <dc:creator>Doug____</dc:creator>
      <dc:date>2019-10-28T13:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: First Page Blank in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/600401#M23444</link>
      <description>Hi:&lt;BR /&gt;  Without data, no one can test your code. I have seen a few instances of a blank page using ODS TEXT, which I don't see here. Otherwise, you might want to open a track with Tech Support, since they can look at all of your code and your data and see what might be causing the blank page.&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 30 Oct 2019 14:08:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/600401#M23444</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-10-30T14:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: First Page Blank in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/600805#M23447</link>
      <description>&lt;P&gt;I found an option that provided the correct result.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 19:55:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/600805#M23447</guid>
      <dc:creator>Doug____</dc:creator>
      <dc:date>2019-10-31T19:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: First Page Blank in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/691903#M24580</link>
      <description>&lt;P&gt;What option did you use?&amp;nbsp; I am having the same issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sue&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 16:52:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/First-Page-Blank-in-ODS-PDF/m-p/691903#M24580</guid>
      <dc:creator>SZimmerman</dc:creator>
      <dc:date>2020-10-15T16:52:27Z</dc:date>
    </item>
  </channel>
</rss>

