<?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: hiding selection block. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-selection-block/m-p/3015293#M712583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen output.
if p_gen = 'X'.
  loop at screen.
    if sceen-group1 = 'P2'.
       screen-active = 0.
    endif.
  endloop.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2007 15:11:08 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2007-10-25T15:11:08Z</dc:date>
    <item>
      <title>hiding selection block.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-selection-block/m-p/3015291#M712581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am doing an alv report.here is my selection screen part. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;requirement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And on the selection screen when I'll click on the p_gen radio button the block3 will be hided immediately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly help me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                       S E L E C TI O N     S C R E E N                      *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*First Block&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_po      FOR   v_aufnr,                                                s_pos     FOR   v_txt04,                                               &lt;/P&gt;&lt;P&gt; s_art     FOR   v_plnbez.                            &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK blk1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Second Block&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : BEGIN OF BLOCK blk2 WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;PARAMETER : rd1 RADIOBUTTON  GROUP g1 DEFAULT 'X' USER-COMMAND change,  "Radio Button For Display&lt;/P&gt;&lt;P&gt;            rd2 RADIOBUTTON GROUP g1.                                  &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN:END OF BLOCK blk2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Third Block&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : BEGIN OF BLOCK blk3 WITH FRAME TITLE text-003.&lt;/P&gt;&lt;P&gt;PARAMETER:p_var TYPE disvariant-variant MODIF ID p2.                  SELECTION-SCREEN:END OF BLOCK blk3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 15:04:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-selection-block/m-p/3015291#M712581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T15:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: hiding selection block.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-selection-block/m-p/3015292#M712582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Cinthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rd2 RADIOBUTTON GROUP g1 &amp;lt;b&amp;gt;USER COMMAND whatever&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;IF P_GEN IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;LOOP AT screen.&lt;/P&gt;&lt;P&gt;IF screen-group1 EQ 'P2'.&lt;/P&gt;&lt;P&gt;screen-active = '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;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 15:10:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-selection-block/m-p/3015292#M712582</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-10-25T15:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: hiding selection block.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-selection-block/m-p/3015293#M712583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen output.
if p_gen = 'X'.
  loop at screen.
    if sceen-group1 = 'P2'.
       screen-active = 0.
    endif.
  endloop.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 15:11:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-selection-block/m-p/3015293#M712583</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-10-25T15:11:08Z</dc:date>
    </item>
  </channel>
</rss>

