<?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/selection-screen/m-p/1994573#M405373</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;check this code this is useful for u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;    CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;      WHEN 'butt1'.&lt;/P&gt;&lt;P&gt; call selection-screen 100.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in selection screen 100 write code for displaying ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by clicking on field u can't trigger any event.for that u have to create buttons.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Mar 2007 07:03:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-23T07:03:03Z</dc:date>
    <item>
      <title>Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1994572#M405372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;         In my first selection-screen i have five fields clicking on each field i want one more selection screen to know particular details of each individual field,after clicking on field in second selection screen, i want output by clicking F8 using classical report and ALV report with Sample Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  from &lt;/P&gt;&lt;P&gt;  rathod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 06:55:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1994572#M405372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T06:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1994573#M405373</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;check this code this is useful for u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;    CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;      WHEN 'butt1'.&lt;/P&gt;&lt;P&gt; call selection-screen 100.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in selection screen 100 write code for displaying ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by clicking on field u can't trigger any event.for that u have to create buttons.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 07:03:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1994573#M405373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T07:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1994574#M405374</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 you have 5 radio buttons and on click of them u want to show another selection screen then attch USER-COMMAND to radio button and  MODIF ID to fields to be shown. then on AT SELECTION-SCREEN OUTPUT event,&lt;/P&gt;&lt;P&gt;write code as,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = c_sd.&lt;/P&gt;&lt;P&gt;        IF screen-name = 'P_BERID'.&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;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        IF screen-group1 = c_mm&lt;/P&gt;&lt;P&gt;        OR screen-group1 = c_mrp&lt;/P&gt;&lt;P&gt;        OR screen-group1 = c_bind.&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;      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;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 09:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1994574#M405374</guid>
      <dc:creator>ChandrashekharMahajan</dc:creator>
      <dc:date>2007-03-23T09:10:13Z</dc:date>
    </item>
  </channel>
</rss>

