<?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: Regarding Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076586#M729576</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can sort of do this if you make you column headers as Input/Ouput fields rather than Text, and then set the screen-intensified = '1'. via a loop at screen in the PBO.  However, this will make the column header label "bright" i.e. blue in a normal dynpro screen which is not very easy to distinguish... so in addition to this you could, perhaps, put an icon in the column header for days on weekends e.g. something like that below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in TOP include:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
include &amp;lt;icon&amp;gt;.
data
  g_header(10) type c. "define in top include&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate icon_led_green 'Sat'   "icon + name of day
  into g_header separated by space.

loop at screen.
  if screen-name = 'G_HEADER'. "column header
    screen-intensified = '1'.
    modify screen.
  endif.
endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Nov 2007 07:06:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-28T07:06:57Z</dc:date>
    <item>
      <title>Regarding Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076583#M729573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;i want to give a color to a particular column in table control how i can achieve this? currently am using textbox for  table control heading display is there any way to achieve this scenario, kindly help me regarding this scenario.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 13:14:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076583#M729573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T13:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076584#M729574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;iF YOU ARE USING TEXT BOX FOR HEADIG, GO TO PROPERTIES THEIR U CAN SET THE COLOR FOR ONLY COLUMN HEADING,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIRST TELL ME HOW YOU SELECT THE COLUMNS  FOR TABLE CPONTROL ,&lt;/P&gt;&lt;P&gt;I MEAN YOU ARE USING THROUGH PROGRAM OR THROUGH DATABASE TABLE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 14:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076584#M729574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T14:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076585#M729575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chaitanya,&lt;/P&gt;&lt;P&gt;Am using text box for displaying header column because it has to be displayed dynamically the days because am working in time sheet program, so i have 31 columns for 31 days in my table control which is from database table,so i have to display Saturday and Sunday alone in color i.e. the column heading alone should come in color.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 03:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076585#M729575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T03:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076586#M729576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can sort of do this if you make you column headers as Input/Ouput fields rather than Text, and then set the screen-intensified = '1'. via a loop at screen in the PBO.  However, this will make the column header label "bright" i.e. blue in a normal dynpro screen which is not very easy to distinguish... so in addition to this you could, perhaps, put an icon in the column header for days on weekends e.g. something like that below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in TOP include:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
include &amp;lt;icon&amp;gt;.
data
  g_header(10) type c. "define in top include&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate icon_led_green 'Sat'   "icon + name of day
  into g_header separated by space.

loop at screen.
  if screen-name = 'G_HEADER'. "column header
    screen-intensified = '1'.
    modify screen.
  endif.
endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 07:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076586#M729576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T07:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076587#M729577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;Thanks for Your Valuable Suggestion my problem was solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2007 08:26:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/3076587#M729577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-29T08:26:44Z</dc:date>
    </item>
  </channel>
</rss>

