<?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: cl_salv_table Remove function code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581567#M23088</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;thank you for your comment. How is your go_alv defined? For me, the functions-&amp;gt;set_all('') does not have an impact, so functions are still there.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;BR,&lt;/P&gt;
  &lt;P&gt;Tim &lt;/P&gt;</description>
    <pubDate>Wed, 09 May 2018 06:46:03 GMT</pubDate>
    <dc:creator>tim_krause_innomate</dc:creator>
    <dc:date>2018-05-09T06:46:03Z</dc:date>
    <item>
      <title>cl_salv_table Remove function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581565#M23086</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I am using CL_SALV_TABLE to create ALV. I need only the OK button to continue, no other functions. I have already disabled the generic functions like this:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;lr_functions-&amp;gt;set_group_export( abap_false ).&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;but can I also hide/disable the other buttons? F1 Help? Arrows to move? &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/143431-capture1.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Thank you for your help,&lt;/P&gt;
  &lt;P&gt;Tim&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 12:38:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581565#M23086</guid>
      <dc:creator>tim_krause_innomate</dc:creator>
      <dc:date>2018-05-08T12:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table Remove function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581566#M23087</link>
      <description>&lt;P&gt;Hi Tim Krause, &lt;/P&gt;
  &lt;P&gt;Use SET_ALL method to disable the buttons in CL_SALV_TABLE. &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA: lr_functions TYPEREFTO cl_salv_functions_list.  
lr_functions = go_alv-&amp;gt;get_functions().   
lr_functions-&amp;gt;set_all(' ').&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Output:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/143433-popup.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Regards&lt;/P&gt;
  &lt;P&gt;Rajkumar Narasimman&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 12:56:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581566#M23087</guid>
      <dc:creator>rajkumarnarasimman</dc:creator>
      <dc:date>2018-05-08T12:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table Remove function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581567#M23088</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;thank you for your comment. How is your go_alv defined? For me, the functions-&amp;gt;set_all('') does not have an impact, so functions are still there.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;BR,&lt;/P&gt;
  &lt;P&gt;Tim &lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 06:46:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581567#M23088</guid>
      <dc:creator>tim_krause_innomate</dc:creator>
      <dc:date>2018-05-09T06:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table Remove function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581568#M23089</link>
      <description>&lt;P&gt;Used CL_SALV_TABLE for GO_ALV and set_screen_popup method to display popup window. &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA go_alv TYPE REF TO cl_salv_table.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Instead of getting the functions and clearing all the buttons, even if you comment the code LR_FUNCTIONS while displaying popup, only ok button will display as shown in previous screenshot. &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 06:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581568#M23089</guid>
      <dc:creator>rajkumarnarasimman</dc:creator>
      <dc:date>2018-05-09T06:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table Remove function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581569#M23090</link>
      <description>&lt;P&gt;Thank you, now it works!&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 07:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-remove-function-code/m-p/581569#M23090</guid>
      <dc:creator>tim_krause_innomate</dc:creator>
      <dc:date>2018-05-09T07:19:23Z</dc:date>
    </item>
  </channel>
</rss>

