<?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: Module Pool Program : Calling Subscreen in a Normal Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program-calling-subscreen-in-a-normal-screen/m-p/2886825#M678176</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;In the screen take the subscreen area,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And do the coding into its PBO and PAI for calling screen into this subscreen area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_1000.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub_1000 INCLUDING sy-repid sc_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE user_command_1000.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub_1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here sy-repid for prog name&lt;/P&gt;&lt;P&gt;and sc_no is for the screen number.&lt;/P&gt;&lt;P&gt;sub_1000 is the name of subscreen area which is on the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Sep 2007 04:56:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-20T04:56:36Z</dc:date>
    <item>
      <title>Module Pool Program : Calling Subscreen in a Normal Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program-calling-subscreen-in-a-normal-screen/m-p/2886823#M678174</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;I have 3 normal screens and I need call a subscreen in all the 3 normal screens. Can you please suggest me how to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate Your Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kannan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 00:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program-calling-subscreen-in-a-normal-screen/m-p/2886823#M678174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T00:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool Program : Calling Subscreen in a Normal Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program-calling-subscreen-in-a-normal-screen/m-p/2886824#M678175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kannan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we do it using a call subscreen ......&lt;/P&gt;&lt;P&gt;in the 'normal' screens first of all we define a subscreen area&lt;/P&gt;&lt;P&gt;then we create another screen whose attributes tab will be changed to 'Subscreen' instead of 'normal screen' in the radio button ...then we define the fields and data structures required in this screen&lt;/P&gt;&lt;P&gt;The idea is to call this 'subscreen' into the screen area of a 'normal' screen&lt;/P&gt;&lt;P&gt;then use the code in PBO of the normal screen&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN: AREA1 INCLUDING SY-REPID NUMBER1,&lt;/P&gt;&lt;P&gt;where area1 is the name of the subscreen area defined in 'normal screen'&lt;/P&gt;&lt;P&gt;sy-repid =&amp;gt; current report name&lt;/P&gt;&lt;P&gt;Number1 =&amp;gt; screen number of the 'subscreen' we created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the logic is like we are calling into the subscreen area for the report name the 'subscreen number' and hence it's attributes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the program&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_SUBSCREENS  in se38 for more clarity&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your case since we need to call the single subscreen in 3 different screens...we need to create 3 subscreen areas..in each of the normal screen eg: area1,area2 and area3 and call the 'subscreen' into this area at the PBO of the respective screens using the statement.&lt;/P&gt;&lt;P&gt;PBO of normal screen1&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN: AREA1 INCLUDING SY-REPID NUMBER1.&lt;/P&gt;&lt;P&gt;PBO of normal screen2&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN: AREA2 INCLUDING SY-REPID NUMBER1.&lt;/P&gt;&lt;P&gt;PBO of normal screen3&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN: AREA3 INCLUDING SY-REPID NUMBER1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where number1 is the screen number of the 'subscreen'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls check and revert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 03:08:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program-calling-subscreen-in-a-normal-screen/m-p/2886824#M678175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T03:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool Program : Calling Subscreen in a Normal Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program-calling-subscreen-in-a-normal-screen/m-p/2886825#M678176</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;In the screen take the subscreen area,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And do the coding into its PBO and PAI for calling screen into this subscreen area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_1000.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub_1000 INCLUDING sy-repid sc_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE user_command_1000.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub_1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here sy-repid for prog name&lt;/P&gt;&lt;P&gt;and sc_no is for the screen number.&lt;/P&gt;&lt;P&gt;sub_1000 is the name of subscreen area which is on the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 04:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program-calling-subscreen-in-a-normal-screen/m-p/2886825#M678176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T04:56:36Z</dc:date>
    </item>
  </channel>
</rss>

