<?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: push button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681576#M300375</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;Try using the function module.&lt;/P&gt;&lt;P&gt;RS_EXTERNAL_SELSCREEN_STATUS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read function module documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Nov 2006 06:16:16 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2006-11-21T06:16:16Z</dc:date>
    <item>
      <title>push button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681573#M300372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    I want to place a pushbutton on the application toolbar of the Selection-Screen .&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;     Is it possible . If so how ? .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance ,&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 05:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681573#M300372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T05:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: push button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681574#M300373</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;check the code below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report z_test1.

TABLES: sscrfields,rlgrap .
INCLUDE &amp;lt;icon&amp;gt; .

SELECTION-SCREEN FUNCTION KEY 1 .
SELECTION-SCREEN FUNCTION KEY 2 .
PARAMETERS: p_file LIKE rlgrap-filename DEFAULT 'C:test.txt' .

INITIALIZATION .

  CONCATENATE icon_next_object 'Download into excel'
  INTO sscrfields-functxt_01 .

  CONCATENATE   ICON_EXECUTE_OBJECT 'Execute'
  INTO sscrfields-functxt_02 .


AT SELECTION-SCREEN.
  IF sscrfields-ucomm = 'FC01'.
    message s000(su) with 'testing'.
  elseif sscrfields-ucomm = 'FC02'.
   sscrfields-ucomm = 'ONLI'.

  ENDIF .

START-OF-SELECTION.
  WRITE: 'TESTING'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 05:54:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681574#M300373</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-11-21T05:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: push button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681575#M300374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a status and use the same in INITIALIZATION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should copy the 'STANDARD' GUI status from standard program(e. g. SAPLKKBL) using transaction SE90 &lt;DEL&gt;&amp;gt;Programming SubObjects&lt;/DEL&gt;&amp;gt; Gui Status. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Execute this transaction to get to next screen. select status using checkbox. click on GUI Status --&amp;gt; Copy. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter your Z program name and the name you what for this status - you can keep it as 'STANDARD' to be simple. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SET PF-STATUS 'STANDARD' in initialization event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 06:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681575#M300374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T06:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: push button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681576#M300375</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;Try using the function module.&lt;/P&gt;&lt;P&gt;RS_EXTERNAL_SELSCREEN_STATUS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read function module documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 06:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681576#M300375</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-11-21T06:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: push button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681577#M300376</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;  Thanks a lot for ur immediate response . I got it . I wish u Peoples to continue &lt;/P&gt;&lt;P&gt;  ur service to us .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Senthil .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 06:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button/m-p/1681577#M300376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T06:35:25Z</dc:date>
    </item>
  </channel>
</rss>

