<?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: Problem in Calling Subcreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876497#M1139903</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;Check the demo program DEMO_DYNPRO_TABSTRIP_SERVER.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Dec 2008 10:01:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-09T10:01:54Z</dc:date>
    <item>
      <title>Problem in Calling Subcreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876496#M1139902</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;my main screen number is 1001 and in that screen i have a tabstrip with subscreens 1002,1003,1004,1005,1006.Each tab has an ALV...&lt;/P&gt;&lt;P&gt;When i click on excute button in my main screen 1001 then i need to call all the subscreens and all the ALV's should be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My coding...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module user-command 1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case Sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When 'EXCE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN TAB_SCA INCLUDING sy-repid '1002'.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN TAB_SCA INCLUDING sy-repid '1003'.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN TAB_SCA INCLUDING sy-repid '1004'.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN TAB_SCA INCLUDING sy-repid '1005'.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN TAB_SCA INCLUDING sy-repid '1006'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but error is displayed as     "," or "ID ... FIELD ..." expected after "SUBSCREEN".&lt;/P&gt;&lt;P&gt;Guys Please let me know if someone knows the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chaithanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 09:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876496#M1139902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T09:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Calling Subcreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876497#M1139903</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;Check the demo program DEMO_DYNPRO_TABSTRIP_SERVER.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 10:01:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876497#M1139903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T10:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Calling Subcreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876498#M1139904</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 need to call the subscreens this way if it is module pool (screen program)&lt;/P&gt;&lt;P&gt;in PBO the syntax is like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call subscreen sub including sy-repid dynny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call subscreen sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all the screens you have mentioned must of type SUBSCREEN radio button selected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in top incude declare a variable&lt;/P&gt;&lt;P&gt;DATA : DYNNR TYPE SY-DYNNR value '1002'( this will be called initially)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;in a module you can not call subscreen as you did it above&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;in PAI&lt;/P&gt;&lt;P&gt;module usercommand_1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ok_code&lt;/P&gt;&lt;P&gt;when 'TAB1'&lt;/P&gt;&lt;P&gt;DYNNR = 1001&lt;/P&gt;&lt;P&gt;WHEN 'TAB2'&lt;/P&gt;&lt;P&gt;DYNNR = 1002&lt;/P&gt;&lt;P&gt;etc&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ramchander Krishnamraju on Dec 29, 2008 5:23 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 10:06:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876498#M1139904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T10:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Calling Subcreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876499#M1139905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refer this demo program -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt;&amp;gt;DEMO_DYNPRO_SUBSCREENS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 10:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876499#M1139905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T10:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Calling Subcreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876500#M1139906</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 PAI we need to declare &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call subscreen &amp;lt;Sub_Screen&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call subscreen &amp;lt;Sub_screen&amp;gt; including '&amp;lt;PROGRAM IN CAPITALS&amp;gt;' 'MainScreenNumber'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this shld solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Krishna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 12:18:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-calling-subcreen/m-p/4876500#M1139906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T12:18:46Z</dc:date>
    </item>
  </channel>
</rss>

