<?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: Radio button disabled after executing and pressed back button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869249#M1476917</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;above&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Apr 2010 07:20:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-26T07:20:01Z</dc:date>
    <item>
      <title>Radio button disabled after executing and pressed back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869243#M1476911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have two radio button &lt;/P&gt;&lt;P&gt;if i click  button1 two &lt;STRONG&gt;(A &amp;amp; B)&lt;/STRONG&gt; parameters appears on the screen ? (i have programmed in at selecti)&lt;/P&gt;&lt;P&gt;if i click  button2  THREE &lt;STRONG&gt;(C &amp;amp; D&amp;amp; E)&lt;/STRONG&gt; parameters appears on the screen ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose i click button1, i get parameterS A &amp;amp; B ,i enter something on screen , i get &lt;/P&gt;&lt;P&gt;output .after that i press back button . two parameters A &amp;amp; B will  be on screen but it will &lt;/P&gt;&lt;P&gt;be disabled and selection screen text is missing for A &amp;amp; B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to get around this problem,i want it&lt;STRONG&gt;(A &amp;amp; B)&lt;/STRONG&gt; to enabled after i press &lt;STRONG&gt;back button&lt;/STRONG&gt; and text should be present.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 10:25:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869243#M1476911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T10:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button disabled after executing and pressed back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869244#M1476912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share the code you have written in the &lt;STRONG&gt;at selection-screen&lt;/STRONG&gt; event ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 10:30:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869244#M1476912</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-04-23T10:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button disabled after executing and pressed back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869245#M1476913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry for dealy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; AT SELECTION-SCREEN OUTPUT.

  IF r_future = 'X'.
    LOOP AT SCREEN.
      IF screen-group1 = 'BUK'.
        screen-active = 0.
        screen-invisible = 1.
        MODIFY SCREEN.
      ELSEIF screen-group1 = 'BUF'.
        screen-active = 1.
        screen-invisible = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ELSE .
    LOOP AT SCREEN.
      IF screen-group1 = 'BUF'.
        screen-active = 0.
        screen-invisible = 1.
        MODIFY SCREEN.
      ELSEIF screen-group1 = 'BUK'.
        screen-active = 1.
        screen-invisible = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ENDIF.

  IF r_detail = 'X'.
    LOOP AT SCREEN.
      IF screen-group1 = 'CUR'.
        screen-active = 1.
        screen-invisible = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ELSE.
    LOOP AT SCREEN.
      IF screen-group1 = 'CUR'.
        screen-active = 0.
        screen-invisible = 1.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.

  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 11:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869245#M1476913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T11:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button disabled after executing and pressed back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869246#M1476914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 04:25:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869246#M1476914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-26T04:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button disabled after executing and pressed back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869247#M1476915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Assign selection screen elements  A and B to one screen group and C,D,E to one group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I have assigned first two elements  (which will be displayed on click of r_future ) to screen group G1 and next two elements to screen group G2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-003.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS     : A  TYPE C,&lt;/P&gt;&lt;P&gt;                              B  TYPE C,&lt;/P&gt;&lt;P&gt;                              C  TYPE C,&lt;/P&gt;&lt;P&gt;                              D  TYPE C.&lt;/P&gt;&lt;P&gt;                                                             &lt;/P&gt;&lt;P&gt;PARAMETERS:      r_future     TYPE c   RADIOBUTTON GROUP r1   &lt;/P&gt;&lt;P&gt;                              DEFAULT 'X'&lt;/P&gt;&lt;P&gt;                               USER-COMMAND fcode,&lt;/P&gt;&lt;P&gt;                               r_detail     TYPE c   RADIOBUTTON GROUP r1.           &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    CASE screen-group1.&lt;/P&gt;&lt;P&gt;      WHEN 'G1'.&lt;/P&gt;&lt;P&gt;        IF r_future = 'X'.&lt;/P&gt;&lt;P&gt;          screen-active  = 1.&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          screen-active  = 0.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      WHEN 'G2'.&lt;/P&gt;&lt;P&gt;        IF r_detail = 'X'.&lt;/P&gt;&lt;P&gt;          screen-active  = 1.&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          screen-active  = 0.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to simplify your code.I am not sure why you have used three screen groups.&lt;/P&gt;&lt;P&gt;Try in above manner.It should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Tejaswini Khante&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Tejaswini Khante on Apr 26, 2010 8:16 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 06:16:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869247#M1476915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-26T06:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button disabled after executing and pressed back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869248#M1476916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks tejaswini.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem was , i had written  another piece of code in initialization event .which i had forgotten to comment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 07:08:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869248#M1476916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-26T07:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button disabled after executing and pressed back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869249#M1476917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;above&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 07:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-disabled-after-executing-and-pressed-back-button/m-p/6869249#M1476917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-26T07:20:01Z</dc:date>
    </item>
  </channel>
</rss>

