<?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: Insert Pushbutton Button into Toolbar in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023942#M1348151</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;&lt;/P&gt;&lt;P&gt;   You can declare any select option and then at the event at selection-screen output change the same to display only like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

select-options: s_matnr for mara-matnr.


at selection-screen output.

loop at screen.
 if screen-name = 'S_MATNR-LOW' or scree-name = 'S_MATNR-HIGH'
 screen-input = 0.
modify screen.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Aug 2009 14:29:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-18T14:29:25Z</dc:date>
    <item>
      <title>Insert Pushbutton Button into Toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023937#M1348146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have declared a screen with some select-options , subscreens and so on.I have also declared a pushbutton.I now want to move the button in the tollbar where the button for F8 Run is.&lt;/P&gt;&lt;P&gt;If this is not possible,i would like to insert some free rows between the pushbutton and the select-options,because now,my button is exactly bellow my select-options and i would like to insert at least one empty row,how can i do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:04:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023937#M1348146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T14:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Pushbutton Button into Toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023938#M1348147</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;to insert a row in your screen use SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frisoni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:07:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023938#M1348147</guid>
      <dc:creator>guilherme_frisoni</dc:creator>
      <dc:date>2009-08-18T14:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Pushbutton Button into Toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023939#M1348148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt; If it is a report then try like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 1.&lt;/P&gt;&lt;P&gt;This would insert a button besides the execute button and the function code assigned to it would be 'FC01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on youc an put a condition like I&lt;/P&gt;&lt;P&gt;F SSCRFIELDS-UCOMM = 'FC01'.&lt;/P&gt;&lt;P&gt; on your selection screen event.&lt;/P&gt;&lt;P&gt;Also you can name the same as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SSCRFIELDS-FUNCTXT_01 = 'Name'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:10:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023939#M1348148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T14:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Pushbutton Button into Toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023940#M1348149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at [SELECTION-SCREEN - FUNCTION KEY|http://help.sap.com/abapdocu/en/ABAPSELECTION-SCREEN_FUNCTIONKEY.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:16:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023940#M1348149</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-08-18T14:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Pushbutton Button into Toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023941#M1348150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excelent,thanks all,it worked like himanshu said.Now i have another small problem, i want to have an select-option with read only. I will calculate a value which is a procentage that i  insert into another select-option and write it into that select-option.How can i do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:24:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023941#M1348150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T14:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Pushbutton Button into Toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023942#M1348151</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;&lt;/P&gt;&lt;P&gt;   You can declare any select option and then at the event at selection-screen output change the same to display only like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

select-options: s_matnr for mara-matnr.


at selection-screen output.

loop at screen.
 if screen-name = 'S_MATNR-LOW' or scree-name = 'S_MATNR-HIGH'
 screen-input = 0.
modify screen.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:29:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023942#M1348151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T14:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Pushbutton Button into Toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023943#M1348152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;- in PBO (AT SELECTION-SCREEN OUTPUT) use a [LOOP AT SCREEN |http://help.sap.com/abapdocu/en/ABAPLOOP_AT_SCREEN.htm]and set [SCREN-INPUT|http://help.sap.com/abapdocu /en/ABENSCREEN.htm] = 0 for this select-option (Use a [MODIF ID|http://help.sap.com/abapdocu/en/ABAPSELECTION-SCREEN_MODIF_ID.htm] in the SELECT-OPTIONS DEFINITION, and check SCREEN-GROUP1 in  the LOOP AT SCREEN)&lt;/P&gt;&lt;P&gt;- i don't understand the rest of your question, so INSERT LINES of one of the SELECT-OPTIONS into the other one AT SELECTION-SCREEN ON one of the two ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:29:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023943#M1348152</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-08-18T14:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Pushbutton Button into Toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023944#M1348153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks everybody for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:36:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-pushbutton-button-into-toolbar/m-p/6023944#M1348153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-18T14:36:02Z</dc:date>
    </item>
  </channel>
</rss>

