<?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/2693454#M623266</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes it is possible to do so.Just make sure that there are different blocks for your selection screen parameters.&lt;/P&gt;&lt;P&gt;selection-screen: begin of block B1 or B2 and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Aug 2007 18:04:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-09T18:04:54Z</dc:date>
    <item>
      <title>Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693452#M623264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can i display more than one selection screen.&lt;/P&gt;&lt;P&gt;First -&amp;gt; Selection Screen: &lt;/P&gt;&lt;P&gt;Parameters &amp;amp; Select-options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second -&amp;gt; Selection Screen&lt;/P&gt;&lt;P&gt;Parameters &amp;amp; Select-options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Third -&amp;gt; Output List&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the user select some parameters and select options  - after execution it should display again a new selection screen and later Output list.&lt;/P&gt;&lt;P&gt;If Yes, then please mention how can i achieve it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 17:37:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693452#M623264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T17:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693453#M623265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting requirement, with an equally interesting solution, yes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

tables: sscrfields.

data: current_step type n.

selection-screen begin of block b1 with frame title text-001.
parameters: p_datum1 type sy-datum modif id gp1.
select-options s_datum1 for sy-datum modif id gp1.
selection-screen end of block b1.

selection-screen begin of block b2 with frame title text-002.
parameters: p_datum2 type sy-datum modif id gp2.
select-options s_datum2 for sy-datum modif id gp2.
selection-screen end of block b2.

at selection-screen output.

  loop at screen.
    if screen-group1 = 'GP2'
      and current_step = '0'.
      screen-active = '0'.
    endif.
    if screen-group1 = 'GP1'
       and current_step = '1'.
      screen-active = '0'.
    endif.
    modify screen.
  endloop.

at selection-screen.
  current_step = current_step + 1.

  check sy-ucomm = 'ONLI'
     or sy-ucomm = space.

  if current_step &amp;lt; 2.
    sscrfields-ucomm = space.
  elseif current_step = 2.
    sscrfields-ucomm = 'ONLI'.
    clear current_step.
  endif.


start-of-selection.

  write:/ 'This is your output list'.

&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;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 17:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693453#M623265</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-08-09T17:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693454#M623266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes it is possible to do so.Just make sure that there are different blocks for your selection screen parameters.&lt;/P&gt;&lt;P&gt;selection-screen: begin of block B1 or B2 and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 18:04:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693454#M623266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T18:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693455#M623267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! Rich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would try this and let u know about it.&lt;/P&gt;&lt;P&gt;Can u let me know - what does the word sy-ucomm = 'ONLI' means.&lt;/P&gt;&lt;P&gt;Or what internally happens in "AT SELECTION SCREEN" event - where you are incrementing the step count and checking the sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Earlier, I was trying to create a screen in SE51 and call the screen from program - but was not able to display "select-options and parameters".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich, I am having few questions on data transfer and posted it on SDN.&lt;/P&gt;&lt;P&gt;Can you please respond to the below thread - &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="3895205"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kamal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 06:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693455#M623267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T06:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693456#M623268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;yes &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can creat 2 selection screens &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st design a selection screen its scren number by default 1000&lt;/P&gt;&lt;P&gt;creat a selection screen with other number &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when u pres execute call that screen at that time &lt;/P&gt;&lt;P&gt;write logic for that screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 06:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2693456#M623268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T06:40:59Z</dc:date>
    </item>
  </channel>
</rss>

