<?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: Row Selection Disable once processed/saved in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406096#M10574</link>
    <description>&lt;P&gt;Do you want to disable a particular row after the user input  or complete ALV output row selection?&lt;/P&gt;</description>
    <pubDate>Thu, 16 Mar 2017 09:55:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-03-16T09:55:26Z</dc:date>
    <item>
      <title>Row Selection Disable once processed/saved</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406095#M10573</link>
      <description>&lt;P&gt;Kindly let me know how I can disable the row selection once the user has processed/saved the row in ALV. AM using REUSE_ALV_GRID_DISPLAY FM.&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2017 02:52:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406095#M10573</guid>
      <dc:creator>sandeepmalhotra</dc:creator>
      <dc:date>2017-03-16T02:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Row Selection Disable once processed/saved</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406096#M10574</link>
      <description>&lt;P&gt;Do you want to disable a particular row after the user input  or complete ALV output row selection?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2017 09:55:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406096#M10574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-16T09:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Row Selection Disable once processed/saved</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406097#M10575</link>
      <description>&lt;P&gt;Also - why?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2017 21:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406097#M10575</guid>
      <dc:creator>Jelena_Perfiljeva</dc:creator>
      <dc:date>2017-03-16T21:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Row Selection Disable once processed/saved</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406098#M10576</link>
      <description>&lt;P&gt;Need to disable single row ( or multiple rows )  depending how user select row.&lt;/P&gt;&lt;P&gt;Following is the logic that need to be implemented. &lt;/P&gt;&lt;P&gt;In ALV there are 10 rows, &lt;/P&gt;&lt;P&gt;first column is checkbox, &lt;/P&gt;&lt;P&gt;user selected top 3 records &lt;/P&gt;&lt;P&gt;And click the button for further processing . &lt;/P&gt;&lt;P&gt;User command is triggered , &lt;/P&gt;&lt;P&gt;ALV got refresh with success or failure message ( if any) in last column.&lt;/P&gt;&lt;P&gt;Now ALV must  prevent the user to select already processed rows.i.e. TOP 3 Rows.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;The only constraint is that ,the program is already using FM REUSE_ALV_GRID_DISPLAY not the Objected Oriented version .&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Also I have tried following ways but has not gained success&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1 By passing '0' , '1' &amp;amp; '2' value to first column for specific row . Checkbox is not disabled.&lt;/P&gt;&lt;P&gt;2 By using style , has added new column in final internal table. and passed the value&lt;/P&gt;&lt;P&gt;cl_gui_alv_grid=&amp;gt;mc_style_disabled for first Columns. Still user is able to select the checkbox and user command got triggered once he/she clicked the button for processing&lt;/P&gt;&lt;P&gt;Any pointer will be helpful &lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2017 00:21:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406098#M10576</guid>
      <dc:creator>sandeepmalhotra</dc:creator>
      <dc:date>2017-03-17T00:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Row Selection Disable once processed/saved</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406099#M10577</link>
      <description>&lt;P&gt;I would attack this slightly differently.  when a user has successfully selected a row and that row has been processed,  update a boolean field in the itab.&lt;/P&gt;&lt;P&gt;You then use this field is the selected rows processing. when the user selects rows,  before doing the actual processing you check to see if this field is set and either issue a message or ignore the row.  You could use a displayed traffic light field to highlight the processable rows and check that value instead.&lt;/P&gt;&lt;P&gt;Rich&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2017 07:55:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406099#M10577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-17T07:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Row Selection Disable once processed/saved</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406100#M10578</link>
      <description>&lt;P&gt;Thanks this what I am trying to convince the user. Just want to be sure is there any way to disable the trigger of user command once the user selected already processed rows &lt;/P&gt;&lt;P&gt;Thanks for you advice . I will recheck with user again . &lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2017 05:00:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-selection-disable-once-processed-saved/m-p/406100#M10578</guid>
      <dc:creator>sandeepmalhotra</dc:creator>
      <dc:date>2017-03-19T05:00:52Z</dc:date>
    </item>
  </channel>
</rss>

