<?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: MODIFY SCREEN not triggered automatically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991254#M706495</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;try to define your radiobuttons like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameters: 
  p_op1 radiobutton group rb1 default 'X' user-command all,
  p_op2 radiobutton group rb1               user-command all,
  p_op3 radiobutton group rb1               user-command all.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It must be works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Nov 2007 08:05:20 GMT</pubDate>
    <dc:creator>pablo_marn</dc:creator>
    <dc:date>2007-11-05T08:05:20Z</dc:date>
    <item>
      <title>MODIFY SCREEN not triggered automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991249#M706490</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;I have the following code:&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;    IF r_sonum = 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'SC1'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;      ELSEIF screen-group1 = 'SC2'.&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;    ELSEIF r_contra = 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'SC2'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;      ELSEIF screen-group1 = 'SC1'.&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want certain fields to be hidden depending on the radio button they choose. However, If I try to press another radio button, I have to hit enter before the other fields are hidden. How do I make this automatic than when user click a certain radio button, fields are hidden?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 08:00:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991249#M706490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T08:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY SCREEN not triggered automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991250#M706491</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;u can do it with user command..check the beloe sample code for it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_lpn TYPE filename-pathintern&lt;/P&gt;&lt;P&gt;             DEFAULT c_lpn OBLIGATORY ,          "Logical Path Name&lt;/P&gt;&lt;P&gt;             p_aserv RADIOBUTTON GROUP grp&lt;/P&gt;&lt;P&gt;             USER-COMMAND app,                   "Application server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             p_afile1 TYPE filename-fileextern , "Application File&lt;/P&gt;&lt;P&gt;                                                 "Name for contracts&lt;/P&gt;&lt;P&gt;             p_afile2 TYPE filename-fileextern , "Application&lt;/P&gt;&lt;P&gt;                                                 "FileName for&lt;/P&gt;&lt;P&gt;                                                 "Long text&lt;/P&gt;&lt;P&gt;             p_aerfl1 TYPE filename-fileextern , "Error File&lt;/P&gt;&lt;P&gt;                                                 "forcontracts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             p_aerfl2 TYPE filename-fileextern , "Error File&lt;/P&gt;&lt;P&gt;                                                 "for Longtext&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             p_pserv RADIOBUTTON GROUP grp,     "Presentation Server&lt;/P&gt;&lt;P&gt;             p_pfile1 TYPE rlgrap-filename ,    "Presentation File&lt;/P&gt;&lt;P&gt;                                                "Name forcontracts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             p_pfile2 TYPE rlgrap-filename ,    "Presentation File&lt;/P&gt;&lt;P&gt;                                                "Name for long&lt;/P&gt;&lt;P&gt;                                                "texts&lt;/P&gt;&lt;P&gt;             p_errfl1 TYPE rlgrap-filename ,&lt;/P&gt;&lt;P&gt;                                                "Error File for&lt;/P&gt;&lt;P&gt;                                                "contracts&lt;/P&gt;&lt;P&gt;             p_errfl2 TYPE rlgrap-filename .    "Err File Long text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewrad if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 08:02:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991250#M706491</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-11-05T08:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY SCREEN not triggered automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991251#M706492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*AT SELECTION-SCREEN OUTPUT.&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;  if screen-name eq 'PNPS$MSL'.&lt;/P&gt;&lt;P&gt;    screen-active = 0.&lt;/P&gt;&lt;P&gt;  endif.&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;Message was edited by: &lt;/P&gt;&lt;P&gt;        Karthikeyan Pandurangan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 08:02:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991251#M706492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T08:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY SCREEN not triggered automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991252#M706493</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;u have to use ser-command.&lt;/P&gt;&lt;P&gt;Define one of the radio button like this,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter:r_radio1 radio button grioup gr1 &amp;lt;b&amp;gt;user-command&amp;lt;/b&amp;gt; usr1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,CSR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 08:04:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991252#M706493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T08:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY SCREEN not triggered automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991253#M706494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to handle AT SELECTION-SCREEN ON RADIOBUTTON GROUP &amp;lt;radi&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just refer below link &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/56/1eb6c705ad11d2952f0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/56/1eb6c705ad11d2952f0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 08:04:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991253#M706494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T08:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY SCREEN not triggered automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991254#M706495</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;try to define your radiobuttons like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameters: 
  p_op1 radiobutton group rb1 default 'X' user-command all,
  p_op2 radiobutton group rb1               user-command all,
  p_op3 radiobutton group rb1               user-command all.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It must be works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 08:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-not-triggered-automatically/m-p/2991254#M706495</guid>
      <dc:creator>pablo_marn</dc:creator>
      <dc:date>2007-11-05T08:05:20Z</dc:date>
    </item>
  </channel>
</rss>

