<?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 Execute button in Interactive alv in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779963#M1464389</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 have a requirement where in the alv is displayed and then i should select one of the lines out of alv grid and then click on execute button to perform some function which displays again ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able toactivate the double click event like if i double click on selected record from ALV,i would be able to perform the further function but does not any body know how to create an execute button in ALV and then perform action on clicking execute button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kanishak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Apr 2010 05:23:21 GMT</pubDate>
    <dc:creator>kanishakgupta1</dc:creator>
    <dc:date>2010-04-19T05:23:21Z</dc:date>
    <item>
      <title>Execute button in Interactive alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779963#M1464389</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 have a requirement where in the alv is displayed and then i should select one of the lines out of alv grid and then click on execute button to perform some function which displays again ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able toactivate the double click event like if i double click on selected record from ALV,i would be able to perform the further function but does not any body know how to create an execute button in ALV and then perform action on clicking execute button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kanishak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 05:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779963#M1464389</guid>
      <dc:creator>kanishakgupta1</dc:creator>
      <dc:date>2010-04-19T05:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Execute button in Interactive alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779964#M1464390</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;Go to tcode SE41, copy SAPLKKBL with status 'standard' to your custom program with status 'ZZZZ'. Change your status, insert a button execute with function code. In the code assign :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call function 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;   Exporting&lt;/P&gt;&lt;P&gt;         I_CALLBACK_USER_COMMAND = 'USER_COMMAD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form USER_COMMAND using r_ucomm     like sy-ucomm&lt;/P&gt;&lt;P&gt;                                      rs_selfield type slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if r_ucomm = 'EXEC'. "Execute&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;    write your code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDOFRM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 05:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779964#M1464390</guid>
      <dc:creator>former_member418469</dc:creator>
      <dc:date>2010-04-19T05:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Execute button in Interactive alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779965#M1464391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kanishak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are lot of topics discussed in SCN related to this. You can get lots of samples as to your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copy the &lt;STRONG&gt;STANDARD GUI&lt;/STRONG&gt; status from report &lt;STRONG&gt;SAPLKKBL&lt;/STRONG&gt; using &lt;/P&gt;&lt;P&gt;T-Code &lt;STRONG&gt;SE80--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;-&amp;gt;Programming Sub-objects&lt;/STRONG&gt;&lt;/DEL&gt;---&amp;gt;GUI status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code: &lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'REUSE_ALV_GRID_DISPLAY' 
         exporting  i_callback_program = gc_repid 
                    I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS' 
                    I_CALLBACK_USER_COMMAND  = 'USER_COMMAND' 
                    i_grid_title       = lc_grid_title 
                    is_layout          = lc_layout 
                    it_fieldcat        = gt_fieldcat 
                    it_sort            = sort 
                    i_save             = l_save 
                    is_reprep_id       = l_bbs_id 
                    is_variant         = l_variant 
         tables     t_outtab           = it_final 
         exceptions program_error      = 1 
                    others             = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The parameters in capitals are the extra ones that need to be added.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 05:46:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779965#M1464391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-19T05:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Execute button in Interactive alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779966#M1464392</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;&lt;STRONG&gt;Refer wiki code by me on ALV with Checkbox and process selected records at run-time:-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/alv%252bgrid%252bdisplay%252bwith%252bcheckbox%252bto%252bprocess%252bselected%252brecords%252bat%252bruntime" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/alv%252bgrid%252bdisplay%252bwith%252bcheckbox%252bto%252bprocess%252bselected%252brecords%252bat%252bruntime&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun Gambhir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Apr 2010 05:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-interactive-alv/m-p/6779966#M1464392</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2010-04-19T05:57:35Z</dc:date>
    </item>
  </channel>
</rss>

