<?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 Screen Programming-Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074620#M429947</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I have to highlight the rown in a table control that does not satesfy a certain crateria. can you please  suggest me how to approch this? &lt;/P&gt;&lt;P&gt;I either have to highlight the row or show them in a different color!!&lt;/P&gt;&lt;P&gt;Please help,&lt;/P&gt;&lt;P&gt;Vj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Mar 2007 13:28:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-28T13:28:22Z</dc:date>
    <item>
      <title>Screen Programming-Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074620#M429947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I have to highlight the rown in a table control that does not satesfy a certain crateria. can you please  suggest me how to approch this? &lt;/P&gt;&lt;P&gt;I either have to highlight the row or show them in a different color!!&lt;/P&gt;&lt;P&gt;Please help,&lt;/P&gt;&lt;P&gt;Vj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 13:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074620#M429947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-28T13:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming-Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074621#M429948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only way to hightlight, is really just changing the text to blue instead of black.&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>Wed, 28 Mar 2007 13:30:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074621#M429948</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-28T13:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming-Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074622#M429949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to change the color of the text&amp;gt; can you please suggest some code for this&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 13:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074622#M429949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-28T13:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming-Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074623#M429950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you probably have something like this in your screen flow of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.

* PBO FLOW LOGIC FOR TABLECONTROL 'I_ITABCON'
* MODULE I_ITABCON_CHANGE_TC_ATTR.
* MODULE I_ITABCON_CHANGE_COL_ATTR.
  LOOP AT   I_ITAB
       WITH CONTROL I_ITABCON
       CURSOR I_ITABCON-CURRENT_LINE.

    MODULE I_ITABCON_CHANGE_FIELD_ATTR.     "&amp;lt;---  Here is where you are going to change the attributes of the one line.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in this module,  the coding can look like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

module i_itabcon_change_field_attr output.

  modify i_itab index i_itabcon-current_line.

  loop at screen.

    if i_itab-level = 'B'.     "&amp;lt;- If condition is satisfied
      screen-INTENSIFIED = '1'.    "&amp;lt;- Make Blue
    endif.
       modify screen.
  endloop.

endmodule.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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>Wed, 28 Mar 2007 13:35:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-table-control/m-p/2074623#M429950</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-28T13:35:16Z</dc:date>
    </item>
  </channel>
</rss>

