<?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 module pool.....??? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3750192#M902228</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    I was developed one table control... it contains no. of records....&lt;/P&gt;&lt;P&gt;so here i want to highlight.. one perticuler ROW or VALUE.... in this table control like bold or italic...or with colors....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once again iam saying.....&lt;/P&gt;&lt;P&gt;i dont want to highlight entire column or whole values of one field..... &lt;/P&gt;&lt;P&gt;i need ...only one row or one perticuler value of one field with in table control....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Naveen Inuganti..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 07:28:33 GMT</pubDate>
    <dc:creator>naveen_inuganti2</dc:creator>
    <dc:date>2008-05-05T07:28:33Z</dc:date>
    <item>
      <title>module pool.....???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3750192#M902228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    I was developed one table control... it contains no. of records....&lt;/P&gt;&lt;P&gt;so here i want to highlight.. one perticuler ROW or VALUE.... in this table control like bold or italic...or with colors....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once again iam saying.....&lt;/P&gt;&lt;P&gt;i dont want to highlight entire column or whole values of one field..... &lt;/P&gt;&lt;P&gt;i need ...only one row or one perticuler value of one field with in table control....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Naveen Inuganti..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 07:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3750192#M902228</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-05-05T07:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: module pool.....???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3750193#M902229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In a standard table control you only get the "bright" attribute to highlight the row which is generally a blue colour in the SAPGui (intensified = '1')... an ALV grid would give you more choices...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for the "how", just include a conditional "loop at screen" it in a module inside the "loop at table control" in the PBO flow of the dynpro... (there have been prior examples in SDN of this).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 05:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3750193#M902229</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-05-06T05:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: module pool.....???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3750194#M902230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer the following code. It will intensified the following fields of the table control: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Row1-column1&lt;/P&gt;&lt;P&gt;2.Row2-column2&lt;/P&gt;&lt;P&gt;3.Row3-column3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;process before output.&lt;/U&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

*&amp;amp;SPWIZARD: MODULE TABLE_CONTROL_CHANGE_COL_ATTR.
  loop at   itab
       into wa
       with control table_control
       cursor table_control-current_line.
*&amp;amp;SPWIZARD:   MODULE TABLE_CONTROL_CHANGE_FIELD_ATTR

      module help_display.

  endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Module Logic:&lt;/U&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

MODULE help_display OUTPUT.
  DATA: lv_tabix TYPE sy-tabix,
        lv_tabix1 TYPE sy-tabix.
  
  FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE ANY,
                 &amp;lt;fs_wa&amp;gt; TYPE ANY.

  ASSIGN ('TABLE_CONTROL') TO &amp;lt;fs&amp;gt;.
  ASSIGN COMPONENT 4 OF STRUCTURE &amp;lt;fs&amp;gt; TO &amp;lt;fs_wa&amp;gt;.


  LOOP AT SCREEN.
    lv_tabix1 = lv_tabix1 + 1.
    IF lv_tabix1 EQ &amp;lt;fs_wa&amp;gt;.
      SCREEN-INTENSIFIED = '1'.
      MODIFY SCREEN.
    else.
     SCREEN-INTENSIFIED = '0'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
  clear: lv_tabix1.

ENDMODULE.                 " help_display  OUTPUT
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 05:42:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3750194#M902230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T05:42:42Z</dc:date>
    </item>
  </channel>
</rss>

