<?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 Hide The Table in Table-Control Dialogue Programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054547#M1174810</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;How to &lt;STRONG&gt;hide the TABLE itself&lt;/STRONG&gt; (not the columns only but the whole table completely) in table-control in dialog-programming.can any one please help me.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Biswajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Dec 2008 09:18:19 GMT</pubDate>
    <dc:creator>biswajit_das6</dc:creator>
    <dc:date>2008-12-31T09:18:19Z</dc:date>
    <item>
      <title>Hide The Table in Table-Control Dialogue Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054547#M1174810</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;How to &lt;STRONG&gt;hide the TABLE itself&lt;/STRONG&gt; (not the columns only but the whole table completely) in table-control in dialog-programming.can any one please help me.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Biswajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2008 09:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054547#M1174810</guid>
      <dc:creator>biswajit_das6</dc:creator>
      <dc:date>2008-12-31T09:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Hide The Table in Table-Control Dialogue Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054548#M1174811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Biswajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To hide/display the table control in module pool programming, on a button click, follow code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working.&lt;/P&gt;&lt;P&gt;In PAI&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CASE sy-ucomm.

    WHEN 'HIDE'.
      po_tb-invisible = 'X'. "po_tb is table control name (hide table control)

    WHEN 'SHOW'.
      po_tb-invisible = ' '. "po_tb is table control name (display table control)

  ENDCASE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Tarun Gambhir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jan 2009 09:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054548#M1174811</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-01-01T09:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Hide The Table in Table-Control Dialogue Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054549#M1174812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use the &lt;STRONG&gt;screen&lt;/STRONG&gt; table.&lt;/P&gt;&lt;P&gt;delclare as a "table" for the  &lt;STRONG&gt;group&lt;/STRONG&gt; properties of that table element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt; if screen-goupt1 = "table"&lt;/P&gt;&lt;P&gt;   if the pushbutton = 'HIDE'   &lt;/P&gt;&lt;P&gt;        screen-required = 0.                             &lt;/P&gt;&lt;P&gt;        screen-invsible   = 0.                          &lt;/P&gt;&lt;P&gt;        screen-input    = 0.                           &lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;   ELSEIF  the pushbutton = 'SHOW'&lt;/P&gt;&lt;P&gt;        screen-required = 0.                            &lt;/P&gt;&lt;P&gt;        screen-invsible  = 1.                             &lt;/P&gt;&lt;P&gt;        screen-input    = 0.                            &lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;     ENDIF.&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;it solves your problme.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jan 2009 10:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054549#M1174812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-01T10:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Hide The Table in Table-Control Dialogue Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054550#M1174813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 05:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-in-table-control-dialogue-programming/m-p/5054550#M1174813</guid>
      <dc:creator>biswajit_das6</dc:creator>
      <dc:date>2009-01-02T05:08:11Z</dc:date>
    </item>
  </channel>
</rss>

