<?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: While using READ TABLE for internal table, the next record gets refresh in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088340#M1971577</link>
    <description>&lt;P&gt;maybe the mystery is in ELSE which we cant see.&lt;/P&gt;</description>
    <pubDate>Wed, 27 Nov 2019 05:05:44 GMT</pubDate>
    <dc:creator>DoanManhQuynh</dc:creator>
    <dc:date>2019-11-27T05:05:44Z</dc:date>
    <item>
      <title>While using READ TABLE for internal table, the next record gets refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088337#M1971574</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I have a ITAB1, am looping this and want to capture the entry in another ITAB2.&lt;BR /&gt;Say I have 4 entries in ITAB1, after loop ITAB2 has 4 entries.&lt;/P&gt;
  &lt;P&gt;LOOP AT ITAB1 INTO wa_itab1.&lt;/P&gt;
  &lt;P&gt;READ TABLE ITAB2 TRANSPORTING NO FIELDS WITH KEY exidv = wa_itab1-exidv.&lt;/P&gt;
  &lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;
  &lt;P&gt;CLEAR:wa_itab1.&lt;/P&gt;
  &lt;P&gt;CONTINUE.&lt;/P&gt;
  &lt;P&gt;ELSE.&lt;BR /&gt;PERFORM print_et TABLES gt_hukey USING …….&lt;BR /&gt;ENDIF.&lt;/P&gt;
  &lt;P&gt;APPEND wa_itab1 TO itab2.&lt;/P&gt;
  &lt;P&gt;CLEAR wa_itab1.&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt; 
   &lt;DEL&gt;&lt;/DEL&gt;&lt;/P&gt;
  &lt;P&gt;So here the ITAB2 gets refreshed all the time.&lt;/P&gt;
  &lt;P&gt;What could be reason, is there anything wrong with READ...TRANSPORTING... because of which this is happening?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 21:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088337#M1971574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-11-26T21:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: While using READ TABLE for internal table, the next record gets refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088338#M1971575</link>
      <description>&lt;P&gt;if in your table ITAB1 the field exidv for the 4 rows is diferent, when you read the ITAB2 the sy-subrc is 4 then never continue, and append all rows in the second table.&lt;/P&gt;&lt;P&gt;there are some questions, are the structure of itab1 and itab2 equal?; do you wants move all rows to itab2?; rhat is the condition for move the rows?.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 21:54:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088338#M1971575</guid>
      <dc:creator>mlizcano1</dc:creator>
      <dc:date>2019-11-26T21:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: While using READ TABLE for internal table, the next record gets refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088339#M1971576</link>
      <description>&lt;P&gt;Why don't you just use the debugger to analyze the issue? (set breakpoint at the line you want and run the program)&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 22:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088339#M1971576</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-11-26T22:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: While using READ TABLE for internal table, the next record gets refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088340#M1971577</link>
      <description>&lt;P&gt;maybe the mystery is in ELSE which we cant see.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 05:05:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088340#M1971577</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-11-27T05:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: While using READ TABLE for internal table, the next record gets refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088341#M1971578</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/users/908559/akashsuraj.html"&gt;akash suraj&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;can you let us know your complete code, i would like to know how the entries from ITAB1 is moved to ITAB2. Without the full code it will be difficult to suggest a solution in your case.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 05:06:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088341#M1971578</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2019-11-27T05:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: While using READ TABLE for internal table, the next record gets refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088342#M1971579</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use a watchpoint on itab2 to see at which point it gets refreshed or simply search for refresh itab2 in your code &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ....&lt;/P&gt;&lt;P&gt;my guess would be in perform print_et.. it could be refreshing all data after doing the print function.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2019 09:48:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/while-using-read-table-for-internal-table-the-next-record-gets-refresh/m-p/12088342#M1971579</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2019-11-27T09:48:55Z</dc:date>
    </item>
  </channel>
</rss>

