<?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: pushbuttons and execute in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905610#M1145412</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;Find the F8 fcode for the selection screen. Rearrange this fcode created push button on the screen field. THis will be helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Dec 2008 09:45:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-23T09:45:48Z</dc:date>
    <item>
      <title>pushbuttons and execute</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905609#M1145411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to execute a report without pressing F8 but by using the same functionality in a pushbutton.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 09:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905609#M1145411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T09:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: pushbuttons and execute</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905610#M1145412</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;Find the F8 fcode for the selection screen. Rearrange this fcode created push button on the screen field. THis will be helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 09:45:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905610#M1145412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T09:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: pushbuttons and execute</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905611#M1145413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Create a pushbutton on the selection screen and it will resolve this.If u want to disable the execute button use the FM &lt;STRONG&gt;"RS_SET_SELSCREEN_STATUS"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shafi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 09:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905611#M1145413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T09:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: pushbuttons and execute</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905612#M1145414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;below is for adding pushbutton on selection-screen......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_carrid TYPE s_carr_id,&lt;/P&gt;&lt;P&gt;            p_cityfr TYPE s_from_cit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: FUNCTION KEY 1,&lt;/P&gt;&lt;P&gt;                  FUNCTION KEY 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  sscrfields-functxt_01 = 'LH'.&lt;/P&gt;&lt;P&gt;  sscrfields-functxt_02 = 'UA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE sscrfields-ucomm.&lt;/P&gt;&lt;P&gt;      WHEN'FC01'.&lt;/P&gt;&lt;P&gt;      p_carrid = 'LH'.&lt;/P&gt;&lt;P&gt;      p_cityfr = 'Frankfurt'.&lt;/P&gt;&lt;P&gt;    WHEN 'FC02'.&lt;/P&gt;&lt;P&gt;      p_carrid = 'UA'.&lt;/P&gt;&lt;P&gt;      p_cityfr = 'Chicago'.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below f.m module is to exclude the standard pushbutton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RS_SET_SELSCREEN_STATUS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 09:51:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons-and-execute/m-p/4905612#M1145414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T09:51:36Z</dc:date>
    </item>
  </channel>
</rss>

