<?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 Regarding at Selection-Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5405997#M1241554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;In the selection-screen, i have 2 radiobuttons .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : rb1 radiobutton group g2 ,&lt;/P&gt;&lt;P&gt;             rb2 radiobutton group g2 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and 4 input fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_MATNR FOR MARA-MATNR.  " OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_MTART FOR MARA-MTART NO INTERVALS NO-EXTENSION.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_WERKS FOR MARA-MATNR NO INTERVALS NO-EXTENSION.&lt;/P&gt;&lt;P&gt;parameters : lifnr like lfa1-lifnr . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my requirement is when i execute the report by default the 1st radiobutton is selected. For this radiobutton,&lt;/P&gt;&lt;P&gt;i want to display only the first 3 select-options. And when the user clicks on the second radiobutton,&lt;/P&gt;&lt;P&gt;the parameter LIFNR should appear without pressing enter button. Again when the user clicks on&lt;/P&gt;&lt;P&gt;1st radiobutton the parameter field LIFNr should not appear.&lt;/P&gt;&lt;P&gt;Please can anybod yrpovide the code.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Mar 2009 05:09:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-21T05:09:04Z</dc:date>
    <item>
      <title>Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5405997#M1241554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;In the selection-screen, i have 2 radiobuttons .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : rb1 radiobutton group g2 ,&lt;/P&gt;&lt;P&gt;             rb2 radiobutton group g2 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and 4 input fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_MATNR FOR MARA-MATNR.  " OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_MTART FOR MARA-MTART NO INTERVALS NO-EXTENSION.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_WERKS FOR MARA-MATNR NO INTERVALS NO-EXTENSION.&lt;/P&gt;&lt;P&gt;parameters : lifnr like lfa1-lifnr . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my requirement is when i execute the report by default the 1st radiobutton is selected. For this radiobutton,&lt;/P&gt;&lt;P&gt;i want to display only the first 3 select-options. And when the user clicks on the second radiobutton,&lt;/P&gt;&lt;P&gt;the parameter LIFNR should appear without pressing enter button. Again when the user clicks on&lt;/P&gt;&lt;P&gt;1st radiobutton the parameter field LIFNr should not appear.&lt;/P&gt;&lt;P&gt;Please can anybod yrpovide the code.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 05:09:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5405997#M1241554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-21T05:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5405998#M1241555</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;PRE&gt;&lt;CODE&gt;Parameters: R1 radiobutton group rd1 default 'X' user-command ucomm,
                  R2 radiobutton group rd1.

Selection-screen begin of block b1.
SELECT-OPTIONS : S_MATNR FOR MARA-MATNR. " OBLIGATORY.
SELECT-OPTIONS : S_MTART FOR MARA-MTART NO INTERVALS NO-EXTENSION.
SELECT-OPTIONS : S_WERKS FOR MARA-MATNR NO INTERVALS NO-EXTENSION.
PARAMETERS: LIFNR LIKE lfa1-lifnr MODIF ID ab. 
Selection-screen End of block b1 .
 
at selection-screen output.
Loop at screen.
If R1 = 'X'.  " When 1st radio button is selected
If Screen-group1 = 'AB'.
Screen-active = 0.
endif.
endif.
modify screen.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 05:14:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5405998#M1241555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-21T05:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5405999#M1241556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 05:17:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5405999#M1241556</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-03-21T05:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406000#M1241557</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;Test the Code Bellow it is working as per your requirement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: mara.
PARAMETERS : rb1 RADIOBUTTON GROUP g2 USER-COMMAND a DEFAULT 'X',
rb2 RADIOBUTTON GROUP g2 .

SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME TITLE text-001.
SELECT-OPTIONS : s_matnr FOR mara-matnr MODIF ID s1. " OBLIGATORY.
SELECT-OPTIONS : s_mtart FOR mara-mtart NO INTERVALS NO-EXTENSION MODIF ID s1.
SELECT-OPTIONS : s_werks FOR mara-matnr NO INTERVALS NO-EXTENSION MODIF ID s1.
SELECTION-SCREEN END OF BLOCK a.
SELECTION-SCREEN BEGIN OF BLOCK b WITH FRAME TITLE text-002.
PARAMETERS : lifnr LIKE lfa1-lifnr MODIF ID s2.
SELECTION-SCREEN END OF BLOCK b.
BREAK-POINT.

AT SELECTION-SCREEN OUTPUT.

  IF rb1 = 'X'.
    LOOP AT SCREEN.
      IF screen-group1 = 'S2'.
        screen-active = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ELSEIF rb2 = 'X'.
    LOOP AT SCREEN.
      IF screen-group1 = 'S1'.
        screen-active = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 05:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406000#M1241557</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-21T05:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406001#M1241558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TABLES: mara, lfa1.&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 : rb1 RADIOBUTTON GROUP g2 USER-COMMAND mod1 ,&lt;/P&gt;&lt;P&gt;             rb2 RADIOBUTTON GROUP g2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; look the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_matnr FOR mara-matnr MODIF ID sc1 . " OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_mtart FOR mara-mtart MODIF ID sc1  NO INTERVALS NO-EXTENSION.&lt;/P&gt;&lt;P&gt;PARAMETERS : lifnr LIKE lfa1-lifnr MODIF ID sc2 .&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 rb2 = 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'SC2'.&lt;/P&gt;&lt;P&gt;        screen-invisible = 1.&lt;/P&gt;&lt;P&gt;        screen-active = 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;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 05:37:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406001#M1241558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-21T05:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406002#M1241559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi J@Y , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Why can't you give the [link of thread|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1279313"&gt;&lt;/A&gt;;, instead of copying my code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 05:51:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406002#M1241559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-21T05:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406003#M1241560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this link...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="7121541"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 05:56:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406003#M1241560</guid>
      <dc:creator>kanishakgupta1</dc:creator>
      <dc:date>2009-03-21T05:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406004#M1241561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot experts.&lt;/P&gt;&lt;P&gt;But my requirement is that i dont want to press the Enter button, as soon as the user clicks on the 2nd radiobutton, without pressing the enter button, he should be able to see the Vendor input parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 06:10:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406004#M1241561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-21T06:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406005#M1241562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Priti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tested my Code there is no need to Press Enter. you just need to select the radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 06:13:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406005#M1241562</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-21T06:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406006#M1241563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;The code I have given is working as per your purpose.&lt;/P&gt;&lt;P&gt;The use of USER COMMAND option doesn't require the option of using enter whenever the radio buttons are switched.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 06:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406006#M1241563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-21T06:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding at Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406007#M1241564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Faisal. Thanks a  lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Mar 2009 06:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-at-selection-screen/m-p/5406007#M1241564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-21T06:17:35Z</dc:date>
    </item>
  </channel>
</rss>

