<?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 Using the Tabstrip in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664199#M882637</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;I am using a tabstrip with 3 options. When you select an option, a set of fields is getting automatically filled.&lt;/P&gt;&lt;P&gt;At one of the options, i have to call another program first to do something and when the user is done there, i need to go back to the original program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i, in my original program set the tabstrip to tab 3 instead of tab 1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because, when i get back in my original program, the fields are filled with the data from option 3, but the tabstrip is setted on tab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Fritz Heinzwagel on Apr 3, 2008 12:33 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Apr 2008 10:32:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-03T10:32:46Z</dc:date>
    <item>
      <title>Using the Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664199#M882637</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;I am using a tabstrip with 3 options. When you select an option, a set of fields is getting automatically filled.&lt;/P&gt;&lt;P&gt;At one of the options, i have to call another program first to do something and when the user is done there, i need to go back to the original program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i, in my original program set the tabstrip to tab 3 instead of tab 1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because, when i get back in my original program, the fields are filled with the data from option 3, but the tabstrip is setted on tab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Fritz Heinzwagel on Apr 3, 2008 12:33 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 10:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664199#M882637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T10:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664200#M882638</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;when you create your tabstrip with the wizard, you get a code for selecting the active tab:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE MYTAB_ACTIVE_TAB_SET OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MYTAB-ACTIVETAB = G_MYTAB-PRESSED_TAB.&lt;/P&gt;&lt;P&gt;  CASE G_MYTAB-PRESSED_TAB.&lt;/P&gt;&lt;P&gt;    WHEN C_MYTAB-TAB1.&lt;/P&gt;&lt;P&gt;      G_MYTAB-SUBSCREEN = '0101'.&lt;/P&gt;&lt;P&gt;    WHEN C_MYTAB-TAB2.&lt;/P&gt;&lt;P&gt;      G_MYTAB-SUBSCREEN = '0102'.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;follow your code with the debugger after return of the called program and check whether your setting the active tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 10:41:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664200#M882638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T10:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664201#M882639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you used the Table Control Wizard, you can use code like this to set the tab you want to go to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
g_tabctl01-pressed_tab = c_tabctl01-tab1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the Global area the wizard generates this code which you can relate to your code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* FUNCTION CODES FOR TABSTRIP 'TABCTL01'
CONSTANTS: BEGIN OF c_tabctl01,
             tab1 LIKE sy-ucomm VALUE 'TABCTL01_FC1',
             tab2 LIKE sy-ucomm VALUE 'TABCTL01_FC2',
             tab3 LIKE sy-ucomm VALUE 'TABCTL01_FC3',
             tab4 LIKE sy-ucomm VALUE 'TABCTL01_FC4',
             tab5 LIKE sy-ucomm VALUE 'TABCTL01_FC5',
             tab6 LIKE sy-ucomm VALUE 'TABCTL01_FC6',
             tab7 LIKE sy-ucomm VALUE 'TABCTL01_FC7',
             tab8 LIKE sy-ucomm VALUE 'TABCTL01_FC8',
           END OF c_tabctl01.
* DATA FOR TABSTRIP 'TABCTL01'
CONTROLS:  tabctl01 TYPE TABSTRIP.
DATA:      BEGIN OF g_tabctl01,
             subscreen   LIKE sy-dynnr,
             prog        LIKE sy-repid VALUE 'ZLMX_LEAD_TRACKING',
             pressed_tab LIKE sy-ucomm VALUE c_tabctl01-tab1,
           END OF g_tabctl01.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 10:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664201#M882639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T10:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664202#M882640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 11:05:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-tabstrip/m-p/3664202#M882640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T11:05:13Z</dc:date>
    </item>
  </channel>
</rss>

