<?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 SCREEN parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-parameters/m-p/3447607#M828101</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;My requirement is as follows:&lt;/P&gt;&lt;P&gt;I have two radiobuttons Rb1 and rb2 on selection screen. I want to display/hide some portions of screen depending upon the radiobuttons selected..&lt;/P&gt;&lt;P&gt;For this purpse I am using LOOP AT SCREEN and SCREEN-INVISIBLE to display/hide and it is working fine..&lt;/P&gt;&lt;P&gt;The problem is that on the selection screen, if i double click on radiobutton, I am getting the screen change...but i want to see the change when the user makes a single clickon the radiobutton...how to achieve this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Feb 2008 09:38:49 GMT</pubDate>
    <dc:creator>abdulazeez12</dc:creator>
    <dc:date>2008-02-19T09:38:49Z</dc:date>
    <item>
      <title>SCREEN parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-parameters/m-p/3447607#M828101</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;My requirement is as follows:&lt;/P&gt;&lt;P&gt;I have two radiobuttons Rb1 and rb2 on selection screen. I want to display/hide some portions of screen depending upon the radiobuttons selected..&lt;/P&gt;&lt;P&gt;For this purpse I am using LOOP AT SCREEN and SCREEN-INVISIBLE to display/hide and it is working fine..&lt;/P&gt;&lt;P&gt;The problem is that on the selection screen, if i double click on radiobutton, I am getting the screen change...but i want to see the change when the user makes a single clickon the radiobutton...how to achieve this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 09:38:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-parameters/m-p/3447607#M828101</guid>
      <dc:creator>abdulazeez12</dc:creator>
      <dc:date>2008-02-19T09:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-parameters/m-p/3447608#M828102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey&lt;/P&gt;&lt;P&gt;Got the answer..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;need to put "USER-COMMAND"..thats all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 09:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-parameters/m-p/3447608#M828102</guid>
      <dc:creator>abdulazeez12</dc:creator>
      <dc:date>2008-02-19T09:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-parameters/m-p/3447609#M828103</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 MODIF ID addition like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_at_selection_screen_pbo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: test1(10) TYPE c MODIF ID sc1,&lt;/P&gt;&lt;P&gt;            test2(10) TYPE c MODIF ID sc2,&lt;/P&gt;&lt;P&gt;            test3(10) TYPE c MODIF ID sc1,&lt;/P&gt;&lt;P&gt;            test4(10) TYPE c MODIF ID sc2.&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 screen-group1 = 'SC1'.&lt;/P&gt;&lt;P&gt;      screen-intensified = '1'.&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;    IF screen-group1 = 'SC2'.&lt;/P&gt;&lt;P&gt;      screen-intensified = '0'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vasudha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vasudha L on Feb 19, 2008 10:47 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 09:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-parameters/m-p/3447609#M828103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T09:45:38Z</dc:date>
    </item>
  </channel>
</rss>

