<?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 closing a subscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378208#M1041667</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 have call a sub screen by the call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL SCREEN 100 STARTING AT 25 01.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I close this window using the [x] button (closing window button) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Aug 2008 08:11:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-23T08:11:34Z</dc:date>
    <item>
      <title>closing a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378208#M1041667</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 have call a sub screen by the call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL SCREEN 100 STARTING AT 25 01.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I close this window using the [x] button (closing window button) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 08:11:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378208#M1041667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T08:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: closing a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378209#M1041668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use leave screen or leave to screen 0. after call screen.&lt;/P&gt;&lt;P&gt;if you press enter then it will leave current screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 08:19:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378209#M1041668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T08:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: closing a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378210#M1041669</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;Write Code LEAVE TO SCREEN 0 against the Button exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case sy-ucomm.&lt;/P&gt;&lt;P&gt;  when 'EXIT'.&lt;/P&gt;&lt;P&gt;  Leave to screen 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 08:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378210#M1041669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T08:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: closing a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378211#M1041670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it depends on how you designed the screen.&lt;/P&gt;&lt;P&gt;and what kind of PF-STATUS you set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you create the screen choose the screen type as Modal Dialog Box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the PBO while setting the status , Choose the type as Dialog box,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then give the Function code for Cancel button as CANCEL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now in PAI write this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;module USER_COMMAND_0100 input.
if sy-ucomm = 'EXIT'.
  leave to screen 0.
endif.
endmodule.                 " USER_COMMAND_0100  INPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 08:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378211#M1041670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T08:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: closing a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378212#M1041671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thankyou all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your helps help me in other things&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe i'm not that clear with my question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to close the window from the stander window close button wich is in the upper-right corrner [X]....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 09:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378212#M1041671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T09:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: closing a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378213#M1041672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even i am talking about the same upper right corner [X]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 09:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378213#M1041672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T09:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: closing a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378214#M1041673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A subscreen cannot be closed as it cannot have a status of it own.The main screen can only be closed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 10:40:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378214#M1041673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T10:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: closing a subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378215#M1041674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thankyou Vijay Babu Dudla &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Aug 2008 04:30:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/closing-a-subscreen/m-p/4378215#M1041674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-24T04:30:33Z</dc:date>
    </item>
  </channel>
</rss>

