<?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: ALV Without Row Selection in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664285#M294207</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pedro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have declared a Box-field in your table, delete it and make layout-box_fieldname clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the box-field in the table must not be the first field,&lt;/P&gt;&lt;P&gt;if layout-box_fieldname is set, it would be automaticly set to first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Oct 2006 14:40:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-26T14:40:02Z</dc:date>
    <item>
      <title>ALV Without Row Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664279#M294201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Morning,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've created a report using &amp;lt;b&amp;gt;REUSE_ALV_GRID_DISPLAY&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;I want to exclude de boxes for row selection in the left of the grid, how can i do that?&lt;/P&gt;&lt;P&gt;This should be basic...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Pedro Gaspar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 12:16:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664279#M294201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T12:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Without Row Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664280#M294202</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;U have to check which is its functional code and pass it to fm by parameter IT_EXCLUDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: WA_EXCLUDING TYPE slis_extab,&lt;/P&gt;&lt;P&gt;      GT_EXCLUDING TYPE slis_t_extab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA_EXCLUDING-FCODE = ....&lt;/P&gt;&lt;P&gt;APPEND WA_EXCLUDING TO GT_EXCLUDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    ............&lt;/P&gt;&lt;P&gt;    IT_EXCLUDING = GT_EXCLUDING&lt;/P&gt;&lt;P&gt;    ...............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 12:22:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664280#M294202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T12:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Without Row Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664281#M294203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In YOur code you should comment the line where you fil the layout information box_fieldname = &amp;lt;Some name&amp;gt;.&lt;/P&gt;&lt;P&gt;and also remove the extra single cahracter field in the internal table that is being displayed.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 12:23:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664281#M294203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T12:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Without Row Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664282#M294204</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; could u pls explain what the problem is exactly?&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 12:24:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664282#M294204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T12:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Without Row Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664283#M294205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pedro,&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:   EXCLUDING  TYPE SLIS_T_EXTAB.&lt;/P&gt;&lt;P&gt;  DATA: WA_EXCLUDING TYPE SLIS_EXTAB.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  WA_EXCLUDING-FCODE = '&amp;amp;ETA'.&lt;/P&gt;&lt;P&gt;  APPEND WA_EXCLUDING TO P_EXCLUDING.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;             I_CALLBACK_PROGRAM       = PROGNAME&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_CALLBACK_PF_STATUS_SET = 'MAIN'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;             I_CALLBACK_USER_COMMAND  = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;             I_CALLBACK_TOP_OF_PAGE   = 'TOP_OF_PAGE'&lt;/P&gt;&lt;P&gt;             IS_VARIANT               = VARIANT&lt;/P&gt;&lt;P&gt;             IS_LAYOUT                = LAYOUT&lt;/P&gt;&lt;P&gt;             IT_FIELDCAT              = FIELDCAT&lt;/P&gt;&lt;P&gt;             IT_EXCLUDING             = EXCLUDING&lt;/P&gt;&lt;P&gt;             IT_SORT                  = SORT&lt;/P&gt;&lt;P&gt;             IT_FILTER                = FILTER&lt;/P&gt;&lt;P&gt;             I_SAVE                   = 'A'&lt;/P&gt;&lt;P&gt;             IT_EVENTS                = EVENTS&lt;/P&gt;&lt;P&gt;             IT_EVENT_EXIT            = EVENT_EXIT&lt;/P&gt;&lt;P&gt;             IS_PRINT                 = PRINT&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;             T_OUTTAB                = ITAB&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;             PROGRAM_ERROR            = 1&lt;/P&gt;&lt;P&gt;             OTHERS                   = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 12:46:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664283#M294205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T12:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Without Row Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664284#M294206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as i know, when the function &amp;lt;b&amp;gt;REUSE_ALV_GRID_DISPLAY&amp;lt;/b&amp;gt; it creates an ALV Grid that looks like an Excel Worksheet.&lt;/P&gt;&lt;P&gt;The first cell of each row isn't the field of my internal table but it's a "box" where i can click to select or unselect the row. I want the ALV to be displayed without those select/unselect "boxes".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Pedro Gaspar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 13:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664284#M294206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T13:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Without Row Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664285#M294207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pedro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have declared a Box-field in your table, delete it and make layout-box_fieldname clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the box-field in the table must not be the first field,&lt;/P&gt;&lt;P&gt;if layout-box_fieldname is set, it would be automaticly set to first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 14:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-without-row-selection/m-p/1664285#M294207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T14:40:02Z</dc:date>
    </item>
  </channel>
</rss>

