<?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 Re: CALL SELECTION-SCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen/m-p/5307539#M1223929</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 can check the sy-subrc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL SELECTION-SCREEN '500' STARTING AT 10 10.

IF sy-subrc = 0.

* User has pressed Execute (F8).

ELSE.
  
* User has pressed cancel.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the F1 help on CALL SELECTION-SCREEN for details..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Mar 2009 17:08:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-16T17:08:44Z</dc:date>
    <item>
      <title>CALL SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen/m-p/5307537#M1223927</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 have this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 500 TITLE title2 AS WINDOW.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS pfecha FOR mkpf-bldat.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN '500' STARTING AT 10 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i call this screen i get a window and  4 buttons, i need to know the value  that i get when i press F8 or cancel. In wich variable is stored that value..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks on advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;David Funez&lt;/P&gt;&lt;P&gt;Tegucigalpa, Honduras&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 17:06:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen/m-p/5307537#M1223927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T17:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: CALL SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen/m-p/5307538#M1223928</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;sy-ucomm stores these values..&lt;/P&gt;&lt;P&gt;and also check sscrfields-ucomm... for this you need to declare this way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables : sscrfields.&lt;/P&gt;&lt;P&gt;and then check with sscrfields-ucomm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 17:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen/m-p/5307538#M1223928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T17:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: CALL SELECTION-SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen/m-p/5307539#M1223929</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 can check the sy-subrc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL SELECTION-SCREEN '500' STARTING AT 10 10.

IF sy-subrc = 0.

* User has pressed Execute (F8).

ELSE.
  
* User has pressed cancel.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the F1 help on CALL SELECTION-SCREEN for details..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 17:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-selection-screen/m-p/5307539#M1223929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T17:08:44Z</dc:date>
    </item>
  </channel>
</rss>

