<?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 unhide a table control? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134653#M1365959</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your algorithm seems correct. I guess there is just a little error somewhere in your code not linked to "invisible".&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; But not getting desired output.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What are you getting, does something appear?&lt;/P&gt;&lt;P&gt;Did you check all the fields of the "controls" structure ([abap doc - table control|http://help.sap.com/abapdocu_70/en/ABAPCONTROLS_TABLEVIEW.htm])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Aug 2009 21:37:17 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2009-08-27T21:37:17Z</dc:date>
    <item>
      <title>How to unhide a table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134650#M1365956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gems,&lt;/P&gt;&lt;P&gt;I need to make a table control visible based on a push button press.&lt;/P&gt;&lt;P&gt;For your information, initially i am hiding the table control using table control component INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;While pressing the button, I am making INVISIBLE = 0. But not getting desired output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any1 help me on this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--thanks,&lt;/P&gt;&lt;P&gt;Surajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2009 19:00:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134650#M1365956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-27T19:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to unhide a table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134651#M1365957</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;    We have to do the unhiding in PBO of the screen so i hope you are doing the invisible = 0,input = 1 in the PBO of the screen on which you have the table control.&lt;/P&gt;&lt;P&gt;Also if it is not working can you share the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2009 19:05:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134651#M1365957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-27T19:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to unhide a table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134652#M1365958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I am doing it in PBO only.&lt;/P&gt;&lt;P&gt;Table control have a component called INVISIBLE but there is no component called ACTIVE or INPUT(these are screen component).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now i dont hav the code with me but i can give you a idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI i am populating a flag.&lt;/P&gt;&lt;P&gt;In PBO, based on the flag I am calling a perform.&lt;/P&gt;&lt;P&gt;Code in the perform is as follows:&lt;/P&gt;&lt;P&gt;Form A.&lt;/P&gt;&lt;P&gt;*--&lt;DEL&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="------" /&gt;to modify screen component--&lt;P&gt;&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------" /&gt;&lt;P&gt;TABC1-INVISIBLE = '1'.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you to understand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2009 19:14:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134652#M1365958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-27T19:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to unhide a table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134653#M1365959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your algorithm seems correct. I guess there is just a little error somewhere in your code not linked to "invisible".&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; But not getting desired output.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What are you getting, does something appear?&lt;/P&gt;&lt;P&gt;Did you check all the fields of the "controls" structure ([abap doc - table control|http://help.sap.com/abapdocu_70/en/ABAPCONTROLS_TABLEVIEW.htm])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2009 21:37:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134653#M1365959</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2009-08-27T21:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to unhide a table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134654#M1365960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;guys...i got the sol.&lt;/P&gt;&lt;P&gt;It is not 1 or 0...it is X or space.&lt;/P&gt;&lt;P&gt;i.e. INVISIBLE = 'X' or INVISIBLE = space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks all for ur effort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 05:59:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134654#M1365960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-28T05:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to unhide a table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134655#M1365961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;guys...i got the sol.&lt;/P&gt;&lt;P&gt;It is not 1 or 0...it is X or space.&lt;/P&gt;&lt;P&gt;i.e. INVISIBLE = 'X' or INVISIBLE = space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks all for ur effort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 05:59:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134655#M1365961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-28T05:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to unhide a table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134656#M1365962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resolved by captain Surajit &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 09:19:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-unhide-a-table-control/m-p/6134656#M1365962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-03T09:19:11Z</dc:date>
    </item>
  </channel>
</rss>

