<?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 Hide pushbutton in selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-pushbutton-in-selection-screen/m-p/3753267#M902903</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 two pushbutton B1 &amp;amp; B2 in selection-screen and i want to hide B2 when clicking at B1, can anybody tell me step by step how would i do? its urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards saurabh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 May 2008 06:59:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-02T06:59:52Z</dc:date>
    <item>
      <title>Hide pushbutton in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-pushbutton-in-selection-screen/m-p/3753267#M902903</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 two pushbutton B1 &amp;amp; B2 in selection-screen and i want to hide B2 when clicking at B1, can anybody tell me step by step how would i do? its urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards saurabh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 06:59:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-pushbutton-in-selection-screen/m-p/3753267#M902903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T06:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Hide pushbutton in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-pushbutton-in-selection-screen/m-p/3753268#M902904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                Assign B1 to a group, say &lt;STRONG&gt;c_ps&lt;/STRONG&gt;, and B2 to another group, say &lt;STRONG&gt;c_as&lt;/STRONG&gt;. Then write this code and you can get the desired output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = c_ps.&lt;/P&gt;&lt;P&gt;      IF B1 = '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;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF screen-group1 = c_as.&lt;/P&gt;&lt;P&gt;      IF B2 = '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;    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;*******************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful to you. If you need further information, revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nagaraj T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 07:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-pushbutton-in-selection-screen/m-p/3753268#M902904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T07:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Hide pushbutton in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-pushbutton-in-selection-screen/m-p/3753269#M902905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection-screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'B2'.&lt;/P&gt;&lt;P&gt;SCREEN-OUTPUT = '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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 07:20:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-pushbutton-in-selection-screen/m-p/3753269#M902905</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-02T07:20:46Z</dc:date>
    </item>
  </channel>
</rss>

