<?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: difference between screen and selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784216#M649097</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Refer&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba82335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba82335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Sep 2007 09:10:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-04T09:10:23Z</dc:date>
    <item>
      <title>difference between screen and selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784215#M649096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;explain the difference between&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call selection-screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with easy understandable explanation with simple example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks guyz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 09:04:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784215#M649096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T09:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: difference between screen and selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784216#M649097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Refer&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba82335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba82335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 09:10:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784216#M649097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T09:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: difference between screen and selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784217#M649098</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;&amp;lt;b&amp;gt;CALL SCREEN&amp;lt;/b&amp;gt; interrupts the processing of the current screen to call a new screen or a chain of screens, processing of the current screen is resumed directly after the call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call selection-screen&lt;/P&gt;&lt;P&gt;Similar to &amp;lt;b&amp;gt;CALL SCREEN&amp;lt;/b&amp;gt;, except the screen you are calling must be a selection screen defined using&amp;lt;b&amp;gt; SELECTION-SCREEN BEGIN/END OF SCREEN&amp;lt;/b&amp;gt; or the standard selection screen of a report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It calls the selection screen with in the program.&lt;/P&gt;&lt;P&gt;If you call a selection screen using &amp;lt;b&amp;gt;CALL SCREEN&amp;lt;/b&amp;gt; instead of &amp;lt;b&amp;gt;CALL SELECTION-SCREEN&amp;lt;/b&amp;gt;, the initialization necessary for selection screens is not carried out, and the screen will not run properly when displayed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG:&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 123 AS WINDOW TITLE TEXT-456. &lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN BEGIN OF BLOCK BL1 WITH FRAME TITLE TEXT-BL1 &lt;/P&gt;&lt;P&gt;                                      NO INTERVALS. &lt;/P&gt;&lt;P&gt;    SELECT-OPTIONS SEL1 FOR SY-SUBRC. &lt;/P&gt;&lt;P&gt;    PARAMETERS     PAR1 LIKE SPFLI-CARRID. &lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN COMMENT /10(20) TEXT-COM. &lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF BLOCK BL1. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 123. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 123 STARTING AT 20 5. &lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;ELSE. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;ENDIF.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if useful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 09:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784217#M649098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T09:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: difference between screen and selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784218#M649099</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;CALL SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;For any program in which selection screens are defined, you can call these screens at any point of the program flow using the following statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN &amp;lt;numb&amp;gt; [STARTING AT &amp;lt;x1&amp;gt; &amp;lt;y 1&amp;gt;] &lt;/P&gt;&lt;P&gt;[ENDING AT &amp;lt;x2&amp;gt; &amp;lt;y 2&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement calls selection screen number &amp;lt;numb&amp;gt;. The selection screen called must be defined in the calling program either as the standard selection screen (screen number 1000) or as a user-defined selection screen (any screen number). You must always use CALL SELECTION-SCREEN to call selection screens.In case of CALL SCREEN, the system will not be able to process the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN.&lt;/P&gt;&lt;P&gt;BY calling CALL SCREEN current (calling) chain is suspended , and a next screen (screen chain) is called .The called can then return to the suspended chain with the statement LEAVE SCREEN TO SCREEN 0 .Sometime we might want to let an user call a pop up screen from the main application screen to let him enter secondary information.After they have completed their enteries, the users should be able to close the popup and return directly to the place where they left off in the main screen.Here comes CALL SCREEN into picture .&lt;/P&gt;&lt;P&gt;here is also link for further knowledge.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba82335c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba82335c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful,&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;anuj&lt;/P&gt;&lt;P&gt; .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 09:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-screen-and-selection-screen/m-p/2784218#M649099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T09:39:49Z</dc:date>
    </item>
  </channel>
</rss>

