<?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/8450682#M1649473</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you assigned the value to ok code in main screen Element list tab lets name GV_OK_CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you will click on TAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GV_OK_CODE or SY_UCOMM will have value as TAB1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Dec 2011 09:38:11 GMT</pubDate>
    <dc:creator>nabheetscn</dc:creator>
    <dc:date>2011-12-27T09:38:11Z</dc:date>
    <item>
      <title>tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450671#M1649462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is regarding Tabstrip Control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using tabstrip control with 2 screens defined on it.There are &lt;STRONG&gt;some mandatory fields on tab1 and tab2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;So when I am entering for the first time into the Screen and entering data on tab1 and press enter,then  the cusror is going to *Mandatory fields on second screen, *it is not stopping &lt;STRONG&gt;at the first tab screen&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise me on  how to stop the curson on the first screen after pressing anter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manasa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2011 11:05:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450671#M1649462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-26T11:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450672#M1649463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Follow this process.&lt;/P&gt;&lt;P&gt;First maintain data type for both tabstrip names in top include.&lt;/P&gt;&lt;P&gt;Create same subarea for both tabs and name it as 'SUB'.&lt;/P&gt;&lt;P&gt;CONTROLS : TAB TYPE TABSTRIP..&lt;/P&gt;&lt;P&gt;Data tab1 type char10,&lt;/P&gt;&lt;P&gt;        tab2 type char10,&lt;/P&gt;&lt;P&gt;        dynnr type dynnr.&lt;/P&gt;&lt;P&gt;In PBO place the following code.&lt;/P&gt;&lt;P&gt;Place the below code in module tab.&lt;/P&gt;&lt;P&gt;Module tab.&lt;/P&gt;&lt;P&gt;If sy-ucomm = 'TAB1'.&lt;/P&gt;&lt;P&gt;active-tab = 'TAB1'. (tab1 is name of the tab name declared in the top include.&lt;/P&gt;&lt;P&gt;dynnr = '1001'. &lt;/P&gt;&lt;P&gt;elseif sy-ucomm = 'TAb2'.&lt;/P&gt;&lt;P&gt;active-tab = 'TAB2'. (tab2 is name of the tab name declared in the top include.&lt;/P&gt;&lt;P&gt;dynnr = '1002'.&lt;/P&gt;&lt;P&gt;endif. &lt;/P&gt;&lt;P&gt;  endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call subscreen SUBAREA including sy-cprog 'dynnr'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI.&lt;/P&gt;&lt;P&gt;Call subscreen sub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;G.Aditya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Aditya.G on Dec 26, 2011 6:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2011 12:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450672#M1649463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-26T12:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450673#M1649464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried createing subareas and give the same name to both the subareas,bu tit is giving me an error,SUB exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly advice me,how to proceed on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2011 13:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450673#M1649464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-26T13:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450674#M1649465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First create a subarea in tab1 and select tab2 and create subarea with same name as you have given to tab1 subarea name and just activate it . If again same error raise, in subarea give the refernce field for both subareas as same and activate it and come back to logic and implement the code which i had given to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If again same issue raise means revert me back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;G.Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2011 14:34:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450674#M1649465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-26T14:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450675#M1649466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried the same,but got the same error.&lt;/P&gt;&lt;P&gt;Please advice me ,how to proceed with this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2011 14:39:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450675#M1649466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-26T14:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450676#M1649467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First create a subarea in tab1 and select on tab2 dont create a subarea there just double click on tab2 you will get tab attributes in that if you find reference field just give the tab1 subarea name in reference field and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;G.Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2011 14:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450676#M1649467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-26T14:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450677#M1649468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I din't get the error now.&lt;/P&gt;&lt;P&gt;As the screen area names are same,I am getting the same fields on both the tabs(same layouts).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manasa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2011 15:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450677#M1649468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-26T15:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450678#M1649469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Know it won't happen same input fields  .Did you create two subscreens with different input fields. Based on the condition it will dispaly that screen .&lt;/P&gt;&lt;P&gt;In PBO.&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'TAB1'.&lt;/P&gt;&lt;P&gt;active-tab = 'TAB1'.&lt;/P&gt;&lt;P&gt;dynnr = '1001'.&lt;/P&gt;&lt;P&gt;elseif sy-ucomm = 'TAB2'.&lt;/P&gt;&lt;P&gt;active-tab = 'TAB2'.&lt;/P&gt;&lt;P&gt;dynnr ='1001'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on tab selected that subscreen will be activate and call that related subscreen.&lt;/P&gt;&lt;P&gt;Call subscreen sub including sy-cprog dynnr.&lt;/P&gt;&lt;P&gt;In PAI.&lt;/P&gt;&lt;P&gt;call subscreen : sub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : SUB is the subarea name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope with this you can do better.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2011 15:19:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450678#M1649469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-26T15:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450679#M1649470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have implemented the same what you have suggested,but there is one problem.&lt;/P&gt;&lt;P&gt;When I was trying to execute the program :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO.&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'TAB1'.&lt;/P&gt;&lt;P&gt;active-tab = 'TAB1'.&lt;/P&gt;&lt;P&gt;dynnr = '1001'.&lt;/P&gt;&lt;P&gt;elseif sy-ucomm = 'TAB2'.&lt;/P&gt;&lt;P&gt;active-tab = 'TAB2'.&lt;/P&gt;&lt;P&gt;dynnr ='1001'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no sy-ucomm value correspondingly no dynnr value is getting filled and it is going to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice me how to proceed with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manasa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 09:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450679#M1649470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-27T09:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450680#M1649471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Manasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code , you use the wrong syntax in previous code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-UCOMM = 'FTAB1'.       // give fct code of tab1 here&lt;/P&gt;&lt;P&gt;   TAB-activetab = 'FTAB1' .  // here TAB is the name of the tabstrip &lt;/P&gt;&lt;P&gt;  dynnr = '0002'.&lt;/P&gt;&lt;P&gt;ELSEIF SY-UCOMM = 'FTAB2' .&lt;/P&gt;&lt;P&gt;   TAB-activetab = 'FTAB2' .&lt;/P&gt;&lt;P&gt;  dynnr = '0003'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;     TAB-activetab = 'FTAB1'.&lt;/P&gt;&lt;P&gt;     dynnr = '0002'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 09:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450680#M1649471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-27T09:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450681#M1649472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnaks Aditya..it's working now.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 09:35:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450681#M1649472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-27T09:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450682#M1649473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you assigned the value to ok code in main screen Element list tab lets name GV_OK_CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you will click on TAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GV_OK_CODE or SY_UCOMM will have value as TAB1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 09:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450682#M1649473</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2011-12-27T09:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450683#M1649474</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;Everything is working fine.But there is one problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-UCOMM = 'FTAB1'.       // give fct code of tab1 here&lt;/P&gt;&lt;P&gt;   TAB-activetab = 'FTAB1' .  // here TAB is the name of the tabstrip &lt;/P&gt;&lt;P&gt;  dynnr = '0002'.&lt;/P&gt;&lt;P&gt;ELSEIF SY-UCOMM = 'FTAB2' .&lt;/P&gt;&lt;P&gt;   TAB-activetab = 'FTAB2' .&lt;/P&gt;&lt;P&gt;  dynnr = '0003'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;     TAB-activetab = 'FTAB1'.&lt;/P&gt;&lt;P&gt;     dynnr = '0002'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on tab selected that subscreen will be activate and call that related subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Call subscreen sub including sy-cprog dynnr.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In PAI.&lt;/P&gt;&lt;P&gt;*call subscreen : sub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Since only one screen area is called for both the tabs, I am missing the code that is there in another screen(0003) at both PBO and PAI screens.Only 002 screen data is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest me on how to proceed with this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 12:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tabstrip-control/m-p/8450683#M1649474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-27T12:36:17Z</dc:date>
    </item>
  </channel>
</rss>

