<?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 Classical program possible with more than two screens ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481715#M1652342</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 need a report with 3 screens. To my knowledge, classic report can be done with two screens and module pool with multiple screens. Can the below requirement be achieved with classical programming alone ? If so, can we place some buttons on the second screen to execute further ? If possible, point me to some standard programs or some code as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) An selection screen with input fields on the first screen.&lt;/P&gt;&lt;P&gt;2) Display screen with records on the second along with an execution button on the top.&lt;/P&gt;&lt;P&gt;3) Result of execution on the third screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gaurav.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Dec 2011 11:48:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-12-14T11:48:05Z</dc:date>
    <item>
      <title>Classical program possible with more than two screens ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481715#M1652342</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 need a report with 3 screens. To my knowledge, classic report can be done with two screens and module pool with multiple screens. Can the below requirement be achieved with classical programming alone ? If so, can we place some buttons on the second screen to execute further ? If possible, point me to some standard programs or some code as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) An selection screen with input fields on the first screen.&lt;/P&gt;&lt;P&gt;2) Display screen with records on the second along with an execution button on the top.&lt;/P&gt;&lt;P&gt;3) Result of execution on the third screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gaurav.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 11:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481715#M1652342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-14T11:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Classical program possible with more than two screens ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481716#M1652343</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;Why would this be impossible?&lt;/P&gt;&lt;P&gt;I don't think there is such limitation...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: p_input(10).

START-OF-SELECTION.
   call screen '100'.
"....
MODULE USER_COMMAND input.
"...
  CASE save_ucomm.
    WHEN 'EXEC'. call screen '200'.
  ENDCASE.
ENDMODULE.
"...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did I misunderstood your question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;Manu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 12:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481716#M1652343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-14T12:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Classical program possible with more than two screens ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481717#M1652344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any possibility without using 'screen' ? In normal classical reports, we don't call any screen. If it is not possible, then i will go with how you say..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gaurav.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 12:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481717#M1652344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-14T12:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Classical program possible with more than two screens ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481718#M1652345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any possibility without using 'screen' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;of course... by using lists and write statements instead (or ALVs), and gui status to handle your functions...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;Manu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 15:33:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-program-possible-with-more-than-two-screens/m-p/8481718#M1652345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-14T15:33:13Z</dc:date>
    </item>
  </channel>
</rss>

