<?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: deactivating table control on screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501661#M842252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no idea??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Feb 2008 11:48:05 GMT</pubDate>
    <dc:creator>murat_kaya</dc:creator>
    <dc:date>2008-02-28T11:48:05Z</dc:date>
    <item>
      <title>deactivating table control on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501660#M842251</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 have a table control on the screen of an infotype regarding to a subtype and i will put another table control for some other subtype, i set the invisible parameter of the table control to X, although it is invisible there is still a blank place on the screen and the other table control is at the bottom. i guess i need to deactivate the table control but i couldn't manage to do that. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do this, can anyone help me on this matter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 10:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501660#M842251</guid>
      <dc:creator>murat_kaya</dc:creator>
      <dc:date>2008-02-28T10:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: deactivating table control on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501661#M842252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no idea??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 11:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501661#M842252</guid>
      <dc:creator>murat_kaya</dc:creator>
      <dc:date>2008-02-28T11:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: deactivating table control on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501662#M842253</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;You can very well do it. but if you disable the screen it will disable the data on the table control but the space will be always their.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try to use disabling the table control itself, you can loop the table control and disable it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see below code in which i disabled the perticular column of the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop with control &amp;lt;table Control name&amp;gt;&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;Module modify_screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Data: wa_col TYPE cxtab_column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT tc_wf_log-cols INTO wa_col.&lt;/P&gt;&lt;P&gt;        IF wa_col-screen-name = 'BUT2'.&lt;/P&gt;&lt;P&gt;          wa_col-invisible = 'X'.&lt;/P&gt;&lt;P&gt;          MODIFY tc_wf_log-cols FROM wa_col.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;Endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if anything else requires.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give reward point if it is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;P&gt;Prashant Raichurkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 11:59:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501662#M842253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T11:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: deactivating table control on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501663#M842254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been trying permutations and combinations on this and trying to get it to work, however the free space is very stubborn and not compressing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only solution would be to create two different screens for each subtype. Actually thats not a bad option and even standard SAP works it that way. Using T588M table maintenance you can then determine which screen is attached to which subtype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 12:02:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501663#M842254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-28T12:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: deactivating table control on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501664#M842255</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 the pbo of the screen showing table control try like this.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if screen-name = &amp;lt;table control name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-input = 0.&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;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward points if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 12:02:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501664#M842255</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2008-02-28T12:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: deactivating table control on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501665#M842256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Prashant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with a little modification, your code solved my problem, you got the points &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best wishes...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2008 13:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivating-table-control-on-screen/m-p/3501665#M842256</guid>
      <dc:creator>murat_kaya</dc:creator>
      <dc:date>2008-02-28T13:38:00Z</dc:date>
    </item>
  </channel>
</rss>

