<?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 Tabstrip in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842503#M665764</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I need a help in coding a tabstrip in module pool programming. i have placed different tabstrips in a screen but how to call sub screens and code for the tab. plz help me. i need it urgent.&lt;/P&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>Thu, 20 Sep 2007 12:03:29 GMT</pubDate>
    <dc:creator>vijy_mukunthan</dc:creator>
    <dc:date>2007-09-20T12:03:29Z</dc:date>
    <item>
      <title>Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842503#M665764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I need a help in coding a tabstrip in module pool programming. i have placed different tabstrips in a screen but how to call sub screens and code for the tab. plz help me. i need it urgent.&lt;/P&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>Thu, 20 Sep 2007 12:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842503#M665764</guid>
      <dc:creator>vijy_mukunthan</dc:creator>
      <dc:date>2007-09-20T12:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842504#M665765</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;make TABSTRIP by wizard.&lt;/P&gt;&lt;P&gt;It will automatically create sub screens and give numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than go to that subscreen and put elements (like table control,text fields, etc) which u want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will helpful.&lt;/P&gt;&lt;P&gt;U can ask if u get confuse.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 12:29:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842504#M665765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T12:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842505#M665766</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;create the tabstrip and then create a subscreen area in each of the tabs.&lt;/P&gt;&lt;P&gt;put a case based on the ok code for the tabstrip being selected.&lt;/P&gt;&lt;P&gt; Call the subscreen to be displayed to each of the subscreen area in the case statement.&lt;/P&gt;&lt;P&gt; As you change the tabstrip-activetab value with the tab the screens will be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;case ok_code.
  when 'TAB1'.
     tabstrip-activetab = ok_code.
* call respective subscreen here.
  when 'TAB2'.
     tabstrip-activetab = ok_code.
* call respective subscreen here.
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;As suggested above even Wizard is god idea....later try this so u get what exacty happens..&lt;/P&gt;&lt;P&gt;*Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 16:36:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842505#M665766</guid>
      <dc:creator>KN-Nampoothiry</dc:creator>
      <dc:date>2007-09-20T16:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842506#M665767</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;Write this coding on the screen's flowlogic part in which u have taken tabstrip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MODULE STATUS_0100.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub1 INCLUDING 'Z_TABPAGE' '101'.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub2 INCLUDING 'Z_TABPAGE' '102'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub1.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN sub2.&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here &amp;lt;b&amp;gt;SUB1&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;SUB2&amp;lt;/b&amp;gt; is the name of subscreen taken on the tabpage respectively.&lt;/P&gt;&lt;P&gt;The name of prog is &amp;lt;b&amp;gt;'Z_TABPAGE'&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;101&amp;lt;/b&amp;gt; &amp;amp; &amp;lt;b&amp;gt;102&amp;lt;/b&amp;gt; are &amp;lt;b&amp;gt;screen number&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Dharmishta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 05:47:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842506#M665767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T05:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842507#M665768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;If your using tabstrip wizhard it will be easy.In that wizhard itself it will ask for how many tabs you need,from which table data has to be taken etc.If it is nessesary you have to use other way for your program then try this wizhard for some other trial program and you will get what all statement you have to write.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shibin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 06:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip/m-p/2842507#M665768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T06:35:27Z</dc:date>
    </item>
  </channel>
</rss>

