<?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: add a button on normal screen ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403824#M535684</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOu can use the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pf-status:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer the demo program:&lt;/P&gt;&lt;P&gt;demo_list_menu_painter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YOu have to create a pf-status by double clinking on the name of the pf-status.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jun 2007 01:39:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-28T01:39:58Z</dc:date>
    <item>
      <title>add a button on normal screen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403823#M535683</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;what's the screen for showing the content of ' write' statement,  and i want to add a button on this screen, how ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 01:33:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403823#M535683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T01:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: add a button on normal screen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403824#M535684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOu can use the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pf-status:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer the demo program:&lt;/P&gt;&lt;P&gt;demo_list_menu_painter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YOu have to create a pf-status by double clinking on the name of the pf-status.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 01:39:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403824#M535684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T01:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: add a button on normal screen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403825#M535685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zhang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer this code from help.sap.com&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;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 01:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403825#M535685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T01:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: add a button on normal screen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403826#M535686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use at pf key command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while writing use set pf-status '1000'. -&amp;gt; double click on 1000 -&amp;gt; it will take you SE41 Transaction -&amp;gt; here you can keep what ever button you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 01:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-a-button-on-normal-screen/m-p/2403826#M535686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T01:46:41Z</dc:date>
    </item>
  </channel>
</rss>

