<?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/display the columns in the module pool programing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432211#M543819</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.  double click on the columns you want to hide/display and give the same group to all of them in the attributes,say GRP1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;2. IF X EQ Y .   " some condition

       loop at screen.
          if screen-group1 = 'GRP1'.
             screen-input = 0.
             modify screen.
          endif.
       endloop.
     ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jul 2007 15:10:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-02T15:10:06Z</dc:date>
    <item>
      <title>How to hide/display the columns in the module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432210#M543818</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;&lt;/P&gt;&lt;P&gt;I created a module pool program with table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirement is: Based on the condition i need to Hide/Display the columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Seshadri G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 15:06:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432210#M543818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T15:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide/display the columns in the module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432211#M543819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.  double click on the columns you want to hide/display and give the same group to all of them in the attributes,say GRP1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;2. IF X EQ Y .   " some condition

       loop at screen.
          if screen-group1 = 'GRP1'.
             screen-input = 0.
             modify screen.
          endif.
       endloop.
     ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 15:10:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432211#M543819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T15:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide/display the columns in the module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432212#M543820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, in the PBO flow logic use.&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 = 'MYFIELD'.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = '1'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN&amp;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 15:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432212#M543820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T15:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide/display the columns in the module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432213#M543821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can do it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN PBO module of the screen.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Flow logic
MODULE HIDE.

In SE38
MODULE HIDE.
if condn.
loop at screen.
if screen-name = Itab-field1
screen-active = 0.
modify screen.
endif.
endloop.
endif.
ENDMODULE HIDE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 15:11:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432213#M543821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T15:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide/display the columns in the module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432214#M543822</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;     it is possible to hide the columns of table control.&lt;/P&gt;&lt;P&gt;Just change the attributes of table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if matnr = '123'.&lt;/P&gt;&lt;P&gt;TC-invicible = 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 15:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-hide-display-the-columns-in-the-module-pool-programing/m-p/2432214#M543822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T15:13:04Z</dc:date>
    </item>
  </channel>
</rss>

