<?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 Table control field attributes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184481#M126702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;i want to change some attributes for special fields inside a table control (not the whole column only special fields in different lines)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the PBO part&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: pbo flow logic for tablecontrol 'TC_PACKTAB'&lt;/P&gt;&lt;P&gt;MODULE tc_packtab_change_tc_attr.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: module TC_PACKTAB_change_col_attr.&lt;/P&gt;&lt;P&gt;LOOP AT wt_packtab&lt;/P&gt;&lt;P&gt;INTO wa_packtab&lt;/P&gt;&lt;P&gt;WITH CONTROL tc_packtab&lt;/P&gt;&lt;P&gt;CURSOR tc_packtab-current_line.&lt;/P&gt;&lt;P&gt;MODULE tc_packtab_get_lines.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: module TC_PACKTAB_change_field_attr&lt;/P&gt;&lt;P&gt;MODULE modify_screen.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE modify_screen OUTPUT.&lt;/P&gt;&lt;P&gt;perform modify_screen.&lt;/P&gt;&lt;P&gt;ENDMODULE. " modify_screen OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM modify_screen .&lt;/P&gt;&lt;P&gt;LOOP AT tc_packtab-cols INTO cols. "WHERE index GT 2.&lt;/P&gt;&lt;P&gt;IF cols-screen-name = 'WA_PACKTAB-NTVOL'&lt;/P&gt;&lt;P&gt;AND wa_packtab-error = 'X'.&lt;/P&gt;&lt;P&gt;cols-screen-intensified = '1'.&lt;/P&gt;&lt;P&gt;MODIFY tc_packtab-cols FROM cols . &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDFORM. " modify_screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that: Only the whole column is intensified (on or off) depense on the last field that was checked. But it should changed the color e.g. in line 2 and 6 and all other lines should be intensified off.&lt;/P&gt;&lt;P&gt;What is wrong??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Feb 2006 10:39:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-28T10:39:19Z</dc:date>
    <item>
      <title>Table control field attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184481#M126702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;i want to change some attributes for special fields inside a table control (not the whole column only special fields in different lines)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the PBO part&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: pbo flow logic for tablecontrol 'TC_PACKTAB'&lt;/P&gt;&lt;P&gt;MODULE tc_packtab_change_tc_attr.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: module TC_PACKTAB_change_col_attr.&lt;/P&gt;&lt;P&gt;LOOP AT wt_packtab&lt;/P&gt;&lt;P&gt;INTO wa_packtab&lt;/P&gt;&lt;P&gt;WITH CONTROL tc_packtab&lt;/P&gt;&lt;P&gt;CURSOR tc_packtab-current_line.&lt;/P&gt;&lt;P&gt;MODULE tc_packtab_get_lines.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: module TC_PACKTAB_change_field_attr&lt;/P&gt;&lt;P&gt;MODULE modify_screen.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE modify_screen OUTPUT.&lt;/P&gt;&lt;P&gt;perform modify_screen.&lt;/P&gt;&lt;P&gt;ENDMODULE. " modify_screen OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM modify_screen .&lt;/P&gt;&lt;P&gt;LOOP AT tc_packtab-cols INTO cols. "WHERE index GT 2.&lt;/P&gt;&lt;P&gt;IF cols-screen-name = 'WA_PACKTAB-NTVOL'&lt;/P&gt;&lt;P&gt;AND wa_packtab-error = 'X'.&lt;/P&gt;&lt;P&gt;cols-screen-intensified = '1'.&lt;/P&gt;&lt;P&gt;MODIFY tc_packtab-cols FROM cols . &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDFORM. " modify_screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that: Only the whole column is intensified (on or off) depense on the last field that was checked. But it should changed the color e.g. in line 2 and 6 and all other lines should be intensified off.&lt;/P&gt;&lt;P&gt;What is wrong??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 10:39:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184481#M126702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T10:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Table control field attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184482#M126703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.did u assign screen groups to the particular field where u want them to change the attributes in the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. this u might be knowing in the field attributes where u hav option for 4 screen groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. after assigning now in pai write teh code as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.now using screen groups and combing them &lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;    if screen-group1 = '001' &lt;/P&gt;&lt;P&gt;     screen-intensified = ' ' or 1 . &lt;/P&gt;&lt;P&gt;    endif .   &lt;/P&gt;&lt;P&gt;and modify the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 10:51:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184482#M126703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T10:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table control field attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184483#M126704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;thanks that works.&lt;/P&gt;&lt;P&gt;Regards Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 11:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184483#M126704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T11:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table control field attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184484#M126705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u r welcome thomas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; vijay,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 11:19:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-field-attributes/m-p/1184484#M126705</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T11:19:03Z</dc:date>
    </item>
  </channel>
</rss>

