<?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: SET_TABLE_FOR_FIRST_DISPLAY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487186#M227187</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note the  "p_tb_exclude"  references above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget points for helpful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Aug 2006 17:19:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-17T17:19:01Z</dc:date>
    <item>
      <title>SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487183#M227184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I need an ALV output with pushbuttons to select only one row at a time.I prepare the layout with &amp;lt;b&amp;gt;gt_layout-sel_mode = 'D'&amp;lt;/b&amp;gt;. This solves my purpose, but this gives me layout with the option to select all rows at once. I dont need that. I dont need that 'select all' ICON on the top-left corner. I am using method &amp;lt;b&amp;gt;set_table_for_first_display&amp;lt;/b&amp;gt; to display table.&lt;/P&gt;&lt;P&gt;Can somebody help me?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 17:05:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487183#M227184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T17:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487184#M227185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while passing the parameters to method SET_METHOD_FOR_FIRST_DISPLAY, pass the function code of Selectall and deslect all to the importing parameter IT_TOOLBAR_EXCLUDING, and you will not get those buttons on the output of the grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function code for DEselect all: '&amp;amp;SAL'&lt;/P&gt;&lt;P&gt;similarly for select all : '&amp;amp;ALL'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sharath kumar R&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 17:12:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487184#M227185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T17:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487185#M227186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: p_tb_exclude type ui_functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND CL_GUI_ALV_GRID=&amp;gt;MC_FC_DESELECT_ALL&lt;/P&gt;&lt;P&gt;     TO p_tb_exclude.&lt;/P&gt;&lt;P&gt;  APPEND CL_GUI_ALV_GRID=&amp;gt;MC_FC_SELECT_ALL&lt;/P&gt;&lt;P&gt;     TO p_tb_exclude.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL METHOD grid1-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;             EXPORTING is_variant           = gs_variant&lt;/P&gt;&lt;P&gt;                       i_save               = x_save&lt;/P&gt;&lt;P&gt;                       is_layout            = gs_layout&lt;/P&gt;&lt;P&gt;                       IT_TOOLBAR_EXCLUDING = p_tb_exclude&lt;/P&gt;&lt;P&gt;              CHANGING it_fieldcatalog      = gt_fieldcat&lt;/P&gt;&lt;P&gt;                       it_outtab            = &amp;lt;gt_table&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 17:17:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487185#M227186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T17:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487186#M227187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note the  "p_tb_exclude"  references above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget points for helpful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 17:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487186#M227187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T17:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487187#M227188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just tried that solution, John, it doesn't work.  The SELECT ALL appears in the left corner of the ALV control, not the toolbar.&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>Thu, 17 Aug 2006 17:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487187#M227188</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-17T17:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487188#M227189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops... mis-read the question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 17:29:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487188#M227189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T17:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487189#M227190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exactly, select all ICON appears on the corner of the ALV list, not on the toolbar. I was thinking of changing the &amp;lt;b&amp;gt;IS_LAYOUT-SEL_MODE&amp;lt;/b&amp;gt; to some other value instead of 'D'. Anybody can help me?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 17:44:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487189#M227190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T17:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487190#M227191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, changing that value will not make a difference, if the selection column is there, the select all icon will be there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure that you can get rid of this icon.  Even if you could, use can still select multiple row by holding down CTRL or  by Click and hold on one row and drag cursor down, this highlights all rows in between.&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>Thu, 17 Aug 2006 17:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487190#M227191</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-17T17:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487191#M227192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have reviewed some SAP documentation about this object; and the Select All buttons is attached automatcially to the grid when it is set to editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no attribute to remove.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully, in a newer version of the control, this will be possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 18:01:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1487191#M227192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T18:01:38Z</dc:date>
    </item>
  </channel>
</rss>

