<?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: Problem in Tabstrip Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798118#M342816</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I figured you can use sy-pfkey to know if you are in display or change mode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Sep 2008 21:39:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-26T21:39:51Z</dc:date>
    <item>
      <title>Problem in Tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798115#M342813</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;i had created an Custom Infotype. &lt;/P&gt;&lt;P&gt;In that infotype i had created Tabstrip control with 2tabs.&lt;/P&gt;&lt;P&gt;Each Tab contain 4 fields.&lt;/P&gt;&lt;P&gt;When creating( F5) a record in transaction PA30, it allowing me create a record and the record is available in Data base table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. My doubt is, when Display the Record through F7 and Change mode (F6), Still the fields are in editable mode. But not in Display Mode ( Editable Mode ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to Disable the Fields for this Tab Strip Control. I have not used any Group Field for this. Can we need to Main tain anything.&lt;/P&gt;&lt;P&gt;But SAVE option is automatically disabled.Iam not able to SAVE when i press F7 but in Editable is the My Problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. And one more query is, when press F5 or F6 or F7 it is show the following message at End screen,i.e.&lt;/P&gt;&lt;P&gt;Protected tab titles are not supported (tab MENU_TABSTRIP title PUSH1) . But MENU_TABSTRIP is My Tab Strip control text Name and PUSH1 is my Tab1 , Function code.&lt;/P&gt;&lt;P&gt;How to remove this message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;N.L.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Dec 2006 11:46:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798115#M342813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-23T11:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798116#M342814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the first problem,&lt;/P&gt;&lt;P&gt;You can use field to be grouped up in screen painter.&lt;/P&gt;&lt;P&gt;Give the same name in the group field for the fields you want to make disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in your program,&lt;/P&gt;&lt;P&gt;You can use screen property &lt;/P&gt;&lt;P&gt;screen-input  = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code for that is:    " Write it in PBO event on some condition or use &lt;/P&gt;&lt;P&gt;if sy-tcode = 'PA30'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt; if screen-group1 = 'GRP'.&lt;/P&gt;&lt;P&gt;   screen-input = '0'.&lt;/P&gt;&lt;P&gt;   modify screen.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Second Problem &lt;/P&gt;&lt;P&gt;The problem seems to be with GUI Status, &lt;/P&gt;&lt;P&gt;So try exploring it more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Smiles from Miles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amandeep Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Dec 2006 23:08:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798116#M342814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-23T23:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798117#M342815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The answer for the second question is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can go to the layout and change the groups of the tabs to 01F. &lt;/P&gt;&lt;P&gt;That should get rid of the protected tables message. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you ever figure out how to hide the fields when in display mode? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem I am having is when I get to the infotype I dont know if I am in display mode or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 20:47:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798117#M342815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T20:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798118#M342816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I figured you can use sy-pfkey to know if you are in display or change mode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2008 21:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798118#M342816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-26T21:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Tabstrip Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798119#M342817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have faced the same problem and solved in simple manner///&lt;/P&gt;&lt;P&gt;thought of updating this thread which will help others &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO, PAI of sub-screens please add the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pbo.&lt;/P&gt;&lt;P&gt;**inserted new**&lt;/P&gt;&lt;P&gt;module modify_subscreen.(this will be called in standard program mppersoo).&lt;/P&gt;&lt;P&gt;*End of new insertion**&lt;/P&gt;&lt;P&gt;pai.&lt;/P&gt;&lt;P&gt;**inserted new**&lt;/P&gt;&lt;P&gt;chain.&lt;/P&gt;&lt;P&gt;module input_status_subscreen on chain-request.&lt;/P&gt;&lt;P&gt;endchain.&lt;/P&gt;&lt;P&gt;**end of new insertion**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just add above 2 module statements this will be fixed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Mar 2014 18:48:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tabstrip-control/m-p/1798119#M342817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-16T18:48:41Z</dc:date>
    </item>
  </channel>
</rss>

