<?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: Highlight table control rows when select all button is clicked in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581635#M1434476</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;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE SELECT_ALL INPUT.
  IF OK_CODE = 'SALL'.           select all
    LOOP AT IT_TAB. 
      IT_TAB-LINESEL = 'X'.
      MODIFY IT_TAB.
    ENDLOOP.
  ENDIF.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or in the user command write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WHEN 'SALL'.
      LOOP AT IT_TAB.
        IT_TAB-LINESEL = 'X'.
        MODIFY IT_TAB TRANSPORTING LINESEL.
      ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Radhika Parag Rajopadhye on Jan 27, 2010 1:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jan 2010 12:09:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-27T12:09:34Z</dc:date>
    <item>
      <title>Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581634#M1434475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table control and filling up rows through user input and i have also created button such as &lt;STRONG&gt;Select All&lt;/STRONG&gt;* , &lt;STRONG&gt;De-Select All&lt;/STRONG&gt;, and &lt;STRONG&gt;Delete&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Now the issue is when i am pressing the select all button all the rows are marked for deletion(internal 'X' flag is set) but the rows are not highlighted(so that user will be able to know that all rows are selected).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anything that i am missing, please guide......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 11:50:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581634#M1434475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T11:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581635#M1434476</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;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE SELECT_ALL INPUT.
  IF OK_CODE = 'SALL'.           select all
    LOOP AT IT_TAB. 
      IT_TAB-LINESEL = 'X'.
      MODIFY IT_TAB.
    ENDLOOP.
  ENDIF.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or in the user command write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WHEN 'SALL'.
      LOOP AT IT_TAB.
        IT_TAB-LINESEL = 'X'.
        MODIFY IT_TAB TRANSPORTING LINESEL.
      ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Radhika Parag Rajopadhye on Jan 27, 2010 1:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:09:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581635#M1434476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581636#M1434477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radhika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx for your response.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code you have given is correct i have written the same code but my problem is the when we press the &lt;STRONG&gt;Select All&lt;/STRONG&gt; button all the rows in the table control must be highlighted right .... but that is not happening .... this is the problem.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rest is OK....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:21:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581636#M1434477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581637#M1434478</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;I must work.&lt;/P&gt;&lt;P&gt;I think you must have made some mistake while writing the code.&lt;/P&gt;&lt;P&gt;Check where have you written the code in User-command or in a separate PAI module.&lt;/P&gt;&lt;P&gt;It should be in User-command&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:29:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581637#M1434478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581638#M1434479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are using table control , if u are working with module Pool Programming,than...&lt;/P&gt;&lt;P&gt;Goto --the screen &lt;DEL&gt;&amp;gt;Layout&lt;/DEL&gt;in layout &lt;DEL&gt;&amp;gt;tablecontrol&lt;/DEL&gt;&amp;gt; u can find the text *w/Selcolumn  -&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;&amp;gt; Give the workarea as wa-sel ( Assumed u have already declared in Internal table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
When SelectAll.
wa-sel = 'X'.
MODIFY internal table transporting sel where sel &amp;lt;&amp;gt; 'X'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arbind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581638#M1434479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T12:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581639#M1434480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you facing the problem only while doing the 'select All' option, or even when selecting a single record?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 05:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581639#M1434480</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2010-01-28T05:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581640#M1434481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select All.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 05:34:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581640#M1434481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-28T05:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581641#M1434482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you check in debug mode whether the value of LINE_SELECTOR variable in table control is set to X or not?(in PBO)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 08:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581641#M1434482</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2010-01-28T08:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581642#M1434483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is getting updated ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because see what happens is that when i click on 'Select All'  then the lines are not highlighted but after that if I press on 'Delete' Button then all the rows are deleted .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 06:53:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581642#M1434483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T06:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581643#M1434484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm in the same pool with you,thought to ask you since this thread is not very much old &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; Were you able to found any solution? It would be great if you could share the solution though.&lt;/P&gt;&lt;P&gt;Below is code snippet which I have written to do so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE USER_COMMAND_6000 INPUT.
  case sy-ucomm.
        when  'SELA'. " Function code of Select All.
 mark = 'X'." Mark is W/selcolum from table control.
  LOOP AT itab.
  itab-mark = 'X'. "Also I have appended the Mark in internal table.
    modify itab.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure I'm missing a obvious thing but unfortunately I'm not able to locate it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Update&lt;/STRONG&gt;  : Okay, Iu2019ve done this. And glad to share the solution, which is below.&lt;/P&gt;&lt;P&gt;Just keep the w/selcolumn flag from table control with the name like ITAB-MARK (I'm assuming that you have appended the MARK in ITAB).&lt;/P&gt;&lt;P&gt;If so then my above code should work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2010 12:59:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581643#M1434484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-08T12:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581644#M1434485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;In Screen Painter select mulitple line selection.
" Just incase you are selecting the data in PBO then restrict it to once only so that data updated in Itab wont get refreshed.
" If your purpose is already served Close this Thread
In TOP include

DATA : BEGIN OF itab OCCURS 0, " I lately found this is somewhat old thread any how this migh work for you
       mark.
        INCLUDE STRUCTURE sflight.
DATA END OF itab.

In PBO.
module highlight.
loop at itab with control tc.
module show.
endloop.

in program.
module show.
loop at screen.
if itab-mark = 'X'.
screen-intensified = 1.
modify screen.
endif.
endloop.
endmodule.

module highlight.
case ok_code.
when 'SEL'.
LOOP AT ITAB.
ITAB-MARK = 'X'.
MODIFY ITAB INDEX SY-TABIX. " This is a tested code in my system
ENDLOOP.
    WHEN 'DES'.
      LOOP AT itab.
        CLEAR  itab-mark.
        MODIFY itab INDEX sy-tabix.
      ENDLOOP.
endcase.
endmodule.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2010 03:07:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581644#M1434485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-09T03:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581645#M1434486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good to hear from you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tired your suggestion but still it is not working......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i just wanted to added something in the above question,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the LINE_SELECTOR is ON so when I select a line in the table control it gets highlighted and after that if i Press ENTER the &lt;STRONG&gt;the highlighted view&lt;/STRONG&gt; no longer stays but internally if we check the internal table the MARK field = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This might be the case which is depriving me of the view to see all the lines selected when i press the &lt;STRONG&gt;Select All&lt;/STRONG&gt; Button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to figure out the exact issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2010 08:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581645#M1434486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-09T08:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581646#M1434487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your suggestion but it resulted in the change of color of the Font of the rows in the internal table &lt;/P&gt;&lt;P&gt;but i need to selection view in the table control just as when we select a row of table control it gets highlighted I want the same functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help on this will be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2010 08:53:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581646#M1434487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-09T08:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581647#M1434488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved myself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 07:16:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581647#M1434488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-15T07:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581648#M1434489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share how did u solve the issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:41:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581648#M1434489</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2010-02-15T10:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581649#M1434490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dear friend,&lt;/P&gt;&lt;P&gt;Same problem Im facing can you please advise me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Sridhar,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 07:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581649#M1434490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T07:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581650#M1434491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please advise how to solve this problem.Im also facing the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankyou,&lt;/P&gt;&lt;P&gt;sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 07:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581650#M1434491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T07:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight table control rows when select all button is clicked</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581651#M1434492</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;Same problem. only font color is changed not highlight the rows. can you tell me how to solve this.&lt;/P&gt;&lt;P&gt;Thks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 05:23:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/highlight-table-control-rows-when-select-all-button-is-clicked/m-p/6581651#M1434492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T05:23:24Z</dc:date>
    </item>
  </channel>
</rss>

