<?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 Internal Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032970#M717462</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to copy certain fields of an internal table along with data  into another internal table.Plz reply soon.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Nov 2007 22:41:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-13T22:41:19Z</dc:date>
    <item>
      <title>Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032970#M717462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to copy certain fields of an internal table along with data  into another internal table.Plz reply soon.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 22:41:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032970#M717462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T22:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032971#M717463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at it_source.
MOVE-CORRESPONDING  it_source to it_target.
append it_target.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 22:45:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032971#M717463</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-13T22:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032972#M717464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have done that but all the fields along with the fields in first internal table are getting displayed instead  of the only  fields that are present in second internal table .plz advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        ajaya moharana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 23:27:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032972#M717464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T23:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032973#M717465</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; do like this, this is similar to Naimesh answers, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; just try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at it_source.&lt;/P&gt;&lt;P&gt;MOVE: it_source-f1 to it_target-f1,&lt;/P&gt;&lt;P&gt;            it_source-f2 to it_target-f2.&lt;/P&gt;&lt;P&gt;append it_target.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 23:31:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032973#M717465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T23:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032974#M717466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If both internal table are same structure means same fields with same order then just write as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab1[]  = itab2[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If both are diffrent then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop  at itab1&lt;/P&gt;&lt;P&gt;Move corresponding fields from itab1 to itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 03:01:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032974#M717466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T03:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032975#M717467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajaya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want only particular fields of one internal table to another, try this way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab,&lt;/P&gt;&lt;P&gt;         a type c,&lt;/P&gt;&lt;P&gt;         b type i&lt;/P&gt;&lt;P&gt;         end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of jtab,&lt;/P&gt;&lt;P&gt;         c type c,&lt;/P&gt;&lt;P&gt;         d type i&lt;/P&gt;&lt;P&gt;         end of jtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;if you want only field a of table itab to field c of jtab&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab.&lt;/P&gt;&lt;P&gt;jtab-c = itab-a.&lt;/P&gt;&lt;P&gt;append jtab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 04:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032975#M717467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T04:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032976#M717468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let ITAB1 contains 5 fields and ITAB2 contains 5 fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab1..... field1, field2, field3, field4, field5.&lt;/P&gt;&lt;P&gt;Itab2..... field1, field2, field3, field6, field7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if we want to copy only field1 and field2 from itab1 to itab2. then,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;move: itab1-field1 to itab2-field1,&lt;/P&gt;&lt;P&gt;      itab1-field2 to itab2-field2.&lt;/P&gt;&lt;P&gt;append itab2.&lt;/P&gt;&lt;P&gt;clear itab2.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 04:37:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3032976#M717468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T04:37:55Z</dc:date>
    </item>
  </channel>
</rss>

