<?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: Generation PDF(Having 13 colums but its skips to down) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Generation-PDF-Having-13-colums-but-its-skips-to-down/m-p/699955#M214147</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/284419"&gt;@Shyamkumar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a 13 columns of dataset, for which I genrated the pdf,but it skips down .In 1st page 9 columns are appearing and remain in 2nd page.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods listing close;&lt;BR /&gt;ods pdf style=sasweb file ="/test/PDF_2S.pdf" ;&lt;/P&gt;
&lt;P&gt;proc report&amp;nbsp; data=shyam nowd bypageno=1 spanrows ;&lt;BR /&gt;column IDJOB STUDYID PROFILENAME DATATYPE EDUMODULES PARAMNAME&amp;nbsp;&lt;BR /&gt;PARAMVALUE ACTION DELETED STATUS&amp;nbsp; STATUSDETAILS USERID TYPE&amp;nbsp; ;&lt;BR /&gt;DEFINE IDJOB/DISPLAY"IDJOB";&lt;BR /&gt;DEFINE STUDYID/DISPLAY"STUDYID";&lt;BR /&gt;DEFINE PROFILENAME/DISPLAY"Filename";&lt;BR /&gt;DEFINE DATATYPE/DISPLAY"DATATYPE";&lt;BR /&gt;DEFINE EDUMODULES/DISPLAY"EDUMODULES" left style=[cellwidth=width=30mm];&lt;BR /&gt;DEFINE PARAMNAME/DISPLAY"PARAMNAME";&lt;BR /&gt;DEFINE PARAMVALUE/DISPLAY"PARAMVALUE";&lt;BR /&gt;DEFINE ACTION/DISPLAY"ACTION";&lt;BR /&gt;DEFINE DELETED/DISPLAY"DELETED";&lt;BR /&gt;DEFINE STATUS/DISPLAY"STATUS";&lt;BR /&gt;DEFINE STATUSDETAILS/DISPLAY"STATUSDETAILS" left style=[cellwidth=30mm];&lt;BR /&gt;DEFINE USERID/DISPLAY"USERID";&lt;BR /&gt;DEFINE TYPE/DISPLAY"TYPE";&lt;BR /&gt;run;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;ods listing;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Your output is very likely exceeding the logical width of the page setting that PDF is using.&lt;/P&gt;
&lt;P&gt;You might try adding an option to increase the width of the page:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Options papersize=("14in" "10in");&lt;/P&gt;
&lt;P&gt;BEFORE the ODS PDF statement. The above would make the page size 14 inches wide by 10 inches long. You can use other measurements such as CM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reset to the default with Options papersize=Letter; or options papersize=A4; depending on location. (If you don't know what A4 is likely you want letter). There are other named papersizes but finding them involves use of Proc Registry.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Nov 2020 19:04:22 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2020-11-18T19:04:22Z</dc:date>
    <item>
      <title>Generation PDF(Having 13 colums but its skips to down)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Generation-PDF-Having-13-colums-but-its-skips-to-down/m-p/699925#M214131</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a 13 columns of dataset, for which I genrated the pdf,but it skips down .In 1st page 9 columns are appearing and remain in 2nd page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;BR /&gt;ods pdf style=sasweb file ="/test/PDF_2S.pdf" ;&lt;/P&gt;&lt;P&gt;proc report&amp;nbsp; data=shyam nowd bypageno=1 spanrows ;&lt;BR /&gt;column IDJOB STUDYID PROFILENAME DATATYPE EDUMODULES PARAMNAME&amp;nbsp;&lt;BR /&gt;PARAMVALUE ACTION DELETED STATUS&amp;nbsp; STATUSDETAILS USERID TYPE&amp;nbsp; ;&lt;BR /&gt;DEFINE IDJOB/DISPLAY"IDJOB";&lt;BR /&gt;DEFINE STUDYID/DISPLAY"STUDYID";&lt;BR /&gt;DEFINE PROFILENAME/DISPLAY"Filename";&lt;BR /&gt;DEFINE DATATYPE/DISPLAY"DATATYPE";&lt;BR /&gt;DEFINE EDUMODULES/DISPLAY"EDUMODULES" left style=[cellwidth=width=30mm];&lt;BR /&gt;DEFINE PARAMNAME/DISPLAY"PARAMNAME";&lt;BR /&gt;DEFINE PARAMVALUE/DISPLAY"PARAMVALUE";&lt;BR /&gt;DEFINE ACTION/DISPLAY"ACTION";&lt;BR /&gt;DEFINE DELETED/DISPLAY"DELETED";&lt;BR /&gt;DEFINE STATUS/DISPLAY"STATUS";&lt;BR /&gt;DEFINE STATUSDETAILS/DISPLAY"STATUSDETAILS" left style=[cellwidth=30mm];&lt;BR /&gt;DEFINE USERID/DISPLAY"USERID";&lt;BR /&gt;DEFINE TYPE/DISPLAY"TYPE";&lt;BR /&gt;run;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;ods listing;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 18:16:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Generation-PDF-Having-13-colums-but-its-skips-to-down/m-p/699925#M214131</guid>
      <dc:creator>Shyamkumar</dc:creator>
      <dc:date>2020-11-18T18:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Generation PDF(Having 13 colums but its skips to down)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Generation-PDF-Having-13-colums-but-its-skips-to-down/m-p/699955#M214147</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/284419"&gt;@Shyamkumar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a 13 columns of dataset, for which I genrated the pdf,but it skips down .In 1st page 9 columns are appearing and remain in 2nd page.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods listing close;&lt;BR /&gt;ods pdf style=sasweb file ="/test/PDF_2S.pdf" ;&lt;/P&gt;
&lt;P&gt;proc report&amp;nbsp; data=shyam nowd bypageno=1 spanrows ;&lt;BR /&gt;column IDJOB STUDYID PROFILENAME DATATYPE EDUMODULES PARAMNAME&amp;nbsp;&lt;BR /&gt;PARAMVALUE ACTION DELETED STATUS&amp;nbsp; STATUSDETAILS USERID TYPE&amp;nbsp; ;&lt;BR /&gt;DEFINE IDJOB/DISPLAY"IDJOB";&lt;BR /&gt;DEFINE STUDYID/DISPLAY"STUDYID";&lt;BR /&gt;DEFINE PROFILENAME/DISPLAY"Filename";&lt;BR /&gt;DEFINE DATATYPE/DISPLAY"DATATYPE";&lt;BR /&gt;DEFINE EDUMODULES/DISPLAY"EDUMODULES" left style=[cellwidth=width=30mm];&lt;BR /&gt;DEFINE PARAMNAME/DISPLAY"PARAMNAME";&lt;BR /&gt;DEFINE PARAMVALUE/DISPLAY"PARAMVALUE";&lt;BR /&gt;DEFINE ACTION/DISPLAY"ACTION";&lt;BR /&gt;DEFINE DELETED/DISPLAY"DELETED";&lt;BR /&gt;DEFINE STATUS/DISPLAY"STATUS";&lt;BR /&gt;DEFINE STATUSDETAILS/DISPLAY"STATUSDETAILS" left style=[cellwidth=30mm];&lt;BR /&gt;DEFINE USERID/DISPLAY"USERID";&lt;BR /&gt;DEFINE TYPE/DISPLAY"TYPE";&lt;BR /&gt;run;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;ods listing;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Your output is very likely exceeding the logical width of the page setting that PDF is using.&lt;/P&gt;
&lt;P&gt;You might try adding an option to increase the width of the page:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Options papersize=("14in" "10in");&lt;/P&gt;
&lt;P&gt;BEFORE the ODS PDF statement. The above would make the page size 14 inches wide by 10 inches long. You can use other measurements such as CM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reset to the default with Options papersize=Letter; or options papersize=A4; depending on location. (If you don't know what A4 is likely you want letter). There are other named papersizes but finding them involves use of Proc Registry.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 19:04:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Generation-PDF-Having-13-colums-but-its-skips-to-down/m-p/699955#M214147</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-11-18T19:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Generation PDF(Having 13 colums but its skips to down)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Generation-PDF-Having-13-colums-but-its-skips-to-down/m-p/700891#M214553</link>
      <description>&lt;P&gt;Thanks for your response. But it's not working in SAS studio even given the paper size option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 13:24:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Generation-PDF-Having-13-colums-but-its-skips-to-down/m-p/700891#M214553</guid>
      <dc:creator>Shyamkumar</dc:creator>
      <dc:date>2020-11-23T13:24:18Z</dc:date>
    </item>
  </channel>
</rss>

