<?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 sub screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998255#M955272</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN &amp;lt;subarea&amp;gt;&lt;/P&gt;&lt;P&gt;INCLUDING &amp;lt;program_name&amp;gt; &amp;lt;dynpro_number&amp;gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN &amp;lt;subarea&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why CALL SUBSCREEN is used both in PBO and PAI??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jun 2008 13:15:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-10T13:15:12Z</dc:date>
    <item>
      <title>sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998255#M955272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN &amp;lt;subarea&amp;gt;&lt;/P&gt;&lt;P&gt;INCLUDING &amp;lt;program_name&amp;gt; &amp;lt;dynpro_number&amp;gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN &amp;lt;subarea&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why CALL SUBSCREEN is used both in PBO and PAI??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 13:15:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998255#M955272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T13:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998256#M955273</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;/P&gt;&lt;P&gt;in PBO we use that so befor the screen is displayed the subscreen area will be dispalyed(contents like table control etc we donot have a empty one)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI for suppose we want to update or do any other we use it&lt;/P&gt;&lt;P&gt;example you have a tabstrip and in the one of tabs you update the database if we donot subscreen in PAI  it will not be updated &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more help check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbabfe35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbabfe35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: prasanth kasturi on Jun 10, 2008 3:26 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 13:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998256#M955273</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-06-10T13:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998257#M955274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN &amp;lt;area&amp;gt; INCLUDING &amp;lt;prog&amp;gt; &amp;lt;dynp&amp;gt;.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement assigns the subscreen screen with number &amp;lt;dynp&amp;gt; to the subscreen area called &amp;lt;area&amp;gt;. With &amp;lt;prog&amp;gt; you must specify the ABAP program in which the subscreen screen is defined. If it does not find a corresponding subscreen screen, a runtime error occurs. The PBO flow logic of the subscreen screen is also included at the same point. This can call PBO modules of the ABAP program in which the subscreen screen is defined. At the end of the subscreen PBO, the global fields from the program are passed to any identically-named screen fields in the subscreen screen. The PBO flow logic of the subscreen screen can itself include further subscreens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The name &amp;lt;area&amp;gt; of the subscreen area must be entered directly without inverted commas. You can specify the names &amp;lt;prog&amp;gt; and &amp;lt;dynp&amp;gt; either as literals or variables. If you use variables, you must declare and fill identically-named variables in the ABAP program. The screen number &amp;lt;dynp&amp;gt; must be 4 characters long. If you do not assign a subscreen screen to an area, it remains empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To call the PAI flow logic of the subscreen screen, use the following statement in the PAI flow logic of the main screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN &amp;lt;area&amp;gt;.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement includes the PAI flow logic of the subscreen screen included in the subscreen area &amp;lt;area&amp;gt; in the PBO event. This can call PAI modules of the ABAP program in which the subscreen screen is defined. Data is transported between identically-named fields in the subscreen screen and the ABAP program either when the PAI event is triggered, or at the corresponding FIELD statements in the PAI flow logic of the subscreen screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot place the CALL SUBSCREEN statement between CHAIN and ENDCHAIN or LOOP and ENDLOOP (see table controls). While a subscreen screen is being processed, the system field SY-DYNNR contains its screen number. Its contents therefore change when the CALL SUBSCREEN statement occurs and when you return to the main screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use subscreen screens, remember that the data from their input/output fields is transported to and from the programs in which they are defined. The function codes of user actions on the screen, on the other hand, are always placed in the OK_CODE field of the main screen, and transported into the program in which it is defined. You should therefore name the function codes of your subscreen screens differently from those of the main screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If, for encapsulation reasons, you define subscreen screens in other ABAP programs, you must ensure that the required global data of your ABAP programs is transported into the program of the calling screen after you have called their PAI flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, you can define subscreen screens in function groups and pass their global data to and from function module parameters. You must then call the function modules in appropriate dialog modules in the main program to transport the data. &lt;/P&gt;&lt;P&gt;You can also export the global data from the main program as a data cluster to ABAP memory before the PBO of a subscreen screen and import it into a PBO module of the subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbabfe35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbabfe35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 13:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998257#M955274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T13:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998258#M955275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;To display your subscreen when the Screen is called evrey time for display &lt;/P&gt;&lt;P&gt;we need to call this subscreen in PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u change Something in PAI or want to interact with the subscreen. it is  called in PAI to capture the event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 13:24:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998258#M955275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T13:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: sub screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998259#M955276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but why full syntax is not given for SUBSCREEN in PAI..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 10:03:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-screen/m-p/3998259#M955276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-13T10:03:14Z</dc:date>
    </item>
  </channel>
</rss>

