<?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 Problem with call subscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858368#M1136052</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a Transaction using two screens,one is normal screen(100) and the other one is subscreen(110).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In flow logic of 100 PBO, I have written the following statement.&lt;/P&gt;&lt;P&gt;call subscreen SUB including 'zmod1' '110'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have activated the two screens.But I am getting run time error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;Program "zmod1" tried to use screen "0110".&lt;/P&gt;&lt;P&gt;The screen does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one  please give me the solution for this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Dec 2008 11:04:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-04T11:04:18Z</dc:date>
    <item>
      <title>Problem with call subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858368#M1136052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a Transaction using two screens,one is normal screen(100) and the other one is subscreen(110).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In flow logic of 100 PBO, I have written the following statement.&lt;/P&gt;&lt;P&gt;call subscreen SUB including 'zmod1' '110'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have activated the two screens.But I am getting run time error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;Program "zmod1" tried to use screen "0110".&lt;/P&gt;&lt;P&gt;The screen does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one  please give me the solution for this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 11:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858368#M1136052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T11:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858369#M1136053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ensure screen 110 is activated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try changing call to&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call subscreen SUB including 'ZMOD1' '0110'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover do not forget to write  &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;in your PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 11:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858369#M1136053</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T11:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858370#M1136054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check wheather u have written CALL SUBSCREEN: AREA1in pai r not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see below example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE STATUS_100.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN: AREA1 INCLUDING SY-REPID NUMBER1,&lt;/P&gt;&lt;P&gt;                  AREA2 INCLUDING SY-REPID NUMBER2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE CANCEL AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;  MODULE SAVE_OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN: AREA1,&lt;/P&gt;&lt;P&gt;                  AREA2.&lt;/P&gt;&lt;P&gt;  MODULE USER_COMMAND_100.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 11:10:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858370#M1136054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T11:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858371#M1136055</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;Program name must be upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call subscreen SUB including 'ZMOD1' '110'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 11:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858371#M1136055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T11:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858372#M1136056</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;make sure that you select the subscreen radio button in the SCREEN attribute tab of screen 110.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 11:14:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-subscreen/m-p/4858372#M1136056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T11:14:02Z</dc:date>
    </item>
  </channel>
</rss>

