<?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 call selection screen exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501778#M565309</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've found a problem arising from this sentence "call SELECTION-SCREEN 1001 STARTING AT 10 10",in the main screen. (here the type of screen 1001 is 'Modal Dialog Box')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 'close' button on the right-top correr of the screen has no effect to close the &lt;/P&gt;&lt;P&gt;screen 1001,so how can I catch the event of click on that button?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jul 2007 15:24:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-18T15:24:31Z</dc:date>
    <item>
      <title>call selection screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501778#M565309</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've found a problem arising from this sentence "call SELECTION-SCREEN 1001 STARTING AT 10 10",in the main screen. (here the type of screen 1001 is 'Modal Dialog Box')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 'close' button on the right-top correr of the screen has no effect to close the &lt;/P&gt;&lt;P&gt;screen 1001,so how can I catch the event of click on that button?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 15:24:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501778#M565309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T15:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: call selection screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501779#M565310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to write the code as below&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 'EXIT'.&lt;/P&gt;&lt;P&gt;leave to screen 0.  " always use screen 0 for modal dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when "BACK'&lt;/P&gt;&lt;P&gt;leave to screen 0&lt;/P&gt;&lt;P&gt;WHEN 'CANC'.&lt;/P&gt;&lt;P&gt;leave to screen 0&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please activate buttons in Menu Painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 15:42:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501779#M565310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T15:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: call selection screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501780#M565311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,Seshu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks your reply. I've already written my pai for this selection-screen,but the&lt;/P&gt;&lt;P&gt;click on the 'X' on the right-top corner does not ignite the event and the programe will not go to PAI part.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 15:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501780#M565311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T15:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: call selection screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501781#M565312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you use screen type modal dialog box,you need to activate pf-status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if so keep the break point at call screen ,then do the debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you click on X ,then it should come to main screen,here you need to use leave to screen 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check it in debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 16:02:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501781#M565312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T16:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: call selection screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501782#M565313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,Seshu&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Thank you very much,it is solved!  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 00:39:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen-exit/m-p/2501782#M565313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T00:39:12Z</dc:date>
    </item>
  </channel>
</rss>

