<?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/re-selection-screen/m-p/1484917#M226475</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i had a selection screen. in that one radiobutton is there and below that one selction parameter is there. if i click that radio button the selection parameter will go to the disable mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me in this regard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Jul 2006 07:23:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-31T07:23:52Z</dc:date>
    <item>
      <title>Re: selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen/m-p/1484917#M226475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i had a selection screen. in that one radiobutton is there and below that one selction parameter is there. if i click that radio button the selection parameter will go to the disable mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me in this regard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 07:23:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen/m-p/1484917#M226475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T07:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Re: selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen/m-p/1484918#M226476</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 it is a report program, then use the following logic,&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 rb_button = `X`.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = `P_MATNR`.&lt;/P&gt;&lt;P&gt;screen-input = 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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its a module pool program, then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHAIN.&lt;/P&gt;&lt;P&gt;FIELD RB_BUTTON1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module update_flag.&lt;/P&gt;&lt;P&gt;ENDCHAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ---&amp;gt;&lt;/P&gt;&lt;P&gt;module update_flag.&lt;/P&gt;&lt;P&gt;if rb_button1 = `X`.&lt;/P&gt;&lt;P&gt;v_flag = `X`.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF V_FLAG = `X`.&lt;/P&gt;&lt;P&gt;clear v_flag.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = `P_MATNR`.&lt;/P&gt;&lt;P&gt;screen-input = 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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 07:26:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen/m-p/1484918#M226476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T07:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Re: selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen/m-p/1484919#M226477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sundeep,&lt;/P&gt;&lt;P&gt;       Check this Code.&lt;/P&gt;&lt;P&gt;       SELECTION-SCREEN BEGIN OF BLOCK b1.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_rad1 RADIOBUTTON GROUP radi USER-COMMAND &lt;/P&gt;&lt;P&gt;                                                ucomm,&lt;/P&gt;&lt;P&gt;            p_check AS CHECKBOX,&lt;/P&gt;&lt;P&gt;            p_rad2 RADIOBUTTON GROUP radi,&lt;/P&gt;&lt;P&gt;            p_check2 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&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; &lt;/P&gt;&lt;P&gt;    IF p_rad1 EQ 'X' AND screen-name EQ 'P_CHECK2'.&lt;/P&gt;&lt;P&gt;      screen-input = 0.&lt;/P&gt;&lt;P&gt;    ELSEIF p_rad2 EQ 'X' AND screen-name EQ 'P_CHECK'.&lt;/P&gt;&lt;P&gt;      screen-input = 0.&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;         I hope this might Help you out&lt;/P&gt;&lt;P&gt;&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;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 07:26:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen/m-p/1484919#M226477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T07:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Re: selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen/m-p/1484920#M226478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : rb1 RADIOBUTTON GROUP rad1 USER-COMMAND USR,&lt;/P&gt;&lt;P&gt;rb2 RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: fpath TYPE filename modif id Gp1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen output.&lt;/P&gt;&lt;P&gt;if  rb2 = ' '.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'GP1'.&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;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 07:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen/m-p/1484920#M226478</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-07-31T07:27:52Z</dc:date>
    </item>
  </channel>
</rss>

