<?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: problem in exporting internal table to memory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228376#M479233</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishu,&lt;/P&gt;&lt;P&gt; Since the program RFTBCF00 is a standard one, you cannot modify the program to export whatever internal tables you want.&lt;/P&gt;&lt;P&gt;YOu can export the output of that program to a memory location if you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit RFTBCF00 ....exporting list to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;later you can use the fm LIST_FROM_MEMORY to get the exported output table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Apr 2007 10:24:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-23T10:24:11Z</dc:date>
    <item>
      <title>problem in exporting internal table to memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228373#M479230</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 to export two internal tables (thead and titem) from a report (RFTBCF00) to memory which i will import in my function module can anyone letme know hw it cud b done .&lt;/P&gt;&lt;P&gt;Points will b assigned&lt;/P&gt;&lt;P&gt;Thnx,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 10:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228373#M479230</guid>
      <dc:creator>former_member189410</dc:creator>
      <dc:date>2007-04-23T10:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: problem in exporting internal table to memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228374#M479231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Nishu,&lt;/P&gt;&lt;P&gt;U can use ABAP MEMORY concept eport / import the internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 10:23:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228374#M479231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T10:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: problem in exporting internal table to memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228375#M479232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can take the help of this example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report  z_82235_test1                           .

types: begin of tab1,
         a(1),
         b(1),
       end of tab1.

types: begin of tab2,
         c(1),
         d(1),
       end of tab2.

data: itab1 type table of tab1,
      wa1 like line of itab1,
      itab2 type table of tab2,
      wa2 like line of itab2.

wa1-a = '1'.
wa1-b = '2'.
append wa1 to itab1.
clear wa1.

wa1-a = '3'.
wa1-b = '4'.
append wa1 to itab1.
clear wa1.


export itab1 to memory id '001'.
export itab2 to memory id '002'.

submit z_82235_test2 and return exporting list to memory .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 10:24:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228375#M479232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T10:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: problem in exporting internal table to memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228376#M479233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishu,&lt;/P&gt;&lt;P&gt; Since the program RFTBCF00 is a standard one, you cannot modify the program to export whatever internal tables you want.&lt;/P&gt;&lt;P&gt;YOu can export the output of that program to a memory location if you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit RFTBCF00 ....exporting list to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;later you can use the fm LIST_FROM_MEMORY to get the exported output table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 10:24:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-exporting-internal-table-to-memory/m-p/2228376#M479233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T10:24:11Z</dc:date>
    </item>
  </channel>
</rss>

