<?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: Script 2nd page-data not getting printed in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164710#M752809</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use MAIN window to display ur data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ur page is PAGE1&lt;/P&gt;&lt;P&gt;in the settings, use next page as PAGE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Dec 2007 14:12:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-14T14:12:56Z</dc:date>
    <item>
      <title>Script 2nd page-data not getting printed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164709#M752808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a script which is related to TDS Certificate.The problem is I am having all the data in the table that is used to print the data but I am not getting only the tabular column i.e contigious data printed for the next page.The rest all getting printed correctly.&lt;/P&gt;&lt;P&gt;To be clear&lt;/P&gt;&lt;P&gt;first page is having&lt;/P&gt;&lt;P&gt;____________&lt;/P&gt;&lt;P&gt;index,belnr,total amount,educess,sur charge etc.&lt;/P&gt;&lt;P&gt;1/10100/22.00/33.00/44.00/77.00&lt;/P&gt;&lt;P&gt;in the second page again it should print again&lt;/P&gt;&lt;P&gt;________&lt;/P&gt;&lt;P&gt;index belnr total etc but it is not getting printed.&lt;/P&gt;&lt;P&gt;blank&lt;/P&gt;&lt;P&gt;But the final  table is having 2 belnrs data.Where I am going wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 14:09:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164709#M752808</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-12-14T14:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: Script 2nd page-data not getting printed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164710#M752809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use MAIN window to display ur data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ur page is PAGE1&lt;/P&gt;&lt;P&gt;in the settings, use next page as PAGE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 14:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164710#M752809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T14:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Script 2nd page-data not getting printed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164711#M752810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;During test print, you cannot see the second page.&lt;/P&gt;&lt;P&gt;The second page will be visible only when there is data flow from page 1 to page 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Execute with actual data and check if it flows through to page 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also Please try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After your first page, include this:&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONTROL_FORM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;command = 'NEW-PAGE'.&lt;/P&gt;&lt;P&gt;and then call the the write form with text element in second page,&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;element = 'PG2'&lt;/P&gt;&lt;P&gt;window = 'INV'&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;element = 1&lt;/P&gt;&lt;P&gt;function = 2&lt;/P&gt;&lt;P&gt;type = 3&lt;/P&gt;&lt;P&gt;unopened = 4&lt;/P&gt;&lt;P&gt;unstarted = 5&lt;/P&gt;&lt;P&gt;window = 6&lt;/P&gt;&lt;P&gt;bad_pageformat_for_print = 7&lt;/P&gt;&lt;P&gt;OTHERS = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if found helpful&amp;#133;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chandra Sekhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 14:14:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164711#M752810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T14:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Script 2nd page-data not getting printed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164712#M752811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am seeing all pages even 4 to 5 with all the data correctly in the print view but only the tabular column data is blank when there more than one belnr but the final table is having the data correctly.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 14:21:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-2nd-page-data-not-getting-printed/m-p/3164712#M752811</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-12-14T14:21:21Z</dc:date>
    </item>
  </channel>
</rss>

