<?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: Hide selection block in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108613#M105535</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 with SHD0 trasaction code.&lt;/P&gt;&lt;P&gt;Here you can make selectio-screen fields as invisible,mandatory etc. without modifying any code in existing prog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Nov 2005 17:12:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-21T17:12:19Z</dc:date>
    <item>
      <title>Hide selection block</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108608#M105530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to modify an existing program but I don't want to modify the screen logic as the default screen setting is already suitable for me. &lt;/P&gt;&lt;P&gt;How can I make a selection-screen block invisible? Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 16:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108608#M105530</guid>
      <dc:creator>former_member220801</dc:creator>
      <dc:date>2005-11-21T16:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Hide selection block</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108609#M105531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried a screen variant yet?   Check out transaction SHD0.  SHD(ZERO).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 16:57:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108609#M105531</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-11-21T16:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Hide selection block</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108610#M105532</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;If you want those parameter are always invisible, you should use the option NO-DISPLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_PAR1 LIKE .... NO-DISPLAY,&lt;/P&gt;&lt;P&gt;            P_PAR2 LIKE      NO-DISPLAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELEC-OPTIONS: SO_SEL1 FOR ... NO-DISPLAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to change the attribute at runtime, you should use the option MODIF ID while deining the parameters and select-options of the block:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_PAR1 LIKE .... MODIF ID AAA,&lt;/P&gt;&lt;P&gt;            P_PAR2 LIKE      MODIF ID AAA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELEC-OPTIONS: SO_SEL1 FOR ... MODIF ID AAA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    CHECK SCREEN-GROUP1 = 'AAA'.&lt;/P&gt;&lt;P&gt;    SCREEN-SCTIVE = 0.&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;You can also create a transaction variant (SHD0), but you need a new transaction for your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: max bianchi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 17:03:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108610#M105532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T17:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: Hide selection block</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108611#M105533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try  at selection screen output by looping screen fields by below&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt; if screen-field name = &amp;lt;&amp;gt;.&lt;/P&gt;&lt;P&gt;   screen-invisible = 1.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 17:03:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108611#M105533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T17:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Hide selection block</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108612#M105534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gundam Seed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is rreport you can do that in event 'AT SELECTION-SCREEN OUTPUT'. Like.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;   if screen-name = 'B_xxx'.&lt;/P&gt;&lt;P&gt;     screen-INVISIBLE = 'X'.&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;Let me know if this not works....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sanjeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 17:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108612#M105534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T17:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Hide selection block</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108613#M105535</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 with SHD0 trasaction code.&lt;/P&gt;&lt;P&gt;Here you can make selectio-screen fields as invisible,mandatory etc. without modifying any code in existing prog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 17:12:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-selection-block/m-p/1108613#M105535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T17:12:19Z</dc:date>
    </item>
  </channel>
</rss>

