<?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: dump table_free_in_loop in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468771#M2000790</link>
    <description>&lt;P&gt;First step. Stop using FORMs. Second step, use classes and methods instead. You need to change the function module call so it calls a method instead of a form.&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I love the totally redundant four characters of the FORM name. &lt;STRONG&gt;frm_&lt;/STRONG&gt; just in case someone thought it was, what? A fish?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Anyway, since we've no context, it's impossible to answer your question,&lt;/P&gt;</description>
    <pubDate>Mon, 27 Sep 2021 11:25:45 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2021-09-27T11:25:45Z</dc:date>
    <item>
      <title>dump table_free_in_loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468769#M2000788</link>
      <description>&lt;P&gt;hi experts,&lt;/P&gt;
  &lt;P&gt;sent http requests using Parallel processing,but using a few minutes errors table_free_in_loop,How should I solve this problem?&lt;/P&gt;
  &lt;P&gt;Ａｄｄｉｎｇ：&lt;/P&gt;
  &lt;P&gt;I think it is because of two asynchronous functions that cause the disorder of callback, but I don't know how to solve it. The second asynchronous function calls back the first form defined by the first asynchronous function&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://answers.sap.com/storage/temp/1983485-codes.txt"&gt;codes.txt&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1982462-picture.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 10:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468769#M2000788</guid>
      <dc:creator>former_member660488</dc:creator>
      <dc:date>2021-09-27T10:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: dump table_free_in_loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468770#M2000789</link>
      <description>&lt;P&gt;What did you do ? is it standard report ? What is the call stack in the dump ?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 10:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468770#M2000789</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-09-27T10:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: dump table_free_in_loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468771#M2000790</link>
      <description>&lt;P&gt;First step. Stop using FORMs. Second step, use classes and methods instead. You need to change the function module call so it calls a method instead of a form.&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I love the totally redundant four characters of the FORM name. &lt;STRONG&gt;frm_&lt;/STRONG&gt; just in case someone thought it was, what? A fish?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Anyway, since we've no context, it's impossible to answer your question,&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 11:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468771#M2000790</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2021-09-27T11:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: dump table_free_in_loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468772#M2000791</link>
      <description>&lt;P&gt;Because I have to seize resources sometimes, I still have to continue to send requests when I can't get a response from the services, so my solution is to use asynchronously call method &lt;/P&gt;&lt;P&gt;but the call back form errors .&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 11:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468772#M2000791</guid>
      <dc:creator>former_member660488</dc:creator>
      <dc:date>2021-09-27T11:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: dump table_free_in_loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468773#M2000792</link>
      <description>&lt;P&gt;table_free_in_loop means this kind of code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT itab.
  FREE itab.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It's probably not done on purpose.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 13:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468773#M2000792</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-09-27T13:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: dump table_free_in_loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468774#M2000793</link>
      <description>&lt;P&gt;Put the cursor on the variable &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;gw_output_query_data &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and execute the where-used list option.&lt;/P&gt;&lt;P&gt;Check for statements that clear its member data - CLEAR, REFRESH, FREE, etc. in an expected way.&lt;/P&gt;&lt;P&gt;Then i guess it will not be that easy, i assume by looking at your code that you are developing an OData service, and maybe the clear takes place automatically/is done by the framework. In this case you should analyze better your request/response scenarios and the corresp. bufffering.  &lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 13:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-table-free-in-loop/m-p/12468774#M2000793</guid>
      <dc:creator>former_member660513</dc:creator>
      <dc:date>2021-09-27T13:49:50Z</dc:date>
    </item>
  </channel>
</rss>

