<?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: Print Based Forms Page wise Sub total in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553027#M1753215</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aniket,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a tutorial for the exact requirement of yours.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://saptechnical.com/Tutorials/AdobeForms/Totals/page1.htm"&gt;http://saptechnical.com/Tutorials/AdobeForms/Totals/page1.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Jul 2013 05:48:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-07-05T05:48:22Z</dc:date>
    <item>
      <title>Print Based Forms Page wise Sub total</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553024#M1753212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-family: arial, helvetica, sans-serif;"&gt;Hello Everyone,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: arial, helvetica, sans-serif;"&gt;We are addressing a peculiar requirement in Form Printing where we need to first print details of a document(which will occupy multiple pages), then after End of this we need to Print Page Wise Totals as line items as a page wise summary which will start after the details page printing is over.My question is , is it possible to gather page wise totals in an internal table inside the forms? If this is possible in print based forms then our problem is solved.Else if there are any better options kindly share.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;Thanks in Advance.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: arial, helvetica, sans-serif;"&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: arial, helvetica, sans-serif;"&gt;AB&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jul 2013 08:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553024#M1753212</guid>
      <dc:creator>AniketB</dc:creator>
      <dc:date>2013-07-04T08:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Print Based Forms Page wise Sub total</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553025#M1753213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aniket,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is possible in SMARTFORMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the loop process Program lines and create a 2 fields table for your total table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Page&amp;nbsp; type c length 5,&lt;/P&gt;&lt;P&gt;Total&amp;nbsp;&amp;nbsp; type p length 16 decimals 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In program lines in your loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate 'P' &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;SFSY-PAGE(ZC)&lt;/SPAN&gt; into wa-page.&lt;/P&gt;&lt;P&gt;move the amount in total field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use Collect wa int total_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give you a table with page totals&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Print it at the end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if any doubts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jul 2013 10:04:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553025#M1753213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-04T10:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Print Based Forms Page wise Sub total</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553026#M1753214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Yakub for your quick reply, but we are looking for the same functionality in Print Based PDF forms(Adobe Forms).&lt;/P&gt;&lt;P&gt;Can this be achieved in Adobe Forms?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jul 2013 10:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553026#M1753214</guid>
      <dc:creator>AniketB</dc:creator>
      <dc:date>2013-07-04T10:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Print Based Forms Page wise Sub total</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553027#M1753215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aniket,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a tutorial for the exact requirement of yours.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://saptechnical.com/Tutorials/AdobeForms/Totals/page1.htm"&gt;http://saptechnical.com/Tutorials/AdobeForms/Totals/page1.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jul 2013 05:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/print-based-forms-page-wise-sub-total/m-p/9553027#M1753215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-05T05:48:22Z</dc:date>
    </item>
  </channel>
</rss>

