<?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 regarding tabstrip in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112293#M983200</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have used a tabstip in my program? Only 2 tabs can be visible when we drap and drop the tabstrip..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to create tabs in tabstrip??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i want to use a select option in my screen..how can i create a select option in dialog programming?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jul 2008 16:41:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-03T16:41:29Z</dc:date>
    <item>
      <title>regarding tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112293#M983200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have used a tabstip in my program? Only 2 tabs can be visible when we drap and drop the tabstrip..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to create tabs in tabstrip??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i want to use a select option in my screen..how can i create a select option in dialog programming?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 16:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112293#M983200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T16:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: regarding tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112294#M983201</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;For tabstrips check the demo programs..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABSTRIP_LOCAL&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABSTRIP_SERVER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For selection option in dialog programming..Use the FM COMPLEX_SELECTIONS_DIALOG...Search in SDN with the keyword COMPLEX_SELECTIONS_DIALOG.. you will get a sample code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 16:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112294#M983201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T16:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: regarding tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112295#M983202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Friend before posting any kind of query please try to utilise the search tab , u can findout solution in the forum itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YOu can have a look at the following programs for sample coding .&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABSTRIP_LOCAL Tabstrip Control - Scrolling at SAPgui&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABSTRIP_SERVER Tabstrip Control - Scrolling at Application Server&lt;/P&gt;&lt;P&gt;DEMO_SEL_SCREEN_IN_TABSTRIP Selection Screen as Subscreen in Tabstrip&lt;/P&gt;&lt;P&gt;DEMO_SEL_SCREEN_WITH_TABSTRIP Selection Screen with Tabstrips&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open these programs in se80 to see how the screen design is done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************&lt;/P&gt;&lt;P&gt;1. define a subscreen area in your screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. define required select-option in you program as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1100 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-010.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_MATNR FOR MARA-MATNR.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Load this defined subscreen in you subscreen area define in step 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this using Subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define this scubscreen in top include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of screen 100 as subscreen.&lt;/P&gt;&lt;P&gt;select-option : kunnr for kna1-kunnr.&lt;/P&gt;&lt;P&gt;selection-screen : end of screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in screen 200 where this selection screen appears, create a subscreen area 'SSA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process on output. "200 screen.&lt;/P&gt;&lt;P&gt;call subscreen SSA including sy-repid '100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other modules &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process on input. "200 screen.&lt;/P&gt;&lt;P&gt;call subscreen SSA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other modules &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------" /&gt;&lt;P&gt;now you can access kunnr like other screen 200 objects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 16:44:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112295#M983202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T16:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: regarding tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112296#M983203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Vansri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    We cannot create select-options in dialog programming... But in substitution to that you can go for RANGES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the declaration would be in this way....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES:
  mara.

RANGES matnr FOR mara-matnr.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now matnr is like internal table with header line....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these ranges have also the same structure like SELECT-OPTIONS... like SIGN, OPTION,LOW and HIGH...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fill these values and carry on your program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would solve your issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Narin Nandivada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 16:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112296#M983203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T16:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: regarding tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112297#M983204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can have a select-options in a subscreen of dialog program ... there are examples on SDN already with this in e.g. [module pool : design a screen with select-options with ranges |&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5526390"&gt;&lt;/A&gt;; and others... basically you define you select-options as normal but wrap something like "SELECTION-SCREEN BEGIN OF SCREEN &lt;EM&gt;nnnn&lt;/EM&gt; AS SUBSCREEN. / SELECTION-SCREEN END OF SCREEN &lt;EM&gt;nnnn&lt;/EM&gt;." around it, then refer to screen number &lt;EM&gt;nnnn&lt;/EM&gt; as your subscreen in the dynpro screen flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively you can hand-craft the same functionality, as we did before subscreens... after all when you generate a report with "select-options" in it, SAP builts a dynpro (typically 1000) from the parameters you provide it with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 05:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112297#M983204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T05:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: regarding tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112298#M983205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 08:15:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112298#M983205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T08:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: regarding tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112299#M983206</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;You can increase your tabs from two( default is 2 tabs).&lt;/P&gt;&lt;P&gt;for that, double click on tabstrip control &amp;gt;&amp;gt;&amp;gt; below in attributes,  changes the number of tab title from 2 to any number you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for select-options u can use 'Ranges'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 10:42:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabstrip/m-p/4112299#M983206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T10:42:32Z</dc:date>
    </item>
  </channel>
</rss>

