<?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 as a subscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004629#M408482</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN  subscreen_9110.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2007 10:34:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-07T10:34:34Z</dc:date>
    <item>
      <title>Selection screen as a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004624#M408477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a selection screen as a subscreen and have called it in a main screen. The subscreen is being called in the main screen and I get the expected result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is that when I loop the main SCREEN fields then I do no get the design elements available (e.g select-options field) on the SubScreen. Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vaibhav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:07:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004624#M408477</guid>
      <dc:creator>vaibhav_gorde</dc:creator>
      <dc:date>2007-03-07T10:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen as a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004625#M408478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vaibhav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this program if it can help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DEMO_SEL_SCREEN_AS_SUBSCREEN&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:12:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004625#M408478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T10:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen as a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004626#M408479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont know hwere you are looping for selection screen but if you want to get the selection screen fields then do like below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF SCREEN 123 AS WINDOW TITLE TEXT-456.
  SELECTION-SCREEN BEGIN OF BLOCK BL1 WITH FRAME TITLE TEXT-BL1
                                      NO INTERVALS.
    SELECT-OPTIONS SEL1 FOR SY-SUBRC.
    PARAMETERS     PAR1 LIKE SPFLI-CARRID.
    SELECTION-SCREEN COMMENT /10(20) TEXT-COM.
  SELECTION-SCREEN END OF BLOCK BL1.
SELECTION-SCREEN END OF SCREEN 123.



CALL SELECTION-SCREEN 123 ."STARTING AT 20 5.

at selection-screen output.
loop at screen.
endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:13:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004626#M408479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T10:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen as a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004627#M408480</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;Chekc this demo report:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DEMO_SEL_SCREEN_AS_SUBSCREEN&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004627#M408480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T10:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen as a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004628#M408481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shiba,&lt;/P&gt;&lt;P&gt;It is SUBSCREEN and not the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 9110 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt; SELECT-OPTIONS s_manout FOR erdo-manouts_in NO INTERVALS. SELECTION-SCREEN END OF SCREEN 9110.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This subscreen is called in the PBO PAI of main screen :&lt;/P&gt;&lt;P&gt;PBO&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN subscreen_9110&amp;lt;&amp;lt;i&amp;gt;subscreen work area&amp;lt;/i&amp;gt;&amp;gt; INCLUDING sy-repid '9110'.&lt;/P&gt;&lt;P&gt;PAI&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN subscreen_9110.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;And I am looping the SCREEN in PAI of main screen where I do NOT get &amp;lt;b&amp;gt;s_manout&amp;lt;/b&amp;gt;  from subscreen (9110).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope, this is much clear than earlier!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vaibhav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:29:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004628#M408481</guid>
      <dc:creator>vaibhav_gorde</dc:creator>
      <dc:date>2007-03-07T10:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen as a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004629#M408482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN  subscreen_9110.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:34:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-as-a-subscreen/m-p/2004629#M408482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T10:34:34Z</dc:date>
    </item>
  </channel>
</rss>

