<?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 can i create pushbutton in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-create-pushbutton/m-p/1031012#M83838</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; ABAP has many Programming Types .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You hav to  create Screen Pgmming ( Module Pool ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm&lt;/A&gt;&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;j &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do Award Points if u got any help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Oct 2005 01:16:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-19T01:16:34Z</dc:date>
    <item>
      <title>how can i create pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-create-pushbutton/m-p/1031011#M83837</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;i know how to create selection screen.&lt;/P&gt;&lt;P&gt;but i want to know how can i create selection screen with push button.&lt;/P&gt;&lt;P&gt;please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 00:58:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-create-pushbutton/m-p/1031011#M83837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T00:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: how can i create pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-create-pushbutton/m-p/1031012#M83838</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; ABAP has many Programming Types .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You hav to  create Screen Pgmming ( Module Pool ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm&lt;/A&gt;&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;j &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do Award Points if u got any help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 01:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-create-pushbutton/m-p/1031012#M83838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T01:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: how can i create pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-create-pushbutton/m-p/1031013#M83839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT  ZR_ALV_RB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES sscrfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK ONE WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen:    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;selection-screen end of block one.&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;      message i000(zz) with 'Button 1 was pressed'.&lt;/P&gt;&lt;P&gt;    WHEN 'CLI2'.&lt;/P&gt;&lt;P&gt;      message i000(zz) with 'Button 2 was pressed'.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;  but1 = 'Button 1'.&lt;/P&gt;&lt;P&gt;  but2 = 'Button 2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Rest of your logic here.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points accordingly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 01:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-create-pushbutton/m-p/1031013#M83839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T01:17:25Z</dc:date>
    </item>
  </channel>
</rss>

