<?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/3030281#M716717</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 am not sure how to do it exactly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but you have the radion button&lt;/P&gt;&lt;P&gt;rb1 and rb2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there will be function codes for each tabstrip to be displayed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so dont call the subscreen if rb2  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think this may work for you,....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Oct 2007 05:46:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-29T05:46:50Z</dc:date>
    <item>
      <title>Tab strip control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/3030280#M716716</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;i designed a tabscrip control. i added total 4 tabs...&lt;/P&gt;&lt;P&gt;in 1st tab i have 2 radio buttons.&lt;/P&gt;&lt;P&gt;my requirement is if i choose 1st radio button all tab should be active.&lt;/P&gt;&lt;P&gt;if i choose 2nd radio button all tab should be in active .&lt;/P&gt;&lt;P&gt;how can i do that ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2007 05:40:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/3030280#M716716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-29T05:40:10Z</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/3030281#M716717</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 am not sure how to do it exactly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but you have the radion button&lt;/P&gt;&lt;P&gt;rb1 and rb2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there will be function codes for each tabstrip to be displayed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so dont call the subscreen if rb2  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think this may work for you,....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2007 05:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/3030281#M716717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-29T05:46:50Z</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/3030282#M716718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramprasad,&lt;/P&gt;&lt;P&gt;i suppose, you have to set flag (active/not active) for tabs in PAI Blocks for ok_codes for your buttons and in PBO modify screen-active field for tabs respectively to flag state.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let suppose, you have defined on your dynpro:&lt;/P&gt;&lt;P&gt;tabs: T1 T2 T3 and T4 and button with codes B1 (all enalble) and B1 (disable T2,T3 and T4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Flag&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: gi_flaf type i."1 - all active, 0 - t2,t3,t4 not active.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;2. PAI&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;case sy-ucomm.
when 'B1'.
   gi_flag = 1.
when 'B2'
   gi_flag = 0.
...
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. PBO&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen into wa_screen.
  if wa_screen-name = 'T2' or wa_screen-name = 'T3' or wa_screen-name = 'T4'.
    screen-active = 0.
    modify screen from wa_screen.
  endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2007 13:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-strip-control/m-p/3030282#M716718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-29T13:02:47Z</dc:date>
    </item>
  </channel>
</rss>

