<?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 Strips in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278044#M783853</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;create a screen in your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call that screen if ur cond is satisfied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in that screen make tabstrip using wizard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subscreen(s) ll be created automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when u click a tab one subscreen(respective) ll be called and in that subscreen u can display whatever u want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jan 2008 05:55:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-15T05:55:14Z</dc:date>
    <item>
      <title>Tab Strips</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278038#M783847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Good day experts,&lt;/P&gt;&lt;P&gt;                          Plz provide the sample programme which has shows the report with tabsrips.&lt;/P&gt;&lt;P&gt;ex: If i click the frist tabstrip, i will get the one departmental report. and if i click the second tabstrip i will get another department report.&lt;/P&gt;&lt;P&gt;&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;raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 13:53:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278038#M783847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T13:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strips</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278039#M783848</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;DEMO_SEL_SCREEN_WITH_TABSTRIP is for tabstrip in sel-screen&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 tabstrip in Dialog pgm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this in se38.........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:00:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278039#M783848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strips</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278040#M783849</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;Here is a easy example with a Tabstrip&lt;/P&gt;&lt;P&gt;[http://www.sapdev.co.uk/reporting/selscr/selscr_tabstrip.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278040#M783849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strips</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278041#M783850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;u can use this code..........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT .........................&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;PARAMETERS: p1 TYPE c LENGTH 10, &lt;/P&gt;&lt;P&gt;            p2 TYPE c LENGTH 10, &lt;/P&gt;&lt;P&gt;            p3 TYPE c LENGTH 10. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 100. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 200 AS SUBSCREEN. &lt;/P&gt;&lt;P&gt;PARAMETERS: q1 TYPE c LENGTH 10, &lt;/P&gt;&lt;P&gt;            q2 TYPE c LENGTH 10, &lt;/P&gt;&lt;P&gt;            q3 TYPE c LENGTH 10. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 200. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF TABBED BLOCK mytab FOR 10 LINES, &lt;/P&gt;&lt;P&gt;                  TAB (20) button1 USER-COMMAND push1 &lt;/P&gt;&lt;P&gt;                                   DEFAULT SCREEN 100, &lt;/P&gt;&lt;P&gt;                  TAB (20) button2 USER-COMMAND push2 &lt;/P&gt;&lt;P&gt;                                   DEFAULT SCREEN 200, &lt;/P&gt;&lt;P&gt;                  END OF BLOCK mytab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION. &lt;/P&gt;&lt;P&gt;  button1 = 'Selection Screen 1'. &lt;/P&gt;&lt;P&gt;  button2 = 'Selection Screen 2'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if push1 = 'X'.&lt;/P&gt;&lt;P&gt;perform..............&lt;/P&gt;&lt;P&gt;elseif&lt;/P&gt;&lt;P&gt;  push2 = 'X'.&lt;/P&gt;&lt;P&gt;perform.........&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards...&lt;/P&gt;&lt;P&gt;sunil gupta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 14:12:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278041#M783850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T14:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strips</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278042#M783851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Good day experts,&lt;/P&gt;&lt;P&gt;Thank you for ur concern. i need tabstrips when progamme was executed then the tabstips will be appear. under the tabstrip, Different types of accounts should be come in the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example : if i click the chick box on the selection-screen,which is for all department accounts. then 5 tabstrips will be shown. if i click frist tabstrip then one department account report should be appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need the above requriment.plz help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 05:34:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278042#M783851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T05:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strips</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278043#M783852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;For any sample code check following t-codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. DWDM&lt;/P&gt;&lt;P&gt;2. ABAPDOCU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points, if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishant Gupta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 05:40:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278043#M783852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T05:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Strips</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278044#M783853</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;create a screen in your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call that screen if ur cond is satisfied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in that screen make tabstrip using wizard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subscreen(s) ll be created automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when u click a tab one subscreen(respective) ll be called and in that subscreen u can display whatever u want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 05:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strips/m-p/3278044#M783853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T05:55:14Z</dc:date>
    </item>
  </channel>
</rss>

