<?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: pushbutton in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228129#M770010</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in at selection screen output event&lt;/P&gt;&lt;P&gt;u can capture the push button fcode into sy-ucomm.&lt;/P&gt;&lt;P&gt;based on sy-ucomm u can display the list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2008 04:59:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-09T04:59:03Z</dc:date>
    <item>
      <title>pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228127#M770008</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;I need the code for the following specifications..Kindly help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table - Bsik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;two push buttons&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i click first push button BSIK- Lifnr data should appear.&lt;/P&gt;&lt;P&gt;If i click second push button BSIK-BUKRS data should appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_________________________________________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : bsik.&lt;/P&gt;&lt;P&gt;data itable like bsik occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: pushbutton /1(6) text-010 user-command cli1.&lt;/P&gt;&lt;P&gt;selection-screen: pushbutton /1(6) text-020 user-command cli2.&lt;/P&gt;&lt;P&gt;________________________________________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls give the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mallika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 04:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228127#M770008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T04:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228128#M770009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Malika,&lt;/P&gt;&lt;P&gt;               Try the below code.May be it will helpful to u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select lifnr&lt;/P&gt;&lt;P&gt;from bsik&lt;/P&gt;&lt;P&gt;into table itab&lt;/P&gt;&lt;P&gt;where lifnr in s_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select bukrs&lt;/P&gt;&lt;P&gt;from bsik&lt;/P&gt;&lt;P&gt;into table itab1&lt;/P&gt;&lt;P&gt;where bukrs in s_bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If cli1 = 'X'.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write: itab-lifnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If cli2 = 'X'.&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;write: itab1-bukrs.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Award points if helpul.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Kiran Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 04:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228128#M770009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T04:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228129#M770010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in at selection screen output event&lt;/P&gt;&lt;P&gt;u can capture the push button fcode into sy-ucomm.&lt;/P&gt;&lt;P&gt;based on sy-ucomm u can display the list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 04:59:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228129#M770010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T04:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228130#M770011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : bsik,sscrfields.&lt;/P&gt;&lt;P&gt;data itable like bsik occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: pushbutton /1(6) text-010 user-command cli1.&lt;/P&gt;&lt;P&gt;selection-screen: pushbutton /1(6) text-020 user-command cli2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;case sscrfields-ucomm.&lt;/P&gt;&lt;P&gt;when 'cli1'.&lt;/P&gt;&lt;P&gt;select lifnr from bsik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'cli2'.&lt;/P&gt;&lt;P&gt;select burks from bsik.&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;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 05:05:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228130#M770011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T05:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228131#M770012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi use as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  IF sscrfields-ucomm = 'CLI1'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Your Requirement for Button 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ELSEIF sscrfields-ucomm = 'CLI2'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Your Requirement for Button 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;awrd points if useful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bhupal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 05:07:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pushbutton/m-p/3228131#M770012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T05:07:29Z</dc:date>
    </item>
  </channel>
</rss>

