<?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: LIST_FROM_MEMORY raises exception 'not_found' for FF_5 program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-from-memory-raises-exception-not-found-for-ff-5-program/m-p/6409407#M1407613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is because list is not getting transported to memory, check what is the result of the report to which you submit.&lt;/P&gt;&lt;P&gt;it can also be an error message and hence no list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Nov 2009 15:30:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-26T15:30:45Z</dc:date>
    <item>
      <title>LIST_FROM_MEMORY raises exception 'not_found' for FF_5 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-from-memory-raises-exception-not-found-for-ff-5-program/m-p/6409405#M1407611</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 need to call the transaction FF_5 from a Z program and fetch the output list of this tcode into an internal table for further processing. I have used following lines of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RFBASM00 &lt;/P&gt;&lt;P&gt;  WITH einlesen EQ c_x&lt;/P&gt;&lt;P&gt;  WITH format EQ c_i&lt;/P&gt;&lt;P&gt;  WITH auszfile EQ l_filename&lt;/P&gt;&lt;P&gt;EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    listobject = t_object&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    not_found  = 1&lt;/P&gt;&lt;P&gt;    OTHERS     = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FF_5 returns its output as an ALV list but the FM 'LIST_FROM_MEMORY' returns sy-subrc = 1, saying the list is not found in the memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2009 12:35:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-from-memory-raises-exception-not-found-for-ff-5-program/m-p/6409405#M1407611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-24T12:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: LIST_FROM_MEMORY raises exception 'not_found' for FF_5 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-from-memory-raises-exception-not-found-for-ff-5-program/m-p/6409406#M1407612</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;this Trick will work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  within your main program call a little Z-Program via CALL_TRANSACTION USNG...&lt;/P&gt;&lt;P&gt;    (This will set SY-BPINT to "X")&lt;/P&gt;&lt;P&gt;2.  within the Z-Program you do the SUBMIT RFBASM00 ... EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;3. in your main programm you can read the ALV-output with LIST_FROM_MEMORY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason for this detour is the fact that only ALV-ouput as List can be fetched by LIST_FROM_MEMORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it solves your problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 14:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-from-memory-raises-exception-not-found-for-ff-5-program/m-p/6409406#M1407612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-26T14:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: LIST_FROM_MEMORY raises exception 'not_found' for FF_5 program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-from-memory-raises-exception-not-found-for-ff-5-program/m-p/6409407#M1407613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is because list is not getting transported to memory, check what is the result of the report to which you submit.&lt;/P&gt;&lt;P&gt;it can also be an error message and hence no list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 15:30:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-from-memory-raises-exception-not-found-for-ff-5-program/m-p/6409407#M1407613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-26T15:30:45Z</dc:date>
    </item>
  </channel>
</rss>

