<?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: SELECTION SCREEN Error in Module Pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707776#M32512</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I am still not convince with this answer. But I'll explain my concern more clearly. The challenge is how to create a selection screen in module pool with select-options.&lt;/P&gt;
  &lt;P&gt;Regards,&lt;BR /&gt;Anurag &lt;/P&gt;</description>
    <pubDate>Mon, 23 Jul 2018 09:46:46 GMT</pubDate>
    <dc:creator>anurag_singh16</dc:creator>
    <dc:date>2018-07-23T09:46:46Z</dc:date>
    <item>
      <title>SELECTION SCREEN Error in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707772#M32508</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I am getting this error that the selection screen is not getting created.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;H3&gt;Screen ZDEMO_OOPS_ALV 2000 already exists (not a selection screen)&lt;/H3&gt;
  &lt;P&gt;Message No. DB011&lt;/P&gt;
  &lt;H3&gt;Diagnosis&lt;/H3&gt;
  &lt;P&gt;When generating the report ZDEMO_OOPS_ALV and its selection screen, an existing screen 1000 (not a selection screen) was overwritten.&lt;/P&gt;
  &lt;H3&gt;System Response&lt;/H3&gt;
  &lt;P&gt;Selection screen generation terminated.&lt;/P&gt;
  &lt;H3&gt;Procedure&lt;/H3&gt;
  &lt;P&gt;Please check the existing screen and delete it, if it is no longer needed. If you still want to use it, assign another number to it, in order to avoid any conflict with the selection screens (numbers 1000 to 1010). If your program is not a report and you do not need selection screens, change the program type in the attributes.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I have created this code:&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 2000.&lt;BR /&gt; SELECT-OPTIONS : s_table FOR wa_dd02l-tabname NO INTERVALS.&lt;/P&gt;
  &lt;P&gt;SELECTION-SCREEN: END OF SCREEN 2000.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;START-OF-SELECTION.&lt;BR /&gt; CALL SCREEN 1000.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;What do I need to do ?&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I am getting confused, can't see anywhere people discussing about the Layout also. Don't know where exactly the error is.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jul 2018 11:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707772#M32508</guid>
      <dc:creator>anurag_singh16</dc:creator>
      <dc:date>2018-07-20T11:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN Error in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707773#M32509</link>
      <description>&lt;P&gt;In module pools you usually need the define the screens with the SELECTION_SCREEN commands. You just add them in SE80 and configure them there.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jul 2018 12:00:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707773#M32509</guid>
      <dc:creator>ArthurParisius</dc:creator>
      <dc:date>2018-07-20T12:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN Error in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707774#M32510</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;As displayed before...&lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;"If you still want to use it, assign another number to it, in order to avoid any conflict with the selection screens"&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt;SAP documentation will help you understanding it better.&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF SCREEN 999 TITLE title AS WINDOW. 
PARAMETERS ... TYPE ... 
SELECTION-SCREEN END OF SCREEN 999. 
...
CALL SELECTION-SCREEN '0999' STARTING AT ...&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Jul 2018 20:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707774#M32510</guid>
      <dc:creator>roberto_forti</dc:creator>
      <dc:date>2018-07-20T20:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN Error in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707775#M32511</link>
      <description>&lt;P&gt;The screen 1000 is standard selection screen which are defined with PARAMETER, SELECTION-OPTIONS, so as your code in START-OF-SELECTION i can see you calling another 1000 screen and it make conflict with SAP. change the screen number from 1000 to other number if you still want to keep that screen.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 02:18:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707775#M32511</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2018-07-23T02:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN Error in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707776#M32512</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I am still not convince with this answer. But I'll explain my concern more clearly. The challenge is how to create a selection screen in module pool with select-options.&lt;/P&gt;
  &lt;P&gt;Regards,&lt;BR /&gt;Anurag &lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 09:46:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707776#M32512</guid>
      <dc:creator>anurag_singh16</dc:creator>
      <dc:date>2018-07-23T09:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN Error in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707777#M32513</link>
      <description>&lt;P&gt;Try looking &lt;A href="https://archive.sap.com/discussions/thread/199048"&gt;here&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 09:57:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-error-in-module-pool/m-p/707777#M32513</guid>
      <dc:creator>ArthurParisius</dc:creator>
      <dc:date>2018-07-23T09:57:34Z</dc:date>
    </item>
  </channel>
</rss>

