<?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: Control Framework: Fatal error - GUI cannot be reached in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005690#M77751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am facing this error when i call my Remote Function module from WebDynpro application. In side the remote function module i am performing a BDC using CAll Transaction. From SE37 it works fine. When i call it from WebDynpro it gives the above error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Nov 2005 20:12:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-23T20:12:08Z</dc:date>
    <item>
      <title>Control Framework: Fatal error - GUI cannot be reached</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005687#M77748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Situation:&lt;/P&gt;&lt;P&gt;I have created a transaction which uses a lot of &lt;/P&gt;&lt;P&gt;Grids bases on class: CL_GUI_ALV_GRID.&lt;/P&gt;&lt;P&gt;Problem:&lt;/P&gt;&lt;P&gt;Now I want to create initial data calling this transaction in BACKGROUND-TASK!&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;If I do this, following error occurs:&lt;/P&gt;&lt;P&gt;Control Framework: Fatal error - GUI cannot be reached&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I avoid this error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot in advance&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2005 11:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005687#M77748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-06T11:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Control Framework: Fatal error - GUI cannot be reached</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005688#M77749</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;insert foll. lines before starting grid:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD cl_gui_alv_grid=&amp;gt;offline
                RECEIVING e_offline = off.
    IF off IS INITIAL.
      CREATE OBJECT g_custom_container
             EXPORTING container_name = g_container.
    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2005 11:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005688#M77749</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-10-06T11:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Control Framework: Fatal error - GUI cannot be reached</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005689#M77750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for Your solving,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have done similar to your suggestion.&lt;/P&gt;&lt;P&gt;I am checking SY-BATCH &amp;lt;&amp;gt; 'X', before &lt;/P&gt;&lt;P&gt;creating the controls.&lt;/P&gt;&lt;P&gt;But anyway, your way is much more elegant!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2005 11:57:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005689#M77750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-06T11:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: Control Framework: Fatal error - GUI cannot be reached</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005690#M77751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am facing this error when i call my Remote Function module from WebDynpro application. In side the remote function module i am performing a BDC using CAll Transaction. From SE37 it works fine. When i call it from WebDynpro it gives the above error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2005 20:12:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-framework-fatal-error-gui-cannot-be-reached/m-p/1005690#M77751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-23T20:12:08Z</dc:date>
    </item>
  </channel>
</rss>

