<?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: Tab Strip Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991259#M74245</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;hi !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm new one to this group.&lt;/P&gt;&lt;P&gt; i have problem with search help with tabstrip control. i have three tabs in search help parameter tab .know i'm fix used one tab as default . how is it possible and where it possible. or it's possible or not reply me .&lt;/P&gt;&lt;P&gt;bye &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Aug 2006 08:40:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-15T08:40:24Z</dc:date>
    <item>
      <title>Tab Strip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991256#M74242</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;A tab strip control with 3 Tab pages is placed on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With certain Fcode(i.e. FC1) gets invoked, only 2 tab pages should be displayed and for other Fcode (i.e. FC2)&lt;/P&gt;&lt;P&gt;3 tab pages should be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This functionality is available in MIGO transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to debug the code of MIGO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I achive such facility?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Agrim Darji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 05:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991256#M74242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T05:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991257#M74243</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;Just have a look into this document i have submitted related to tab strip, u can set the focus on the tab which u want to show default.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap&lt;/A&gt; code samples/alv grid/abap code sample for tab strip in alv.pdf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u have any clarifications get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 06:09:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991257#M74243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T06:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991258#M74244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Agrim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is indeed a very common requirement. Besides MIGO, you will see it in other transactions and programs in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function code for the pushbuttion of the tab has to be deactivated in the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, look at the program DEMO_DYNPRO_TABSTRIP_SERVER. Copy this to a Z program and add the following in your code - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE status_0100 OUTPUT.
  SET PF-STATUS 'SCREEN_100'.
&amp;lt;b&amp;gt;  if number = '0120'.
    loop at screen.
      if screen-name = 'PUSH3'.
        SCREEN-ACTIVE = 0.
        MODIFY SCREEN.
      ENDIF.
    endloop.
  endif.&amp;lt;/b&amp;gt;
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if it helped. If you have any further problem, please do get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 06:09:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991258#M74244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T06:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991259#M74245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;hi !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm new one to this group.&lt;/P&gt;&lt;P&gt; i have problem with search help with tabstrip control. i have three tabs in search help parameter tab .know i'm fix used one tab as default . how is it possible and where it possible. or it's possible or not reply me .&lt;/P&gt;&lt;P&gt;bye &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Aug 2006 08:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/991259#M74245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-15T08:40:24Z</dc:date>
    </item>
  </channel>
</rss>

