<?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: report help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243940#M142981</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use query ike this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr sum(menge) from dbtab into itab&lt;/P&gt;&lt;P&gt;             where cond...&lt;/P&gt;&lt;P&gt;             group by matnr.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: kishan negi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: kishan negi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Mar 2006 08:12:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-03T08:12:40Z</dc:date>
    <item>
      <title>report help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243939#M142980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello everybody.&lt;/P&gt;&lt;P&gt;I need help regarding one of my report for delivery.&lt;/P&gt;&lt;P&gt;in selection screen i have ranges for&lt;/P&gt;&lt;P&gt;1.date of delivery&lt;/P&gt;&lt;P&gt;2.delivery no&lt;/P&gt;&lt;P&gt;3.customer no&lt;/P&gt;&lt;P&gt;result what i am getting&lt;/P&gt;&lt;P&gt;MERCHANDISE CATEGORY 002&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; M-01        STORE CODE       3   STOCK               NET VALUE&lt;/P&gt;&lt;P&gt; M-01        STORE CODE       5   STOCK               NET VALUE&lt;/P&gt;&lt;P&gt; M-01        STORE CODE          STOCK               NET VALUE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here in out put i need not required to repeat this material no again and again rather i need to add the quantity that comes against a particular material no.&lt;/P&gt;&lt;P&gt;i cannot use collect since collect can be used only with key fields&lt;/P&gt;&lt;P&gt;that tables i am refering are likp and lips.&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 08:03:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243939#M142980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T08:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: report help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243940#M142981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use query ike this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr sum(menge) from dbtab into itab&lt;/P&gt;&lt;P&gt;             where cond...&lt;/P&gt;&lt;P&gt;             group by matnr.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: kishan negi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: kishan negi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 08:12:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243940#M142981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T08:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: report help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243941#M142982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SORT itab BY matnr.
LOOP AT itab INTO wa.
MOVE wa TO wa2.
AT NEW matnr.
 APPEND wa2 TO itab2.
 CONTINUE.
ENDAT.
LOOP AT itab2 WHERE matnr = wa-matnr.
itab2-quantity = itab2-quantity + itab-quantity.
MODIFY itab2 TRANSPORTING quantity.
ENDLOOP.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Wenceslaus.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 08:14:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243941#M142982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T08:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: report help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243942#M142983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;AT NEW MATNR.&lt;/P&gt;&lt;P&gt;SUM.                (THIS STATEMENTS SUMS THE NUMERIC)&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 08:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243942#M142983</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-03-03T08:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: report help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243943#M142984</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;In your select querry,&lt;/P&gt;&lt;P&gt;take SUM(QTY)and use GROUP BY clause for MATNR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 08:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-help/m-p/1243943#M142984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T08:26:15Z</dc:date>
    </item>
  </channel>
</rss>

