<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201594#M763050</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with the help of tabstrip control it creates only 2 push button can we create more than 2 pushbuttons?plz tell&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Dec 2007 06:41:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-22T06:41:44Z</dc:date>
    <item>
      <title>tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201592#M763048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is difference between tabstrip and tabstrip wizard?plz tell&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Dec 2007 06:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201592#M763048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-22T06:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201593#M763049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tabstrip is just like creating tabbed blocks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the wizard helps to prepare tabstrips.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it contains 2 or more sub screens with a function code for each screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the following code to create tabstrip in your selection screen. u can have some idea of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTABSTRIP                               .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF TABBED BLOCK tabb1 FOR 14 LINES.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN TAB (15) tabs1 USER-COMMAND ucomm1&lt;/P&gt;&lt;P&gt;                       DEFAULT SCREEN 9000.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN TAB (15) tabs2 USER-COMMAND ucomm2&lt;/P&gt;&lt;P&gt;                       DEFAULT SCREEN 9001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK tabb1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 9000 as subscreen.&lt;/P&gt;&lt;P&gt;  parameter: abc(10) type c.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 9001 as subscreen.&lt;/P&gt;&lt;P&gt;  parameter: abc1(10) type c.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 9001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  tabs1 = TEXT-001.&lt;/P&gt;&lt;P&gt;  tabs2 = TEXT-002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ANUPAM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Dec 2007 06:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201593#M763049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-22T06:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201594#M763050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with the help of tabstrip control it creates only 2 push button can we create more than 2 pushbuttons?plz tell&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Dec 2007 06:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201594#M763050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-22T06:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201595#M763051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, The 2 push buttons r for switching over the 2 subscreens. each subscreen must have a pushbutton of it's own.&lt;/P&gt;&lt;P&gt;u can create as much pushbuttons as u with on the subscreens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ANUPAM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Dec 2007 06:44:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/3201595#M763051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-22T06:44:51Z</dc:date>
    </item>
  </channel>
</rss>

