<?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: Tabstrip control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167718#M122174</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijay,&lt;/P&gt;&lt;P&gt; What I require is that 2 tabs should be seen by the user and only on passing certain condition should he be able to see the third tab.&lt;/P&gt;&lt;P&gt;All the three tabs shall be using the same subscreen area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jan 2006 07:29:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-10T07:29:23Z</dc:date>
    <item>
      <title>Tabstrip control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167716#M122172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a subscreen with 3 tabstrips.&lt;/P&gt;&lt;P&gt;Out of those three, I want to keep one tabstrip hidden(not shown to the user). I want it to be shown only on passing a  certain condition. &lt;/P&gt;&lt;P&gt;How do I hide(and unhide) a tabstrip?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 06:28:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167716#M122172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T06:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: Tabstrip control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167717#M122173</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;Tabstrip is nothing but the screen element, so what you can do is &lt;/P&gt;&lt;P&gt;in PBO of the screen give some module to modify the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;module moify_screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;module modify_screen.
loop at screen.
if screen-name = 'TAB3' and &amp;lt;b&amp;gt;some condition&amp;lt;/b&amp;gt;."decide
screen-invisible = 1.
modify screen.
endif.
endloop.

endmodule.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 07:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167717#M122173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T07:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Tabstrip control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167718#M122174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijay,&lt;/P&gt;&lt;P&gt; What I require is that 2 tabs should be seen by the user and only on passing certain condition should he be able to see the third tab.&lt;/P&gt;&lt;P&gt;All the three tabs shall be using the same subscreen area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 07:29:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167718#M122174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T07:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Tabstrip control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167719#M122175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to loop the screen and make the third tab invisible when the condition not met, when the condition is met it will not modify the screen.&lt;/P&gt;&lt;P&gt;based on the condition you modify the screen(tab)&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 07:34:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/1167719#M122175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T07:34:38Z</dc:date>
    </item>
  </channel>
</rss>

