<?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: hide column in Table control wizard in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392856#M1644079</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can not hide any colum automatically if you have used table control wizard. insted you can use LOOP ENDLOOP cocept . The LOOP ENDLOOP code has to be written in PBO block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;P&gt;Ankitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Nov 2011 04:42:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-25T04:42:29Z</dc:date>
    <item>
      <title>hide column in Table control wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392854#M1644077</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 want to hide one column in table control, which is created using wizard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In dynpro layout, i can see in the attributes of that field, invisible attribute  is disabled. i cant check it invisble.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me how to enable it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2011 03:30:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392854#M1644077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-25T03:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: hide column in Table control wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392855#M1644078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi princeck.&lt;/P&gt;&lt;P&gt;The invisible option will be enabled only for GUI elements like text box,radio button,push button etc.&lt;/P&gt;&lt;P&gt;To make a column in a table control invisible, you have to write the business logic in PBO (loop at screen...endloop) of that screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2011 04:10:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392855#M1644078</guid>
      <dc:creator>Arun_Prabhu_K</dc:creator>
      <dc:date>2011-11-25T04:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: hide column in Table control wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392856#M1644079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can not hide any colum automatically if you have used table control wizard. insted you can use LOOP ENDLOOP cocept . The LOOP ENDLOOP code has to be written in PBO block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;P&gt;Ankitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2011 04:42:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392856#M1644079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-25T04:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: hide column in Table control wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392857#M1644080</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;tbc-hide-column.txt

MODULE MODIFY_100 OUTPUT.
 DATA wa_tabctrl TYPE cxtab_column .
 LOOP AT TABCTRL-COLS INTO WA_TABCTRL.
 IF WA_TABCTRL-screen-NAME =  'zemp_nm'. 
 WA_TABCTRL-INVISIBLE =  'X'.
 MODIFY TABCTRL-COLS FROM WA_TABCTRL.
  ENDIF.
 ENDLOOP.
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Try This Code. Definitely you can hide the column. You Should write this code in PBO and out side the loop of TBC.&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 16:32:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-column-in-table-control-wizard/m-p/8392857#M1644080</guid>
      <dc:creator>former_member677524</dc:creator>
      <dc:date>2020-05-08T16:32:53Z</dc:date>
    </item>
  </channel>
</rss>

