<?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 with SUBMIT... EXPORTING LIST TO MEMORY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898081#M1596482</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you should call the process that is generating data (FM &lt;U&gt;STRC&lt;/U&gt;DISPLAY_WP_TRACE in your case) in background, so trace information isn´t shown at all.&lt;/P&gt;&lt;P&gt;Have a look at [this thread|;, specially at Saba Sayed suggestion, that already worked in a similar situation for me.&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;mr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 May 2011 19:15:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-04T19:15:55Z</dc:date>
    <item>
      <title>Problem with SUBMIT... EXPORTING LIST TO MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898080#M1596481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a need to read work process trace file from other SAP server (you can see them in ST11) and I want to use it with standard SAP FM (not with my own). I've found only FM &lt;U&gt;STRC&lt;/U&gt;DISPLAY_WP_TRACE, but instead of returning a table it's showing results on screen. So my idea was to write a short report like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT Z_TMP
CALL FUNCTION '_STRC_DISPLAY_WP_TRACE' DESTINATION 'none'
.......
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and with it I would write in my main report something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT z_tmp AND RETURN EXPORING LIST TO MEMORY.
CALL FUNCTION 'LIST_FROM_MEMORY'
.....
CALL FUNCTION 'LIST_TO_ASCI'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is that when I execute my main report then trace is being shown (like when I would call &lt;U&gt;STRC&lt;/U&gt;DISPLAY_WP_TRACE from SE37). After pressing BACK it's executed back where it stopped, but FM LIST_FROM_MEMORY is returning an error.&lt;/P&gt;&lt;P&gt;Problem is this DESTINATION part. When I delete it, then SUBMIT is executed without any problem (no trace file is being shown) and FM LIST_FROM_MEMORY is returning normal value, not an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know what am I doing wrong here? I guess I'm missing something about RFC calls in SAP. When I think about it, I'm starting to wonder, how does it work, that when I call with RFC FM which use WRITE command I'm able to see it localy?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or maybe there is another SAP FM which I could use to read WP trace file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Marcin Cholewczuk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2011 16:20:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898080#M1596481</guid>
      <dc:creator>marcin_cholewczuk</dc:creator>
      <dc:date>2011-05-04T16:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SUBMIT... EXPORTING LIST TO MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898081#M1596482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you should call the process that is generating data (FM &lt;U&gt;STRC&lt;/U&gt;DISPLAY_WP_TRACE in your case) in background, so trace information isn´t shown at all.&lt;/P&gt;&lt;P&gt;Have a look at [this thread|;, specially at Saba Sayed suggestion, that already worked in a similar situation for me.&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;mr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2011 19:15:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898081#M1596482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-04T19:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SUBMIT... EXPORTING LIST TO MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898082#M1596483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The destination name in the RFC call should be 'NONE' and not 'none'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2011 21:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898082#M1596483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-04T21:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SUBMIT... EXPORTING LIST TO MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898083#M1596484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manuel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not possible. When I do it I'm getting SYSTEM_FAILURE exception with message "Screen displayed without connection to user", so my guess is that when one is calling FM with use of RFC and this FM is using WRITE statement or CALL SCREEN, then on calling side SAP is internaly creating screen. I don't think that I can do much about it. So my only solution is to read that file with use of other FM. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some more info here if anyone is interested &lt;A href="http://www.sapnet.ru/abap_docu/ABENRFC_SYS_FAIL.htm" target="test_blank"&gt;http://www.sapnet.ru/abap_docu/ABENRFC_SYS_FAIL.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Marcin Cholewczuk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;I've found these two FM DB6_DIAG_READ_FILE, SALC_READ_PROFILE_PARAMETERS, but if anyone has something better (llike one FM) it would be great - FM GWY_READ_WP_FILE is using wrong filme (dev_wp0 instead of dev_w0) so it's not good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Marcin Cholewczuk on May 5, 2011 11:47 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2011 08:03:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit-exporting-list-to-memory/m-p/7898083#M1596484</guid>
      <dc:creator>marcin_cholewczuk</dc:creator>
      <dc:date>2011-05-05T08:03:52Z</dc:date>
    </item>
  </channel>
</rss>

