<?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: TOTAL AMOUNT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560527#M583947</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;Not sure if I understood your requirement correctly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you want to get the field ALTKN from the knb1 for the value in the BSEG-KUNNR..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM KNB1 WHERE KUNNR = BSEG-KUNNR AND&lt;/P&gt;&lt;P&gt;                                                              BUKRS = BSEG-BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2007 22:31:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-12T22:31:15Z</dc:date>
    <item>
      <title>TOTAL AMOUNT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560523#M583943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to upload the data, i got the file with number of recordes in it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i read the data into one internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i have to sum the amount field in that file for all the records and capture that into one varible can anyone guide me how to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 21:22:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560523#M583943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T21:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: TOTAL AMOUNT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560524#M583944</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;Just loop at that internal table sum the value ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_AMOUNT TYPE NETWR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;  V_AMOUNT = V_AMOUNT + ITAB-AMOUNT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / 'Total amount is', v_amount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 21:40:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560524#M583944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T21:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: TOTAL AMOUNT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560525#M583945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;naren one more doubt plz...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting the customer number in the legacy file, It is bseg-kunner but in the sap system it is stored in the knb1-altkn.&lt;/P&gt;&lt;P&gt;how to get that value by passing this kunner...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u guide me please....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 22:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560525#M583945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T22:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: TOTAL AMOUNT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560526#M583946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to get it from KNB1-KUNNR. The field KUNNER doesnt exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 22:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560526#M583946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T22:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: TOTAL AMOUNT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560527#M583947</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;Not sure if I understood your requirement correctly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you want to get the field ALTKN from the knb1 for the value in the BSEG-KUNNR..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM KNB1 WHERE KUNNR = BSEG-KUNNR AND&lt;/P&gt;&lt;P&gt;                                                              BUKRS = BSEG-BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 22:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/total-amount/m-p/2560527#M583947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T22:31:15Z</dc:date>
    </item>
  </channel>
</rss>

