<?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: Regarding Selection screen Events in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347581#M1035400</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont think so wether above solution would work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cause AT SELECTION-SCREEN OUTPUT will work PBO but your requirement once you give input to selection screen than you need to do work.than i think one way you can do achieve this by using &lt;STRONG&gt;AT SELECTION-SCREEN on  ON {para|selcrit}&lt;/STRONG&gt;  event cause it would trigger in PAI than again your need to come back on selection screen after getting refersh your previous selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Aug 2008 14:37:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-25T14:37:30Z</dc:date>
    <item>
      <title>Regarding Selection screen Events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347578#M1035397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a select option  with no-extension so its like parameter  and a Check box.&lt;/P&gt;&lt;P&gt;During the Program Execution i will give some value to the Selection Option field.&lt;/P&gt;&lt;P&gt;Based on the value given to the Select option the Check box should have the value (i.e) it should be active or inactive based on the input in the selection screen.&lt;/P&gt;&lt;P&gt;I tried At selectioon screen on value request for  also i tried it in Initialization also using MODIF id nothing is working.&lt;/P&gt;&lt;P&gt;Can anybody help me out ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Aug 25, 2008 5:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 14:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347578#M1035397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T14:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Selection screen Events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347579#M1035398</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;Use at selection screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
at selection-screen output.
  if gv_ucomm = 'RG1'.
    loop at screen.
      if pa_rgor = 'X'.
        if screen-name+7(1) = '2' or
           screen-name+7(1) = '1'.
          screen-input = 0.
        endif.
      endif.

      if pa_rgof = 'X'.
        if screen-name+7(1) = '1' or
           screen-name+7(1) = '3'.
          screen-input = 0.
        endif.
      endif.

      if pa_rgaa = 'X'.
        if screen-name+7(1) = '2' or
           screen-name+7(1) = '3'.
          screen-input = 0.
        endif.
      endif.
      modify screen.
    endloop.
  endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 14:09:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347579#M1035398</guid>
      <dc:creator>b_deterd2</dc:creator>
      <dc:date>2008-08-25T14:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Selection screen Events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347580#M1035399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi you can do it in AT SELECTION-SCREEN event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF s_sopt IS INITIAL.

  w_cbox = 'X'.

ELSE.

  CLEAR w_cbox.

ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_sopt is the select option and w_cbox is the checkbox.&lt;/P&gt;&lt;P&gt;When the user inputs a value and hits enter the check box will be modified.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 14:09:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347580#M1035399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T14:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Selection screen Events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347581#M1035400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont think so wether above solution would work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cause AT SELECTION-SCREEN OUTPUT will work PBO but your requirement once you give input to selection screen than you need to do work.than i think one way you can do achieve this by using &lt;STRONG&gt;AT SELECTION-SCREEN on  ON {para|selcrit}&lt;/STRONG&gt;  event cause it would trigger in PAI than again your need to come back on selection screen after getting refersh your previous selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 14:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen-events/m-p/4347581#M1035400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T14:37:30Z</dc:date>
    </item>
  </channel>
</rss>

