<?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: Move data from one internal table to another in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880597#M676508</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare two work area and following the coding as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at l_s_data into wa_s_data.&lt;/P&gt;&lt;P&gt;move-corresponding wa_s_data  to wa_s_data_line.&lt;/P&gt;&lt;P&gt;append wa_s_data_line to l_s_data_line.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Sep 2007 17:51:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-19T17:51:31Z</dc:date>
    <item>
      <title>Move data from one internal table to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880596#M676507</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;I have two internal tables l_s_data and l_s_data_line. Both the tables are identical except for one field in l_s_data. Now I want to move all the content from l_s_data_line to l_s_data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one tell me how to do it? Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 17:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880596#M676507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T17:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Move data from one internal table to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880597#M676508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare two work area and following the coding as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at l_s_data into wa_s_data.&lt;/P&gt;&lt;P&gt;move-corresponding wa_s_data  to wa_s_data_line.&lt;/P&gt;&lt;P&gt;append wa_s_data_line to l_s_data_line.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 17:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880597#M676508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T17:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Move data from one internal table to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880598#M676509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;u have to use the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say one internal table is  l_s_data  and the other is l_s_data_line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also workarea are wa_tab,wa_tab1 respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at  l_s_data  into wa_tab. &lt;/P&gt;&lt;P&gt;move-corresponding wa_tab to wa_tab1.&lt;/P&gt;&lt;P&gt;append l_s_data_line from wa_tab1.&lt;/P&gt;&lt;P&gt;clear : wa_tab,&lt;/P&gt;&lt;P&gt;wa_tab1.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 17:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880598#M676509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T17:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Move data from one internal table to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880599#M676510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Baburaj. could you  please also tell me how to define wa_s_data in the data section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will the following work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data wa_s_data like l_s_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 17:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880599#M676510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T17:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Move data from one internal table to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880600#M676511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: wa_l_s_data like line of l_s_data,&lt;/P&gt;&lt;P&gt;          wa_l_s_data_line like line of l_s_data_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 18:01:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880600#M676511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T18:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Move data from one internal table to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880601#M676512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya kiran u can do that like... in my above code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_tab like line of l_s_data,&lt;/P&gt;&lt;P&gt;wa_tab1 line like line of l_s_data_line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 18:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-data-from-one-internal-table-to-another/m-p/2880601#M676512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T18:04:45Z</dc:date>
    </item>
  </channel>
</rss>

