<?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: How to create pushbutton with dynamic function? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531761#M19427</link>
    <description>&lt;P&gt;Report screen.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/58801-screen.png" /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Aug 2017 07:06:56 GMT</pubDate>
    <dc:creator>tomas_balcar4</dc:creator>
    <dc:date>2017-08-09T07:06:56Z</dc:date>
    <item>
      <title>How to create pushbutton with dynamic function?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531758#M19424</link>
      <description>&lt;P&gt;Hi, all!&lt;/P&gt;
  &lt;P&gt;I am solving the following problem.&lt;/P&gt;
  &lt;P&gt;I have a one field and a few buttons (pushbuttons). I need a dynamic buttons. This means - in case I click on a button, the button copy its contents into field directly.&lt;/P&gt;
  &lt;P&gt;Thx for your help! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 14:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531758#M19424</guid>
      <dc:creator>tomas_balcar4</dc:creator>
      <dc:date>2017-08-08T14:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pushbutton with dynamic function?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531759#M19425</link>
      <description>&lt;P&gt;Report screen, Dialog or ALV ?&lt;/P&gt;
  &lt;P&gt;Are yo talking about the buttons text ?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 14:39:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531759#M19425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-08T14:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pushbutton with dynamic function?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531760#M19426</link>
      <description>&lt;P&gt;What is the contents of a button?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 15:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531760#M19426</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2017-08-08T15:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pushbutton with dynamic function?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531761#M19427</link>
      <description>&lt;P&gt;Report screen.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/58801-screen.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 07:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531761#M19427</guid>
      <dc:creator>tomas_balcar4</dc:creator>
      <dc:date>2017-08-09T07:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pushbutton with dynamic function?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531762#M19428</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
  &lt;P&gt;You should have a look in SE80 on package SABAPDEMOS. You will find there a lot of useful samples. For example programs DEMO_DYNPRO_PUSH_BUTTON, DEMO_SEL_SCREEN_FUNCTION_KEY or DEMO_SEL_SCREEN_PUSHBUTTON.&lt;/P&gt;
  &lt;P&gt;On a selection screen you could do something like that :&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;PARAMETERS p_fill(10).
SELECTION-SCREEN :
BEGIN OF BLOCK b1 WITH FRAME,
   BEGIN OF LINE,
      PUSHBUTTON 2(10) butd USER-COMMAND del1,
      PUSHBUTTON 15(10) but1 USER-COMMAND p1,
      END OF LINE,
      END  OF BLOCK b1.

AT SELECTION-SCREEN.
  CASE sy-ucomm.
    WHEN 'DEL1'.
      CLEAR p_fill.
    WHEN 'P1'.
      CONCATENATE p_fill '1' INTO p_fill.
  ENDCASE.
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Best regards&lt;/P&gt;
  &lt;P&gt;Bertrand&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 07:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531762#M19428</guid>
      <dc:creator>bertrand_delvallee</dc:creator>
      <dc:date>2017-08-09T07:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pushbutton with dynamic function?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531763#M19429</link>
      <description>&lt;P&gt;Problem was solved. Thx &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 07:55:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531763#M19429</guid>
      <dc:creator>tomas_balcar4</dc:creator>
      <dc:date>2017-08-09T07:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pushbutton with dynamic function?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531764#M19430</link>
      <description>&lt;P&gt;how did you do it ?!&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 14:12:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pushbutton-with-dynamic-function/m-p/531764#M19430</guid>
      <dc:creator>ajmartins137</dc:creator>
      <dc:date>2022-08-31T14:12:44Z</dc:date>
    </item>
  </channel>
</rss>

