<?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 problem in creating selection screen from screen painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004631#M1165207</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;      i am working with screens i have created a screen and in that wehn i click report button it has to ask for select options for dates.from there i will write a select quesry based on selection dates ...how to call a selection screen from screen.i created an include and in that include i used select options.but it is showing error message .guide me how to do it ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Jan 2009 08:09:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-07T08:09:50Z</dc:date>
    <item>
      <title>problem in creating selection screen from screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004631#M1165207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;      i am working with screens i have created a screen and in that wehn i click report button it has to ask for select options for dates.from there i will write a select quesry based on selection dates ...how to call a selection screen from screen.i created an include and in that include i used select options.but it is showing error message .guide me how to do it ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 08:09:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004631#M1165207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T08:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem in creating selection screen from screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004632#M1165208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your screen type should be selection screen for using selection elements like select-options etc...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 08:25:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004632#M1165208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T08:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: problem in creating selection screen from screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004633#M1165209</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;&lt;/P&gt;&lt;P&gt;You can create low and high values in module pool.so no need to create in selection screen.&lt;/P&gt;&lt;P&gt;Refer this link to know abt low and high value in module pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.abapcode.info/2007/05/abap4-program-describe-select-options.html" target="test_blank"&gt;http://www.abapcode.info/2007/05/abap4-program-describe-select-options.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abap-explorer.blogspot.com/2008/08/create-select-options-in-module-pool.html" target="test_blank"&gt;http://abap-explorer.blogspot.com/2008/08/create-select-options-in-module-pool.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 08:39:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004633#M1165209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T08:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: problem in creating selection screen from screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004634#M1165210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
************main program*************************
START-OF-SELECTION.
**********500 --&amp;gt;name of the screen****
  CALL SCREEN 500.  
  SELECTION-SCREEN BEGIN OF SCREEN 101 TITLE title
                                     AS WINDOW.
 select-options ardat for sy-datum.

 SELECTION-SCREEN END OF SCREEN 101.

*********************here u can write select query***********
write:/10 'hello'.
**************************************************

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0500  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE user_command_0500 INPUT.

**********EXIT--&amp;gt;BUTTON  IN SCREEN*************
WHEN 'EXIT'.
      CALL SELECTION-SCREEN '0101' STARTING AT 10 10.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.

ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Formatted by: Alvaro Tejada Galindo on Jan 7, 2009 12:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 08:43:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004634#M1165210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T08:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: problem in creating selection screen from screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004635#M1165211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would suggest to use I/O option instead of select options in this kind of scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manoj Kumar P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 08:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004635#M1165211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T08:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: problem in creating selection screen from screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004636#M1165212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;Here for your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a button with function code '&lt;STRONG&gt;CLICK&lt;/STRONG&gt;' in screen no &lt;STRONG&gt;1000&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;when I click on the button I am capturing the ok_code and displaying the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case:ok_code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'CLICK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         SELECTION-SCREEN BEGIN OF SCREEN 500 TITLE title.&lt;/P&gt;&lt;P&gt;         SELECT-OPTIONS: P_DATE for sy-datum.&lt;/P&gt;&lt;P&gt;         SELECTION-SCREEN END OF SCREEN 500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title = 'Input Date'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN '0500'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also have them as subscreen by providing the required parameters in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Bhuvaneswari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 09:16:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004636#M1165212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T09:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem in creating selection screen from screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004637#M1165213</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;   Please create a screen which consists of your select-options, when you execute that report call that screen and perform the subsequent operations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 09:30:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004637#M1165213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T09:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem in creating selection screen from screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004638#M1165214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi bhuvana ,&lt;/P&gt;&lt;P&gt;               thanx for ur reply ..it woked for me ....where ru working ????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 09:48:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-creating-selection-screen-from-screen-painter/m-p/5004638#M1165214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T09:48:28Z</dc:date>
    </item>
  </channel>
</rss>

