<?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: Supressing Tab selection screen on selection screen .... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414797#M1243235</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Faisal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your code , still color image of tab showing in the screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Apr 2009 20:18:03 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2009-04-02T20:18:03Z</dc:date>
    <item>
      <title>Supressing Tab selection screen on selection screen ....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414792#M1243230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gurus,&lt;/P&gt;&lt;P&gt;I have following program. I want to make the Tab screen on selection screen inivisible when ceratin condition is set in configuration table. I know that I have to do it in AT SELECTION-SCREEN OUTPUT using loop - endloop. But how can I do it , lets say when variable v_block = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTOPTEST .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_block type char1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;        max_res(8) default '20'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****************************************************************&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF TABBED BLOCK tab_block FOR 5 LINES,&lt;/P&gt;&lt;P&gt;  TAB (20) tab1 USER-COMMAND tabpush1&lt;/P&gt;&lt;P&gt;  DEFAULT SCREEN 100,&lt;/P&gt;&lt;P&gt;END OF BLOCK tab_block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREN OUTPUT.&lt;/P&gt;&lt;P&gt;&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;:&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;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 19:19:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414792#M1243230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T19:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing Tab selection screen on selection screen ....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414793#M1243231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREeN OUTPUT.
if v_block = 'X'.
LOOP AT SCREEN.
if screen-name = 'TAB1'.
   SCREEN-INVISIBLE = '1'.
   MODIFY SCREEN.
ENDIF.
endif.
ENDLOO
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,  a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 19:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414793#M1243231</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-04-02T19:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing Tab selection screen on selection screen ....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414794#M1243232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I do like this then TAB does get suppressed but there a thick Grey color patch that appears. I want the screen to look like as if there is no tab block. Do I need to play with screen-color for this ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 19:31:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414794#M1243232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T19:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing Tab selection screen on selection screen ....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414795#M1243233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you are right, If you makes the INVISIBLE default color is not hide it still there,. I am seeing something like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://img.photo.163.com/uK9W8WJgvPlghW7VLcWHNg==/84723967993187238.jpg" target="test_blank"&gt;http://img.photo.163.com/uK9W8WJgvPlghW7VLcWHNg==/84723967993187238.jpg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case try to make fields inside the tab to "display only " and not to HIDE the tab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 19:52:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414795#M1243233</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-04-02T19:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing Tab selection screen on selection screen ....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414796#M1243234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Jainam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following Sample Code hope will solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN OUTPUT.

  IF v_block = 'X'.
    LOOP AT SCREEN.
      IF screen-name = 'MAX_RES' or screen-name = '%_MAX_RES_%_APP_%-TEXT'.
*        screen-active = 0. " Active this and Hide the Bellow if Compliantly Hide Fields and Lable 
        screen-input = 0.   " You can see the Fields but not able to Input
        MODIFY SCREEN.
      ENDIF.
  ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 20:13:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414796#M1243234</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-04-02T20:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing Tab selection screen on selection screen ....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414797#M1243235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Faisal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your code , still color image of tab showing in the screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 20:18:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414797#M1243235</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-04-02T20:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing Tab selection screen on selection screen ....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414798#M1243236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, a®s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Code will hide the field max_res and its label not perform any action on Tab. in this way you can hide up all the field in the Tab or make them not ready for input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regard,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 20:24:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/supressing-tab-selection-screen-on-selection-screen/m-p/5414798#M1243236</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-04-02T20:24:22Z</dc:date>
    </item>
  </channel>
</rss>

