<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180838#M757314</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in selection screen you can easily ad a pushbutton in the layout editor of that screen&lt;/P&gt;&lt;P&gt;do remember to add a function code to that button&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Dec 2007 08:50:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-18T08:50:41Z</dc:date>
    <item>
      <title>Pushbuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180834#M757310</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;    How to create pushbuttons on application tool bar and on selection screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 08:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180834#M757310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T08:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Pushbuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180835#M757311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasanth,&lt;/P&gt;&lt;P&gt;Check this link..&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba81635c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba81635c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 08:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180835#M757311</guid>
      <dc:creator>former_member188829</dc:creator>
      <dc:date>2007-12-18T08:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pushbuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180836#M757312</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;TABLES sscrfields. &lt;/P&gt;&lt;P&gt;TYPE-POOLS icon. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: &lt;/P&gt;&lt;P&gt;  BEGIN OF SCREEN 500 AS WINDOW TITLE title, &lt;/P&gt;&lt;P&gt;    PUSHBUTTON 2(10)  but1 USER-COMMAND cli1, &lt;/P&gt;&lt;P&gt;    PUSHBUTTON 12(30) but2 USER-COMMAND cli2 &lt;/P&gt;&lt;P&gt;                           VISIBLE LENGTH 10, &lt;/P&gt;&lt;P&gt;  END OF SCREEN 500. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN. &lt;/P&gt;&lt;P&gt;  CASE sscrfields. &lt;/P&gt;&lt;P&gt;    WHEN 'CLI1'. &lt;/P&gt;&lt;P&gt;      ... &lt;/P&gt;&lt;P&gt;    WHEN 'CLI2'. &lt;/P&gt;&lt;P&gt;      ... &lt;/P&gt;&lt;P&gt;  ENDCASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;  title  = 'Push button'. &lt;/P&gt;&lt;P&gt;  but1 = 'Button 1'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ICON_CREATE' &lt;/P&gt;&lt;P&gt;    EXPORTING &lt;/P&gt;&lt;P&gt;      name   = icon_information &lt;/P&gt;&lt;P&gt;      text   = 'Button 2' &lt;/P&gt;&lt;P&gt;      info   = 'My Quickinfo' &lt;/P&gt;&lt;P&gt;    IMPORTING &lt;/P&gt;&lt;P&gt;      RESULT = but2 &lt;/P&gt;&lt;P&gt;    EXCEPTIONS &lt;/P&gt;&lt;P&gt;      OTHERS = 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL SELECTION-SCREEN '0500' STARTING AT 10 10. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 08:24:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180836#M757312</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-18T08:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pushbuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180837#M757313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add a single line set pf-status '100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;100 is the title of the pf status&lt;/P&gt;&lt;P&gt;when you create pf-status by double cdlicking on it&lt;/P&gt;&lt;P&gt;a new window will open&lt;/P&gt;&lt;P&gt;in the application toolbar menu &lt;/P&gt;&lt;P&gt;add the name of the pushbutton you want&lt;/P&gt;&lt;P&gt;press enter&lt;/P&gt;&lt;P&gt;select static text&lt;/P&gt;&lt;P&gt;add function text the name you want to be displayed&lt;/P&gt;&lt;P&gt;add an icon by selecting F4&lt;/P&gt;&lt;P&gt;add an info text any of your choice which will be shown on cusrsor placed on the push button&lt;/P&gt;&lt;P&gt;activate the pf-status and your work is done&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add the aboce set pf-status statement in the pbo module of the screen, if in a particular screen&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 08:27:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180837#M757313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T08:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Pushbuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180838#M757314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in selection screen you can easily ad a pushbutton in the layout editor of that screen&lt;/P&gt;&lt;P&gt;do remember to add a function code to that button&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 08:50:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbuttons/m-p/3180838#M757314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T08:50:41Z</dc:date>
    </item>
  </channel>
</rss>

