<?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: Consecutive nested call screen  dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326488#M511330</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;What i understand from your Q is that, you have an include program which contains the logic for populating an internal table and also the screen with table control to be called in that Include Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i am correct, then put the logic in some subroutine say perform table_display.&lt;/P&gt;&lt;P&gt;Now dont call that program instead Include that program in your main program and give PERFORM table_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If my understanding of your Q is wrong, then please make it clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Navneet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 02 Jun 2007 18:44:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-02T18:44:46Z</dc:date>
    <item>
      <title>Consecutive nested call screen  dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326484#M511326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have created a table control and displaying data on the screen.I have included this in an include program and calling this program from another program &lt;/P&gt;&lt;P&gt;calling program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include called program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whene ever i select a radio button on main program i initiate a call&lt;/P&gt;&lt;P&gt;if rad = 'x'&lt;/P&gt;&lt;P&gt;perform called program.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i am getting a dump, that "You have requested too many consecutive nested call screens"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one plz help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2007 16:11:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326484#M511326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-02T16:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Consecutive nested call screen  dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326485#M511327</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 have mentioned that you have the table control in an include program and you have included the include program, then all you got to do is to call the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If rad = 'X'.&lt;/P&gt;&lt;P&gt;call screen xxxx.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI, always create tcode for any dynamic program i.e. dynpro and call the tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Navneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2007 17:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326485#M511327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-02T17:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Consecutive nested call screen  dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326486#M511328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;if possible&amp;lt;/b&amp;gt; try to repalce to CALL SCREEN........statements in ur program with LEVAVE TO SCREEN....... statement, u can only nest around 50-51 CALL SCREEN statements, which might be the reason for ur dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2007 18:09:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326486#M511328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-02T18:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Consecutive nested call screen  dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326487#M511329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your response..&lt;/P&gt;&lt;P&gt;All my logic for itable data is in the called program.&lt;/P&gt;&lt;P&gt;If i call the screen  from my main program...how will it work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2007 18:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326487#M511329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-02T18:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Consecutive nested call screen  dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326488#M511330</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;What i understand from your Q is that, you have an include program which contains the logic for populating an internal table and also the screen with table control to be called in that Include Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i am correct, then put the logic in some subroutine say perform table_display.&lt;/P&gt;&lt;P&gt;Now dont call that program instead Include that program in your main program and give PERFORM table_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If my understanding of your Q is wrong, then please make it clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Navneet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2007 18:44:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326488#M511330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-02T18:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Consecutive nested call screen  dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326489#M511331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have included the program and did perform statement...&lt;/P&gt;&lt;P&gt;And the form statement is causing issue saying too many nested screens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2007 20:48:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/consecutive-nested-call-screen-dump/m-p/2326489#M511331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-02T20:48:09Z</dc:date>
    </item>
  </channel>
</rss>

