<?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 ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4178747#M998905</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;          I WANT &lt;STRONG&gt;EXICUTION BUTTON&lt;/STRONG&gt; ON THE APPLICATION TOOLBAR IN LIST SCREEN USING ALVGRID...&lt;/P&gt;&lt;P&gt;pls help me..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Jul 2008 15:41:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-22T15:41:33Z</dc:date>
    <item>
      <title>ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4178747#M998905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;          I WANT &lt;STRONG&gt;EXICUTION BUTTON&lt;/STRONG&gt; ON THE APPLICATION TOOLBAR IN LIST SCREEN USING ALVGRID...&lt;/P&gt;&lt;P&gt;pls help me..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 15:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4178747#M998905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T15:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4178748#M998906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;U can Add Buttons and give a SYMBOL to this button in ALV and also write the code to process when this Button is HIt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please look into the PF-status of the program and add but in the PF-Status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please open the program in Se80 and look at the PF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shreekant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 15:43:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4178748#M998906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T15:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4178749#M998907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radha Krishna,&lt;/P&gt;&lt;P&gt;                             Tocreate a custom pushbutton you can follow the follwing steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. First create a PF-status in ur code as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM STAT USING rt_extab TYPE slis_t_extab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'TEST' EXCLUDING rt_extab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.After the above step, u need to double click on ''TEST which can be any name u want to give (I have used TEST for example) &amp;amp; once u double click on it, it will ask u for langiage maintenance: u can click 'Maintain original language'. Then after U reach the 'Maintain Status' screen where in u can click on the Button (An arrow coming out from a square sign) against 'Application Toolbar'..Here u need to type &amp;amp;PUSH (where puch will be the name of ur pushbutton which will appear on the output list's application toolbar), hit enter after that &amp;amp; save &amp;amp; activate it &amp;amp; go back to the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.Now in the coding part, in the ALV FM: 'REUSE_ALV_GRID_DISPLAY', u will need to set the following parameters as mentioned below:&lt;/P&gt;&lt;P&gt;A.  I_CALLBACK_PF_STATUS_SET          = 'STAT'&lt;/P&gt;&lt;P&gt;B.  I_CALLBACK_USER_COMMAND          = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.Now finally, u can give the function of the pushbutton by putting the follwing in ur code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USER_COMMAND USING F_UCOMM LIKE SY-UCOMM I_SELFIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE F_UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;PUSH'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;put the function u want to execute&lt;/STRONG&gt;****&lt;/P&gt;&lt;P&gt;(Ex: Leave Program.)&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;I AM SURE THIS WILL RESOLVE UR PROBLEM.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Ankur Godre&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 11:40:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4178749#M998907</guid>
      <dc:creator>ankurgodre</dc:creator>
      <dc:date>2008-07-23T11:40:03Z</dc:date>
    </item>
  </channel>
</rss>

