<?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: help in error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175871#M462102</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi  Sadiqulla Shaik&lt;/P&gt;&lt;P&gt;maybe u can explain it better&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Apr 2007 09:49:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-25T09:49:16Z</dc:date>
    <item>
      <title>help in error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175868#M462099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hallow&lt;/P&gt;&lt;P&gt;I have  alv report that when I double click on my first colman it open a new window with table that I wont. I have 2 containers 1 for the main alv and second for the window I open &lt;/P&gt;&lt;P&gt;This is the  Error analysis	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The attribute screen type with the values 'Normal Screen' and&lt;/P&gt;&lt;P&gt; 'Subscreen' determines the use of the screen. If a normal screen is used&lt;/P&gt;&lt;P&gt;  as subscreen or vice versa, an error occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The screen "YHR_QUOTA_TEST" 0200 has, in this respect, an inappropriate screen&lt;/P&gt;&lt;P&gt;  type.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what can i do to solve error &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;This is the code for the 2 containers&lt;/P&gt;&lt;P&gt;This for main alv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE pbo OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'MAIN100'.&lt;/P&gt;&lt;P&gt;  SET TITLEBAR  'MAIN100'.&lt;/P&gt;&lt;P&gt;  IF g_custom_container IS INITIAL.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT g_custom_container&lt;/P&gt;&lt;P&gt;           EXPORTING container_name = g_container.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT grid1&lt;/P&gt;&lt;P&gt;            EXPORTING i_parent = g_custom_container.&lt;/P&gt;&lt;P&gt;    gs_layout-grid_title = text-020.&lt;/P&gt;&lt;P&gt;    CALL METHOD grid1-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     create object w_event_receiver.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_structure_name     = 'YHR_Q4_STR'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       it_toolbar_excluding = gt_exclude&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      is_layout            = gs_layout&lt;/P&gt;&lt;P&gt;      is_variant           = variant&lt;/P&gt;&lt;P&gt;      i_save               = 'A'&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      it_outtab            = itab&lt;/P&gt;&lt;P&gt;      it_fieldcatalog      = fcat.    " FOR FIELD CATALOG&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT event_receiver.          "Event For Double Click&lt;/P&gt;&lt;P&gt;  SET HANDLER event_receiver-&amp;gt;handle_double_click FOR grid1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is for window open&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE pbo_0200 OUTPUT.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'MAIN100'.&lt;/P&gt;&lt;P&gt;  SET TITLEBAR  'MAIN100'.&lt;/P&gt;&lt;P&gt;  IF custom_container2 IS INITIAL.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT custom_container2&lt;/P&gt;&lt;P&gt;           EXPORTING container_name = cont_on_dialog.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT grid2&lt;/P&gt;&lt;P&gt;            EXPORTING i_parent = custom_container2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    gs_layout-grid_title = text-020.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD grid2-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_structure_name     = 'YHR_Q4_STR'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    it_toolbar_excluding = gt_exclude&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      is_layout            = gs_layout&lt;/P&gt;&lt;P&gt;      is_variant           = variant&lt;/P&gt;&lt;P&gt;      i_save               = 'A'&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      it_outtab            = itab&lt;/P&gt;&lt;P&gt;      it_fieldcatalog      = fcat.    " FOR FIELD CATALOG&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175868#M462099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: help in error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175869#M462100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change the screen type for screen 200 in screen attributes and check.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:45:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175869#M462100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: help in error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175870#M462101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ya u r correct Sadiqulla,&lt;/P&gt;&lt;P&gt; Change the screen type Subscreen to Normal screen.&lt;/P&gt;&lt;P&gt;If u r using subscreen u have to attach this screen to the main screen.&lt;/P&gt;&lt;P&gt;Otherwise u cant see the Subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:48:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175870#M462101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: help in error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175871#M462102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi  Sadiqulla Shaik&lt;/P&gt;&lt;P&gt;maybe u can explain it better&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:49:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175871#M462102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: help in error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175872#M462103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Screen are of three types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normal Screen,&lt;/P&gt;&lt;P&gt;Sub-screens &lt;/P&gt;&lt;P&gt;Modal Dialog Boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A normal screen cannot be called with a screen, a sub-screen can be.&lt;/P&gt;&lt;P&gt;In the same way a sub-screen cannot exist independently like a normal screen..If u are calling a screen in a screen it must be sub-screen. If u are accesing a screen independetly it must be a normal screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175872#M462103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: help in error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175873#M462104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto SE51&lt;/P&gt;&lt;P&gt;Give the program name and screen number&lt;/P&gt;&lt;P&gt;and select the Attributes radiobutton&lt;/P&gt;&lt;P&gt;change the screen to subscreen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 09:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-error/m-p/2175873#M462104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T09:55:58Z</dc:date>
    </item>
  </channel>
</rss>

