<?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: Internal Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432531#M543897</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Fetch the data from MKPF and MSEG into a Single internal table with the required fields by jopining them with MBLNR field&lt;/P&gt;&lt;P&gt;then try to change the field BUDAT in that ITAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jun 2007 07:01:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-27T07:01:43Z</dc:date>
    <item>
      <title>Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432530#M543896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have two Internal Tables IT_MSEG and IT_MKPF.&lt;/P&gt;&lt;P&gt;IT_MKPF Contains BUDAT Posting date for every record but it_mseg does not contai.&lt;/P&gt;&lt;P&gt;So, My problem is I have to add this BUDAT into IT_MSEG for every record by comparing MBLNR .&lt;/P&gt;&lt;P&gt;How can we do it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can we do it by a single modify statement or not ?&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 06:59:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432530#M543896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T06:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432531#M543897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Fetch the data from MKPF and MSEG into a Single internal table with the required fields by jopining them with MBLNR field&lt;/P&gt;&lt;P&gt;then try to change the field BUDAT in that ITAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 07:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432531#M543897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T07:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432532#M543898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes this can be done.&lt;/P&gt;&lt;P&gt;first of all u ned to add the field in the structure of it_mseg.&lt;/P&gt;&lt;P&gt;then use the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_mkpf.&lt;/P&gt;&lt;P&gt;read table it_mseg with key mblnr = it_mkpf-mblnr.&lt;/P&gt;&lt;P&gt;if sy-subrc  0.&lt;/P&gt;&lt;P&gt;it_mseg-mblnr = it_mkpf-mblnr.&lt;/P&gt;&lt;P&gt;modify it_mseg.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;clear it_mseg.&lt;/P&gt;&lt;P&gt;clear it_mkpf.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards abhi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 07:04:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432532#M543898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T07:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432533#M543899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes this can be done.&lt;/P&gt;&lt;P&gt;first of all u ned to add the field in the structure of it_mseg.&lt;/P&gt;&lt;P&gt;then use the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_mkpf.&lt;/P&gt;&lt;P&gt;read table it_mseg with key mblnr = it_mkpf-mblnr.&lt;/P&gt;&lt;P&gt;if sy-subrc 0.&lt;/P&gt;&lt;P&gt;it_mseg-budat = it_mkpf-budat.&lt;/P&gt;&lt;P&gt;modify it_mseg.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;clear it_mseg.&lt;/P&gt;&lt;P&gt;clear it_mkpf.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards abhi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 07:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432533#M543899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T07:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432534#M543900</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;Refer this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_EKPO.&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING IT_EKPO TO IT_MERGE.&lt;/P&gt;&lt;P&gt;  APPEND IT_MERGE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;LOOP AT IT_MERGE .&lt;/P&gt;&lt;P&gt;  READ TABLE IT_EKKO WITH KEY EBELN = IT_MERGE-EBELN BINARY SEARCH.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING IT_EKKO TO IT_MERGE.&lt;/P&gt;&lt;P&gt;    MODIFY IT_MERGE.&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;&lt;/P&gt;&lt;P&gt;Reward all helpfull answers.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 07:07:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432534#M543900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T07:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432535#M543901</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;Can I have the Query ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 07:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2432535#M543901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T07:18:43Z</dc:date>
    </item>
  </channel>
</rss>

