<?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: Screens in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097605#M979861</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;&lt;STRONG&gt;CALL SCREEN&lt;/STRONG&gt; will terminates current screen process and control goes to next screen&lt;/P&gt;&lt;P&gt;and conrol can comes back by using&lt;/P&gt;&lt;P&gt;statement LEAVE TO SCREEN 100.&lt;/P&gt;&lt;P&gt;but in &lt;STRONG&gt;SET SCREEN&lt;/STRONG&gt; control goes to next called screen after complete the process of current screen control nver comes back to calling screen&lt;/P&gt;&lt;P&gt;LEAVE SCREEN terminates the process of the current screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Jun 2008 07:03:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-28T07:03:17Z</dc:date>
    <item>
      <title>Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097601#M979857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Distinguish between callscreen and setscreen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2008 06:21:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097601#M979857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-28T06:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097602#M979858</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;Refer the following link , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="422804"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2008 06:24:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097602#M979858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-28T06:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097603#M979859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Pls Go through following-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.With SET SCREEN the current screen simply specifies the next screen in the chain , control branches to this next screen as sonn as th e current screen has been processed .Return from next screen to current screen is not automatic .It does not interrupt processing of the current screen.If we want to branch to the next screen without finishing the current one .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use LEAVE SCREEN. With CALL SCREEN , the current (calling) chain is suspended , and a next screen (screen chain) is called .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;In the case of &lt;STRONG&gt;setscreen&lt;/STRONG&gt; the entire processing of the current screen takes place and then the system branches out to next screen.if u want to branch out to the next screen without processing the current screen then LEAVE SCREEN should be used along with SET SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN is usually used for pop up screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2008 06:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097603#M979859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-28T06:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097604#M979860</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;We use CALL SCREEN when we have to display another screen after the processing of the Current screen or during the processing the current screen. It is mostly used for pop-up windows. Control comes to main screen while processing the CALL SCREEn statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET SCREEN is used when we want to move from one screen to another without actually coming back to the previous screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2008 07:02:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097604#M979860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-28T07:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097605#M979861</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;&lt;STRONG&gt;CALL SCREEN&lt;/STRONG&gt; will terminates current screen process and control goes to next screen&lt;/P&gt;&lt;P&gt;and conrol can comes back by using&lt;/P&gt;&lt;P&gt;statement LEAVE TO SCREEN 100.&lt;/P&gt;&lt;P&gt;but in &lt;STRONG&gt;SET SCREEN&lt;/STRONG&gt; control goes to next called screen after complete the process of current screen control nver comes back to calling screen&lt;/P&gt;&lt;P&gt;LEAVE SCREEN terminates the process of the current screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2008 07:03:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097605#M979861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-28T07:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097606#M979862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sravanthi,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;There are many posts regarding  your question in the SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;U&gt;SET SCREEN:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With SET SCREEN the current screen simply specifies the next screen in the chain , control branches to this next screen as sonn as th e current screen has been processed .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Return from next screen to current screen is not automatic .&lt;/P&gt;&lt;P&gt;It does not interrupt processing of the current screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we want to branch to the next screen without finishing the current one ,use LEAVE SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;CALL SCREEN:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With CALL SCREEN , the current chain is suspended , and a next screen 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 .This statement lets us insert such a sequence intp the current one .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra  Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2008 07:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097606#M979862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-28T07:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097607#M979863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;sravanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2008 07:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/4097607#M979863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-28T07:46:15Z</dc:date>
    </item>
  </channel>
</rss>

