<?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: Modifying Selection screen dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205555#M132095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rashmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just have a look at this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: chk1 type c as checkbox,&lt;/P&gt;&lt;P&gt;            chk2 type c as checkbox modif id 'ID1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**then &lt;/P&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;IF screen-group1 = 'ID1' &lt;/P&gt;&lt;P&gt;if chk1 = 'X'.&lt;/P&gt;&lt;P&gt;screen-invisible = ''.&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-invisible = 'X'.&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;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code may have syntax error, but i think you can do away with them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**IF this is helpful, reward points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Apr 2006 05:55:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-15T05:55:04Z</dc:date>
    <item>
      <title>Modifying Selection screen dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205552#M132092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guyz&lt;/P&gt;&lt;P&gt;herez another question&lt;/P&gt;&lt;P&gt;Can we modify selection-screen dynamically  as we do in case of screen &lt;/P&gt;&lt;P&gt;What i want to do is&lt;/P&gt;&lt;P&gt;I want to display one parameter as  checkbox and when user ticks this box I want to display another one&lt;/P&gt;&lt;P&gt;If we are defining two checkboxes earlier and making one invisible than can we modify selection screen to display another check box&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2006 05:31:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205552#M132092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-15T05:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Selection screen dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205553#M132093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rashmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attach a MODIF ID with all the fields that you want to modify at runtime. Write the code AT SELECTION SCREEN, to LOOP at SCREEN and make it visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2006 05:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205553#M132093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-15T05:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Selection screen dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205554#M132094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at this example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT EVENT_DEMO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.&lt;/P&gt;&lt;P&gt;  PARAMETERS: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;              R2 RADIOBUTTON GROUP RAD1,&lt;/P&gt;&lt;P&gt;              R3 RADIOBUTTON GROUP RAD1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.&lt;/P&gt;&lt;P&gt;  PARAMETERS: R4 RADIOBUTTON GROUP RAD2 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;              R5 RADIOBUTTON GROUP RAD2,&lt;/P&gt;&lt;P&gt;              R6 RADIOBUTTON GROUP RAD2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;    MESSAGE W040(HB).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF R4 = 'X'.&lt;/P&gt;&lt;P&gt;    MESSAGE W040(HB).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2006 05:39:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205554#M132094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-15T05:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Selection screen dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205555#M132095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rashmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just have a look at this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: chk1 type c as checkbox,&lt;/P&gt;&lt;P&gt;            chk2 type c as checkbox modif id 'ID1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**then &lt;/P&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;IF screen-group1 = 'ID1' &lt;/P&gt;&lt;P&gt;if chk1 = 'X'.&lt;/P&gt;&lt;P&gt;screen-invisible = ''.&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-invisible = 'X'.&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;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code may have syntax error, but i think you can do away with them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**IF this is helpful, reward points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2006 05:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205555#M132095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-15T05:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Selection screen dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205556#M132096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi&lt;/P&gt;&lt;P&gt;Using Modif id in case of selection-screen how we will make a field invisible and than again visible as structure sscrfields doesnt have any such component named Invisible so we can not make it visible or invisible by assigning value 0 or 1.&lt;/P&gt;&lt;P&gt;plz correct me if am not in right direction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2006 05:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205556#M132096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-15T05:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Selection screen dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205557#M132097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vaibhav and Ravi&lt;/P&gt;&lt;P&gt;I got the point. I thought we can not use screen in case of selection-screens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2006 06:01:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205557#M132097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-15T06:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Selection screen dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205558#M132098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guyz&lt;/P&gt;&lt;P&gt;i tried it&lt;/P&gt;&lt;P&gt;i made second chkbox invisible using screen-invisible = 1.&lt;/P&gt;&lt;P&gt;but its not getting visible in at selection-screen&lt;/P&gt;&lt;P&gt;when i coded screen-invisible = 0.&lt;/P&gt;&lt;P&gt;I am not getting it&lt;/P&gt;&lt;P&gt;plz reply&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2006 13:53:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205558#M132098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-15T13:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Selection screen dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205559#M132099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rashmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't give a value 0. Do it like screen-invisible = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2006 14:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-selection-screen-dynamically/m-p/1205559#M132099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-15T14:02:02Z</dc:date>
    </item>
  </channel>
</rss>

