<?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: Dynamic selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464083#M1415950</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use AT SELECTION SCREEN OUTPUT event and then place radio buttions in group and using SCREEN internal table do what erver you want ...!&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Dec 2009 10:54:39 GMT</pubDate>
    <dc:creator>anup_deshmukh4</dc:creator>
    <dc:date>2009-12-21T10:54:39Z</dc:date>
    <item>
      <title>Dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464082#M1415949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m writing code in se38.&lt;/P&gt;&lt;P&gt;i want a selection screen which contain one input screen, ex-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Material Number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on based upon material number i want to show some radio button on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to display radio buttons based on material number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose i material = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then, Radio Button 1&lt;/P&gt;&lt;P&gt;        Radio Button 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Material = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Radio Button 1&lt;/P&gt;&lt;P&gt;        Radio Button 2&lt;/P&gt;&lt;P&gt;Radio Button 3&lt;/P&gt;&lt;P&gt;        Radio Button 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz Help me how can i set this functionality in program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anshuman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 10:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464082#M1415949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-21T10:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464083#M1415950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use AT SELECTION SCREEN OUTPUT event and then place radio buttions in group and using SCREEN internal table do what erver you want ...!&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 10:54:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464083#M1415950</guid>
      <dc:creator>anup_deshmukh4</dc:creator>
      <dc:date>2009-12-21T10:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464084#M1415951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anshuman ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to use Flow logic of screen. In PBO call one module say CHECK . In that Module you write the code as follows :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create a screen with radio buttons 1,2,3,4.&lt;/P&gt;&lt;P&gt;2. MODULE CHECK OUTPUT.&lt;/P&gt;&lt;P&gt;  if material = 1.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF screen-name = 'radio button 3'.&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;&lt;/P&gt;&lt;P&gt;      IF screen-name = 'radio button 4'.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you. Please get back to me in case of any confusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 10:54:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464084#M1415951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-21T10:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464085#M1415952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I m writing a ALV report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where i write these codes, in AT selection screen or some where else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 11:00:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464085#M1415952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-21T11:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464086#M1415953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;write in the block of AT SELECTION SCREEN OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOUP YOUR RADIO BUTTONS OR MAKE A FRAME OR MAKE A BLOCK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the AT SELECTION SCREEN OUTPUT block&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;( User proper radio button group name and all  and also see the screen structre you have fields for visiblity and enebeling - dusabkubg )&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 11:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464086#M1415953</guid>
      <dc:creator>anup_deshmukh4</dc:creator>
      <dc:date>2009-12-21T11:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464087#M1415954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anshuman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   You need to write the logic at  AT SELECTION-SCREEN  OUTPUT.&lt;/P&gt;&lt;P&gt;TRY this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_matnr(8) TYPE c.&lt;/P&gt;&lt;P&gt;PARAMETER: r_b1 TYPE c RADIOBUTTON GROUP g1,&lt;/P&gt;&lt;P&gt;           r_b2 TYPE c RADIOBUTTON GROUP g1,&lt;/P&gt;&lt;P&gt;           r_b3 TYPE c RADIOBUTTON GROUP g1,&lt;/P&gt;&lt;P&gt;           r_b4 TYPE c RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  IF p_matnr EQ '1'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name EQ 'R_B3'.&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF screen-name EQ 'R_B4'.&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&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;      screen-active = '1'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&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;START-OF-SELECTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 11:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464087#M1415954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-21T11:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464088#M1415955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yep ...Raveendra Sunagar .has given you a better code...!&lt;/P&gt;&lt;P&gt;Cheers...!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 11:21:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464088#M1415955</guid>
      <dc:creator>anup_deshmukh4</dc:creator>
      <dc:date>2009-12-21T11:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464089#M1415956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx a lot Ravindra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Problem is Solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this code is exactly the solution which i want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anshuman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Dec 2009 05:24:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/6464089#M1415956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-22T05:24:15Z</dc:date>
    </item>
  </channel>
</rss>

