<?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: SELECTION-SCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946465#M943722</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; write   screen-input = 0 after checking the condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;vamshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 May 2008 15:16:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-27T15:16:35Z</dc:date>
    <item>
      <title>SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946463#M943720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys I have two SELECTION-SCREEN in my program , one of them have a option group and  the other parameters , What I want to do is to make dissapear  the parameters selection screen depending on one of the options of my options group selection screen , How Can I do that ? , I tried several ways in my AT SELECTION-SCREEN OUTPUT event but without any result , Could you give me any advice?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 15:09:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946463#M943720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-27T15:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946464#M943721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have u used 'Screen' table for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 15:12:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946464#M943721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-27T15:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946465#M943722</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; write   screen-input = 0 after checking the condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;vamshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 15:16:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946465#M943722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-27T15:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946466#M943723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  In order to make the parameters invisible you can simply declare them as below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : lv_data like mara-matnr no-display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or at selection-screen you will have to loop on the dynamic internal table 'screen' and for the screen fields you have to set screen-invisible = 'X' and then modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu Verma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 15:19:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946466#M943723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-27T15:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946467#M943724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;did u write modify screen....if not do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use this sample code.&lt;/P&gt;&lt;P&gt;But instead of parameters im  using select options.&lt;/P&gt;&lt;P&gt;Ans im hiding them depens on condition.&lt;/P&gt;&lt;P&gt;But, if you want to disable them,&lt;/P&gt;&lt;P&gt;you need to do like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SCREEN-INPUT = 0. instead of screen-active = 0.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once execute this code. ypu will get an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z50871_SELECTOPS_DYNAMIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : CH_EBELN AS CHECKBOX,&lt;/P&gt;&lt;P&gt;             CH_VBELN AS CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_EBELN TYPE EKKO-EBELN,&lt;/P&gt;&lt;P&gt;      V_VBELN TYPE VBAK-VBELN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 100.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : EBELN FOR V_EBELN MODIF ID G1,&lt;/P&gt;&lt;P&gt;                 VBELN FOR V_VBELN MODIF ID G2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 100 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  IF SY-DYNNR = 100.&lt;/P&gt;&lt;P&gt;    IF CH_EBELN = 'X' AND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       CH_VBELN = ''.&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;&lt;/P&gt;&lt;P&gt;        IF SCREEN-GROUP1 EQ 'G1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SCREEN-ACTIVE = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SCREEN-ACTIVE = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSEIF CH_VBELN = 'X' AND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       CH_EBELN = '' .&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;&lt;/P&gt;&lt;P&gt;        IF SCREEN-GROUP1 EQ 'G2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SCREEN-ACTIVE = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SCREEN-ACTIVE = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSEIF CH_EBELN = 'X' AND CH_VBELN = 'X'.&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-GROUP1 EQ 'G1'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           OR SCREEN-GROUP1 EQ 'G2' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SCREEN-ACTIVE = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&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;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;IF SY-DYNNR = 1000.&lt;/P&gt;&lt;P&gt;  IF CH_EBELN = 'X' OR CH_VBELN = 'X'.&lt;/P&gt;&lt;P&gt;    CALL SELECTION-SCREEN 100.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    MESSAGE I000(Z50871MSG) WITH 'Please select atleast one checkbox'.&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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandeep Reddy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sandeep Reddy on May 27, 2008 5:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 15:23:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3946467#M943724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-27T15:23:12Z</dc:date>
    </item>
  </channel>
</rss>

