<?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 the selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423928#M1646871</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nabheet your logic will clear the parameter even when user presses enter (as you are not clearing the MEMORY ID before IMPORT). The requirement is to let the clearing happen only on execute after showing the warning message &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below should work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: lv_clear_flag TYPE c.
PARAMETERS p1 TYPE i.

AT SELECTION-SCREEN OUTPUT.
  CLEAR lv_clear_flag.
  IMPORT lv_clear_flag FROM MEMORY ID 'LV_CLEAR_FLAG'.
  DELETE FROM MEMORY ID 'LV_CLEAR_FLAG'.
  IF lv_clear_flag = 'X'.
    CLEAR p1.
  ENDIF.

START-OF-SELECTION.
  IF p1 &amp;gt; 10.
    MOVE 'X' TO lv_clear_flag.
    EXPORT lv_clear_flag TO MEMORY ID 'LV_CLEAR_FLAG'.
    MESSAGE 'Warning' TYPE 'I' DISPLAY LIKE 'W'.
    EXIT.
  ELSE.
    CLEAR lv_clear_flag.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2012 09:42:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-01-12T09:42:32Z</dc:date>
    <item>
      <title>Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423893#M1646836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       In my program i have given the input in selection screen , Its process something and a msg was displayed , and user confirm it to continue , the program take us back to the selection screen - in this case i have to clear all the values from the selection parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried lot , but i didn't get this result. &lt;/P&gt;&lt;P&gt;I know this is the standard functionality , But anything is there to clear the selection parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.C.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 14:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423893#M1646836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T14:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423894#M1646837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can clear the selection parameters after displaying the message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example you have created a parameter p1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just give the statement clear p1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also it should be mentioned at AT SELECTION SCREEN OUTPUT or AT INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because AT SELECTION SCREEN OUTPUT is just like PBO it process the selection screen values and again displays the selection screen based on new condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So try clearing values there it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you face any issues please revert back to me i will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri Hari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 14:19:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423894#M1646837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T14:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423895#M1646838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Already i have tried , But its not correct, reason after enter the values in input then you press ENTER key automatically value will clear without process the code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 14:25:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423895#M1646838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T14:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423896#M1646839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;Can you please little bit clear , How exactly you are calling the user interaction popup and what you are expecting later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Typically , initialization event to clear the initialize values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to update selection screen values you may try using the function module &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          DYNAME     = V_SY_CPROG&lt;/P&gt;&lt;P&gt;          DYNUMB     = V_SY_DYNNR&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          DYNPFIELDS = I_DYNFIELDS.&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 14:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423896#M1646839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T14:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423897#M1646840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;write the validation in AT SELECTION SCREEN. .&lt;/P&gt;&lt;P&gt;display a warming message. then clear all the values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS p1 TYPE i.

at SELECTION-SCREEN.
  if p1 &amp;gt; 10.
    MESSAGE 'Warning' type 'W'.
    clear p1.
  endif.

START-OF-selection.
  write p1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:06:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423897#M1646840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T15:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423898#M1646841</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;      I have written the message 'xxxx' type 'I' with in the start-of-selection.Before the message comes i do some validation.&lt;/P&gt;&lt;P&gt;     Message will display then we press the continue means its go to the selection input screen , here i want to clear all the parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423898#M1646841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T15:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423899#M1646842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the above message... by the way.. welcome to SDN &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:09:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423899#M1646842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T15:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423900#M1646843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do leave to tramsaction simplest way or call transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:15:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423900#M1646843</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2012-01-11T15:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423901#M1646844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Soumya said..you need to do your validation in AT SELECTION SCREEN event not in Start-of-Selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after that when user enters data, you can process that data in START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423901#M1646844</guid>
      <dc:creator>Harsh_Bansal</dc:creator>
      <dc:date>2012-01-11T15:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423902#M1646845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't do the validation for seletion screen. After my code process in the start-of-selection thier i have to raise the Information Message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:20:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423902#M1646845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T15:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423903#M1646846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why are you doing validations in start of selection? do it in at slection-screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:29:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423903#M1646846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T15:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423904#M1646847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soumya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Thats not validation , In my case i am checking some conditions in multiple table and record is not found then i display the message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423904#M1646847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T15:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423905#M1646848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yo may get better answers. wait for that..for time being use this &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: gv_p1 TYPE i.
PARAMETERS p1 TYPE i.

AT SELECTION-SCREEN.
  gv_p1 = p1.
  CLEAR p1.

START-OF-SELECTION.
  IF gv_p1 &amp;gt; 10.
    MESSAGE 'Warning' TYPE 'I' DISPLAY LIKE 'W'.
    EXIT.
  ENDIF.
  WRITE gv_p1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423905#M1646848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T15:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423906#M1646849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;        In my program i have given the input in selection screen , Its process something and a msg was displayed , and user confirm it to continue , the program take us back to the selection screen - in this case i have to clear all the values from the selection parameters.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I tried lot , but i didn't get this result. &lt;/P&gt;&lt;P&gt;&amp;gt; I know this is the standard functionality , But anything is there to clear the selection parameters.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; S.C.K&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are a couple ways to achieve this, one is by leaving the transaction all together as someone has already suggested, this can be done either via LEAVE TO TRANSACTION &amp;lt;tcode&amp;gt; or SUBMIT &amp;lt;program name&amp;gt; VIA SELECTION-SCREEN, using this technique you won't be able to clear any 'DEFAULT' values set for the selection screen fields, the second is by using IMPORT/EXPORT techniques, EXPORT a flag variable in START OF SELECTION and IMPORT the same in AT SELECTION SCREEN OUTPUT and clear all the selections screen fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rajesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 16:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423906#M1646849</guid>
      <dc:creator>rajesh_paruchuru</dc:creator>
      <dc:date>2012-01-11T16:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423907#M1646850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One more thing you can do is after your message has been displayed .&lt;/P&gt;&lt;P&gt;Just call your report using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT your_report VIA SELECTION SCREEN&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; . &lt;/P&gt;&lt;P&gt;And don't use AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 16:36:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423907#M1646850</guid>
      <dc:creator>surajarafath</dc:creator>
      <dc:date>2012-01-11T16:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423908#M1646851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can clear selection screen values, just before writing the Message statement in start-of-selection event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear P_par1.&lt;/P&gt;&lt;P&gt;Message XXXXXX.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 16:43:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423908#M1646851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T16:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423909#M1646852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@santhoshi,&lt;/P&gt;&lt;P&gt;try once &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 16:49:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423909#M1646852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T16:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423910#M1646853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well try doing something out of box..Instead of displaying normal information message, use FM - &lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In it you can display your required message. User needs to press OK.&lt;/P&gt;&lt;P&gt;Then after FM executes, you can code that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF answer EQ  1.&lt;/P&gt;&lt;P&gt;CLEAR: p_field1, p_field2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 17:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423910#M1646853</guid>
      <dc:creator>Harsh_Bansal</dc:creator>
      <dc:date>2012-01-11T17:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423911#M1646854</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;   Already i used SUBMIT statement. Its coming cleared Input screen. This i am expecting correct. But from that screen i entered BACK button its coming to the previous same screen with the values.How i rectify from this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.C.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 17:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423911#M1646854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T17:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423912#M1646855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhoshi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               Thats also not coming correctly.Already i used this one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 17:51:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-selection-screen/m-p/8423912#M1646855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-11T17:51:13Z</dc:date>
    </item>
  </channel>
</rss>

