<?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 answer please....!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-please/m-p/3721843#M896022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.... all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I am having three screens....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1000 &lt;/P&gt;&lt;P&gt;2000&lt;/P&gt;&lt;P&gt;3000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i enter into 3000 through 1000 its one work like tickets booking...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i enter into 3000 through 2000 its another work like ticket cancelling...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here my requirement is screen number has to appear with one extra pushbutton...,&lt;/P&gt;&lt;P&gt;    if i enter into that through 2000 screen.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(above is only example and my requirement is very urgent and i will get back to you with max:points)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Apr 2008 10:31:26 GMT</pubDate>
    <dc:creator>naveen_inuganti2</dc:creator>
    <dc:date>2008-04-25T10:31:26Z</dc:date>
    <item>
      <title>answer please....!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-please/m-p/3721843#M896022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.... all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I am having three screens....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1000 &lt;/P&gt;&lt;P&gt;2000&lt;/P&gt;&lt;P&gt;3000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i enter into 3000 through 1000 its one work like tickets booking...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i enter into 3000 through 2000 its another work like ticket cancelling...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here my requirement is screen number has to appear with one extra pushbutton...,&lt;/P&gt;&lt;P&gt;    if i enter into that through 2000 screen.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(above is only example and my requirement is very urgent and i will get back to you with max:points)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 10:31:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-please/m-p/3721843#M896022</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-04-25T10:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: answer please....!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-please/m-p/3721844#M896023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;instead of using 3 screens use 4 screens...&lt;/P&gt;&lt;P&gt;1000 n 2000 with their normal functionality&lt;/P&gt;&lt;P&gt;and 3000 for booking &amp;amp; 4000 for cancellation...&lt;/P&gt;&lt;P&gt;this way you can call 3000 for booking and 4000 for cancellation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 10:36:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-please/m-p/3721844#M896023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T10:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: answer please....!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-please/m-p/3721845#M896024</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 to store the sender screen number. Store it in a global variable (f.e. gv_dynnr), define in a top include, and you can use the sy-dynnr system variable to save.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the 3000 screen's PBO, make a LOOP AT SCREEN statement.&lt;/P&gt;&lt;P&gt;IF screen-name = 'MYBUTTON'.&lt;/P&gt;&lt;P&gt;IF gv_dynnr = 2000.&lt;/P&gt;&lt;P&gt;MOVE 0 TO screen-active.&lt;/P&gt;&lt;P&gt;ELSE:&lt;/P&gt;&lt;P&gt;MOVE 0 TO screen-active.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY screen.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 10:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-please/m-p/3721845#M896024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T10:46:41Z</dc:date>
    </item>
  </channel>
</rss>

