<?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: How to hide a Table control? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599082#M866789</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...&lt;/P&gt;&lt;P&gt;Can u please share ur solution...&lt;/P&gt;&lt;P&gt;I too want to hide a field in table control..but it is not visible through screen-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Nov 2008 12:32:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-13T12:32:23Z</dc:date>
    <item>
      <title>How to hide a Table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599077#M866784</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've a modul-pool that has severals subscreens. One of them has 2 parts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Part 1 has two containers, one table control and several camps&lt;/P&gt;&lt;P&gt;- Part 2 has a container and several camps.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODULE HIDE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;IF zf11_t_sol-tipo = '02'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = '5_1' OR screen-name = 'CONTAINER_1'&lt;/P&gt;&lt;P&gt;      OR screen-name = 'TABLE_CONTROL&lt;/P&gt;&lt;P&gt;      OR screen-name = 'CONTAINER_2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        screen-input = '0'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ELSEIF zf11_t_sol-tipo = '01'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = '5_2' OR screen-name = 'CONTAINER_3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        screen-input = '0'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDMODULE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's work perfectly for camps, but the Table_contol doesn't work. I try to join it into a group but i can´t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there some solution or method? How can I hide the table control?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Daniel Hernando on Apr 2, 2008 12:53 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Daniel Hernando on Apr 2, 2008 12:54 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 10:45:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599077#M866784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T10:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide a Table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599078#M866785</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;In screen painter, open the table control attributes, enter the some value in group column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE SCR_INIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Module SCR_INIT OUTPUT&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;MODULE SCR_INIT OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;if g_auth = 'BM'.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'GR1'.&lt;/P&gt;&lt;P&gt;SCREEN-ACTIVE = '0'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 10:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599078#M866785</guid>
      <dc:creator>ak_upadhyay</dc:creator>
      <dc:date>2008-04-02T10:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide a Table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599079#M866786</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 hide the Table Control by:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS &amp;lt;ctrl&amp;gt; TYPE TABLEVIEW USING SCREEN &amp;lt;scr&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cxt_control-columns = '0'.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR Also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the following code in PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'tabl_ctrl'.&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward Points if found helpfull..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 10:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599079#M866786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T10:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide a Table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599080#M866787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For AK,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to do you said but I can´t join the table control to a group. For camps there aren't any problem but for the table control it's imposible it show the option unwriteble.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Chandra Sekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try too to use:&lt;/P&gt;&lt;P&gt;if screen-name = 'tc_'.  But for some reason the table control doesn't appears in the debuggin mode, so it's imposible change it the status, for active or input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other solution you said:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONTROLS&lt;/STRONG&gt; 'TABLE_CONTROL' &lt;STRONG&gt;TYPE TABLEVIEW USING SCREEN&lt;/STRONG&gt; '9005'. &lt;/P&gt;&lt;P&gt;I can active, it saids:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In unicode programs, the "" character cannot appear in names, as it does her in the name "TABLE_CONTROL".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A lot of thanks for yours answers!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 11:34:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599080#M866787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T11:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide a Table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599081#M866788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. It's done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 08:17:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599081#M866788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T08:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide a Table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599082#M866789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...&lt;/P&gt;&lt;P&gt;Can u please share ur solution...&lt;/P&gt;&lt;P&gt;I too want to hide a field in table control..but it is not visible through screen-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2008 12:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-a-table-control/m-p/3599082#M866789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-13T12:32:23Z</dc:date>
    </item>
  </channel>
</rss>

