<?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 CL_SALV_TABLE refresh button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458033#M830849</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to add a refresh button to my ALV report designed using CL_SALV_TABLE class. I made a copy of the SALV_TABLE_STANDARD status from function group SALV and added it to me program. Then I have code that says &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;gr_table-&amp;gt;set_screen_status(  pfstatus      = 'SALV_TABLE_STANDARD'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report        = sy-repid&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;set_functions = gr_table-&amp;gt;c_functions_all ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still dont see the refresh button though. What am I doing wrong?  Infact there are many button from the application toolbar that are missing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Feb 2008 18:21:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-20T18:21:35Z</dc:date>
    <item>
      <title>CL_SALV_TABLE refresh button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458033#M830849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to add a refresh button to my ALV report designed using CL_SALV_TABLE class. I made a copy of the SALV_TABLE_STANDARD status from function group SALV and added it to me program. Then I have code that says &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;gr_table-&amp;gt;set_screen_status(  pfstatus      = 'SALV_TABLE_STANDARD'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report        = sy-repid&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;set_functions = gr_table-&amp;gt;c_functions_all ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still dont see the refresh button though. What am I doing wrong?  Infact there are many button from the application toolbar that are missing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 18:21:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458033#M830849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T18:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: CL_SALV_TABLE refresh button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458034#M830850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try to move SY-REPID to a variable and use this variable when passing to the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


data: lv_repid type sy-repid.

lv_repid = sy-repid.
gr_table-&amp;gt;set_screen_status(  pfstatus      = 'SALV_TABLE_STANDARD'
                                            report        = lv_repid
                                            set_functions = gr_table-&amp;gt;c_functions_all ).

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 18:40:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458034#M830850</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-02-20T18:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: CL_SALV_TABLE refresh button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458035#M830851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That didnt not solve it. I copied the GUI status from SALV. And in my program I can see all the buttons. But Do I have to activate something or add the buttons somehow?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 19:08:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458035#M830851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T19:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: CL_SALV_TABLE refresh button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458036#M830852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Megan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, after you copy the gui status to your program, you must edit that gui status and add your new button.  Follow this tutorial here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cda3992d-0e01-0010-90b2-c4e1f899ac01" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cda3992d-0e01-0010-90b2-c4e1f899ac01&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When modifying the gui status, if there is no room, you can get rid of one of the icons at the end, such as one of the "black" arrows.  I have done so in the example in the tutorial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 19:20:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458036#M830852</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-02-20T19:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: CL_SALV_TABLE refresh button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458037#M830853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But the refresh button is already available. Then why do I have to add myfunction to the application toolbar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 19:29:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458037#M830853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T19:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: CL_SALV_TABLE refresh button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458038#M830854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well I went ahead did what you said and added a myfunction with the refresh icon. And Now I see it in there &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; Thanks Rich &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I am going to go through your document to figure out how to code the event part of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 19:31:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458038#M830854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T19:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: CL_SALV_TABLE refresh button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458039#M830855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My problem is the same. I can't see the refresh button, although it is already defined in the gui status.&lt;/P&gt;&lt;P&gt;Is there any way to enable this standard function?&lt;/P&gt;&lt;P&gt;The workaround to define my own function would be ok, but it's not the best way, not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 11:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-refresh-button/m-p/3458039#M830855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T11:04:42Z</dc:date>
    </item>
  </channel>
</rss>

