<?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: Need Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/3009916#M711286</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare an internal table it_final with fields Matnr,WERKS, bdzei, qty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab1 into wa1.
 wa_final-matnr = wa1-matnr.
 wa_final-werks = wa1-werks.
 wa_final-bezei = wa1-bezei.
 read table itab2 into wa2 with key bezei = wa1-bezei.
 if sy-subrc = 0.
  move wa2-qty to wa_final-qty. 
 endif.
append wa_final to it_final.
clear wa_final.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for helpful answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Oct 2007 14:13:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-31T14:13:42Z</dc:date>
    <item>
      <title>Need Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/3009915#M711285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have one internal table Matnr,WERKS, bdzei . ie material, S.org, req pointer.&lt;/P&gt;&lt;P&gt;i have anothoer internal table with bdzei, qty. i want to merge the two internal table into one according to there material no and its qty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one plz help its urgent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;point will be sure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 14:07:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/3009915#M711285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T14:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/3009916#M711286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare an internal table it_final with fields Matnr,WERKS, bdzei, qty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab1 into wa1.
 wa_final-matnr = wa1-matnr.
 wa_final-werks = wa1-werks.
 wa_final-bezei = wa1-bezei.
 read table itab2 into wa2 with key bezei = wa1-bezei.
 if sy-subrc = 0.
  move wa2-qty to wa_final-qty. 
 endif.
append wa_final to it_final.
clear wa_final.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for helpful answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 14:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/3009916#M711286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T14:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/3009917#M711287</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;Here is sample code -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT IT_MATNR BY MATNR.&lt;/P&gt;&lt;P&gt;SORT IT_QTY NY BDZEI.&lt;/P&gt;&lt;P&gt;LOOP AT IT_MATNR.&lt;/P&gt;&lt;P&gt;READ TABLE IT_QTY WITH KEY BDZEI = IT_MATNR-BDZEI.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;  IT_MATNR=QTY = IT_QTY-QTY.&lt;/P&gt;&lt;P&gt;  MODIFY IT_MATNR INDEX SY-TABIX TRANSPORTING QTY.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&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;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 14:14:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/3009917#M711287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T14:14:10Z</dc:date>
    </item>
  </channel>
</rss>

