<?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 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/2783382#M648859</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 created 9000 main screen and tab strip control  on the main screen 9000.&lt;/P&gt;&lt;P&gt;I am controlling the three sub screens on  the main screen( subscreens are 9001,9002,9003).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 9001 subscreen i am adding two text box and a push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is when ever i click the push button ,how to call the subscreen area of 9003  for printing output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2007 07:57:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-18T07:57:01Z</dc:date>
    <item>
      <title>tab strip control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/2783382#M648859</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 created 9000 main screen and tab strip control  on the main screen 9000.&lt;/P&gt;&lt;P&gt;I am controlling the three sub screens on  the main screen( subscreens are 9001,9002,9003).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 9001 subscreen i am adding two text box and a push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is when ever i click the push button ,how to call the subscreen area of 9003  for printing output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 07:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/2783382#M648859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T07:57:01Z</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/2783383#M648860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In your flow logic use a variable to pass the screen number to the CALL SUBSCREEN statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And on the push button just set the variable to 9003.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then automatically when the PBO is called again you will have this new screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 08:00:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/2783383#M648860</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-09-18T08:00:18Z</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/2783384#M648861</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;MODULE USER_COMMAND_9001 INPUT.&lt;/P&gt;&lt;P&gt;case okcode_9001.&lt;/P&gt;&lt;P&gt;when 'PUSH'.&lt;/P&gt;&lt;P&gt;       SCRNO = 9003.&lt;/P&gt;&lt;P&gt;       TABS-ACTIVETAB = 'TAB3'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;flow logic:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt; MODULE STATUS_9001.&lt;/P&gt;&lt;P&gt; CALL SUBSCREEN SUBA INCLUDING 'ZBHTSTRIP' SCRNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_9001.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CALL SUBSCREEN SUBA.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 08:07:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/2783384#M648861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T08:07:53Z</dc:date>
    </item>
  </channel>
</rss>

