<?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 call sub screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353106#M804389</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'Call subscreen' is written in flow logic but not in the actual program like 'call screen' why??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Feb 2008 10:11:21 GMT</pubDate>
    <dc:creator>prasanth_kasturi</dc:creator>
    <dc:date>2008-02-07T10:11:21Z</dc:date>
    <item>
      <title>call sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353106#M804389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'Call subscreen' is written in flow logic but not in the actual program like 'call screen' why??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 10:11:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353106#M804389</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-02-07T10:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: call sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353107#M804390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No it is to create sub screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report programming is done in ABAP language. 'Call screen' is a ABAP language element to call a screen from report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dialog programming is done in a language similar to ABAP but not exact to ABAP. It is called screen language. CALL SUBSCREEN is a element of screen language like CHAIN, FILED, TABLE CONTROL etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
  MODULE STATUS_100.
  CALL SUBSCREEN: AREA1 INCLUDING SY-REPID NUMBER1,
                  AREA2 INCLUDING SY-REPID NUMBER2.

PROCESS AFTER INPUT.
  MODULE CANCEL AT EXIT-COMMAND.
  MODULE SAVE_OK.
  CALL SUBSCREEN: AREA1,
                  AREA2.
  MODULE USER_COMMAND_100.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Subscreen is similar to include in ABAP programming language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are three steps to define sub-screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Define the subscreen area on a screen.&lt;/P&gt;&lt;P&gt;2. Define suitable sub screen screen.&lt;/P&gt;&lt;P&gt;3. Include the subscreen in the subscreen area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abhishek Sarkar on Feb 7, 2008 11:21 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 10:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353107#M804390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T10:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: call sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353108#M804391</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;Usually used for pop up screens. Many times, there is a need for user to enter additional information or secondary information on another screen or pop up screen. Once the user enters the data, he should be able to go back to main screen or to the screen where he started. This is not possible by using SET SCREEN. CALL SCREEN achieves this functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;Call Screen 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will simply call a screen number 200 from a main screen. Once the screen is displayed the user can enter all the data and return to the main screen by clicking BACK button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To call screen as pop up screen the syntax is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call screen starting at &amp;lt;col.no.&amp;gt; &amp;lt;line no&amp;gt;&lt;/P&gt;&lt;P&gt;				 Ending at &amp;lt;col no&amp;gt; &amp;lt;line no&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case window will be popped as window and user can close it by using BACK button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 10:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353108#M804391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T10:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: call sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353109#M804392</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;Generally, operations on screens are dealt in dynpro's or what we traditionally call module pool. So we could call a subscreen inside any screen and is not possible anywhere else. A subscreen could be called only in a designated Subscreen area and that too could be dealt in Module pool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence you generally do not get an oppurtunity to call subscreens in normal programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarifies ur doubt... else plz revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Reward points if this helps,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Kiran Kumar S&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 10:19:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353109#M804392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T10:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: call sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353110#M804393</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;you can call sub screen like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process before output.&lt;/P&gt;&lt;P&gt;  module status_0101.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call subscreen : headerdetails including 'ZPURCR_71945' '1010',&lt;/P&gt;&lt;P&gt;                    lineitems including 'ZPURCR_71945' '1011',&lt;/P&gt;&lt;P&gt;                    schedulelines including 'ZPURCR_71945' '1012'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process after input.&lt;/P&gt;&lt;P&gt;module exit_0101 at exit-command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call subscreen: headerdetails ,&lt;/P&gt;&lt;P&gt;                  lineitems,&lt;/P&gt;&lt;P&gt;                  schedulelines.&lt;/P&gt;&lt;P&gt;  module user_command_0101.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward points if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 10:24:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353110#M804393</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2008-02-07T10:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: call sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353111#M804394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii &lt;/P&gt;&lt;P&gt;Kiran plz be a bit more clear plz....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 11:23:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-sub-screen/m-p/3353111#M804394</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-02-08T11:23:12Z</dc:date>
    </item>
  </channel>
</rss>

