<?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: summing in sap script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054019#M89902</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have two possibility:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- To use command SUMMING:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: SUMMING PROGRAM_SYMBOL INTO TOTAL_SYMBOL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The PROGRAM_SYMBOL is the global variable you want to sum, TOTAL_SYMBOL is a variable defined in the sapscript:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: DEFINE TOTAL_SYMBOL = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should try to define TOTAL_SYMBOL just once (for example in a window you use only once).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- To use a routine to sum:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: PERFORM DO_SUM IN ZMYPROGRAM USING PROGRAM_SYMBOL&lt;/P&gt;&lt;P&gt;                                CHANGING TOTAL_SYMBOL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Oct 2005 14:55:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-31T14:55:57Z</dc:date>
    <item>
      <title>summing in sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054016#M89899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am trying to sum the totals by page.. i cannot store the sum in a global variable..coz that only gives me net total(not by page)..tried using summing command..it's not working...any thoughts...appreciate ur help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads..&lt;/P&gt;&lt;P&gt;mob.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2005 14:25:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054016#M89899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-31T14:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: summing in sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054017#M89900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try displaying ur total in the footer rather than the main window . By doing this youe cumulative total will be shown in every page .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2005 14:38:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054017#M89900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-31T14:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: summing in sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054018#M89901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'm not displaying totals in main-window, i have a total window.. how do you cumulate by page??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2005 14:49:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054018#M89901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-31T14:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: summing in sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054019#M89902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have two possibility:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- To use command SUMMING:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: SUMMING PROGRAM_SYMBOL INTO TOTAL_SYMBOL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The PROGRAM_SYMBOL is the global variable you want to sum, TOTAL_SYMBOL is a variable defined in the sapscript:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: DEFINE TOTAL_SYMBOL = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should try to define TOTAL_SYMBOL just once (for example in a window you use only once).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- To use a routine to sum:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: PERFORM DO_SUM IN ZMYPROGRAM USING PROGRAM_SYMBOL&lt;/P&gt;&lt;P&gt;                                CHANGING TOTAL_SYMBOL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2005 14:55:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/summing-in-sap-script/m-p/1054019#M89902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-31T14:55:57Z</dc:date>
    </item>
  </channel>
</rss>

