<?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: weired problem when hiding fields on selection screen using modif id in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/weired-problem-when-hiding-fields-on-selection-screen-using-modif-id/m-p/3587156#M863687</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venkat, I solved it from your solution but I have a better solution.&lt;/P&gt;&lt;P&gt;Its really weired solution. I have added just this one IF condition for the 1st select option. Actually I have 15 select options and I didnt want to code 15*2 = 30 times. Just gave a try adding just for the first select option field and it worked fine. DONT NEED TO ADD FOR EVERY SELECT OPTION.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;if   screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'S_BUKRS-LOW' .&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&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>Wed, 19 Mar 2008 19:17:21 GMT</pubDate>
    <dc:creator>kasithunuguntla</dc:creator>
    <dc:date>2008-03-19T19:17:21Z</dc:date>
    <item>
      <title>weired problem when hiding fields on selection screen using modif id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weired-problem-when-hiding-fields-on-selection-screen-using-modif-id/m-p/3587154#M863685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The program has 2 radio buttons, if one of them is selected some of the elements on the screen will be invisible and vice versa.  We are on 46C. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is with the display of select options (this happens only for select options). they display like a 3D image( some white space before start of select option input field). I am actually able to key in data into that field but obviously doent have any effect on the program execution.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Request inputs in this regard. see code below.   &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 = '1000'.&lt;/P&gt;&lt;P&gt;    IF not p_selct is initial.&lt;/P&gt;&lt;P&gt;        loop at screen.&lt;/P&gt;&lt;P&gt;         if   screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;          screen-input = '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;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      loop at screen.&lt;/P&gt;&lt;P&gt;        if   screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;         screen-input = '0'.&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;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 18:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weired-problem-when-hiding-fields-on-selection-screen-using-modif-id/m-p/3587154#M863685</guid>
      <dc:creator>kasithunuguntla</dc:creator>
      <dc:date>2008-03-19T18:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: weired problem when hiding fields on selection screen using modif id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weired-problem-when-hiding-fields-on-selection-screen-using-modif-id/m-p/3587155#M863686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi , check this example....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZVENKATTEST0.&lt;/P&gt;&lt;P&gt;TABLES:MARA.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:S_TEST1 FOR MARA-MATNR MODIF ID M1 ,&lt;/P&gt;&lt;P&gt;               S_TEST2 FOR MARA-MEINS MODIF ID M2 .&lt;/P&gt;&lt;P&gt;PARAMETERS:P_RAD1 RADIOBUTTON  GROUP G1 USER-COMMAND UC1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;           P_RAD2 RADIOBUTTON GROUP G1 ,&lt;/P&gt;&lt;P&gt;           P_RAD3 RADIOBUTTON GROUP G1 .&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;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF P_RAD1 = 'X'.&lt;/P&gt;&lt;P&gt;      IF SCREEN-NAME = 'S_TEST1-LOW' .&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF SCREEN-NAME = 'S_TEST1-HIGH' .&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF SCREEN-NAME = 'S_TEST2-LOW' .&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF SCREEN-NAME = 'S_TEST2-HIGH' .&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;      IF P_RAD2 = 'X'.&lt;/P&gt;&lt;P&gt;        IF SCREEN-NAME = 'S_TEST1-LOW' .&lt;/P&gt;&lt;P&gt;          SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        IF SCREEN-NAME = 'S_TEST1-HIGH' .&lt;/P&gt;&lt;P&gt;          SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;        IF P_RAD3 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          IF SCREEN-NAME = 'S_TEST2-LOW' .&lt;/P&gt;&lt;P&gt;            SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;          IF SCREEN-NAME = 'S_TEST2-HIGH' .&lt;/P&gt;&lt;P&gt;            SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;          ENDIF.&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;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2008 18:57:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weired-problem-when-hiding-fields-on-selection-screen-using-modif-id/m-p/3587155#M863686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-19T18:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: weired problem when hiding fields on selection screen using modif id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/weired-problem-when-hiding-fields-on-selection-screen-using-modif-id/m-p/3587156#M863687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venkat, I solved it from your solution but I have a better solution.&lt;/P&gt;&lt;P&gt;Its really weired solution. I have added just this one IF condition for the 1st select option. Actually I have 15 select options and I didnt want to code 15*2 = 30 times. Just gave a try adding just for the first select option field and it worked fine. DONT NEED TO ADD FOR EVERY SELECT OPTION.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;if   screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'S_BUKRS-LOW' .&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&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>Wed, 19 Mar 2008 19:17:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/weired-problem-when-hiding-fields-on-selection-screen-using-modif-id/m-p/3587156#M863687</guid>
      <dc:creator>kasithunuguntla</dc:creator>
      <dc:date>2008-03-19T19:17:21Z</dc:date>
    </item>
  </channel>
</rss>

