<?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: disabling subscreen fields.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382391#M1042507</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey , I am able to disable the fields...but still getting the message ""Protected tab titles are not supported..." when i select every tab in the tabstrip ..any idea why is it displayed ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Aug 2008 20:13:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-18T20:13:28Z</dc:date>
    <item>
      <title>disabling subscreen fields..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382387#M1042503</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 have a screen with a subscreen that has a tabstrip with 5 tabs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;during one of the operations i need to disable all the fields in all the screen areas of that screen inclduing the subscreen tabstrip fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its not working, in my PBO module i write as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;only the fields of the current screen are disabled. the fields in the tabstrip in subscreen are still in input mode !! what to do ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 17:38:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382387#M1042503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T17:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: disabling subscreen fields..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382388#M1042504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also i get a message in the status bar at runtime that says&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Protected tab titles are not supported...".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 17:40:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382388#M1042504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T17:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: disabling subscreen fields..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382389#M1042505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to do the same logic for the subscreen also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you placed the above logic for main screen . place the same logic for subscreens also.&lt;/P&gt;&lt;P&gt;main screen logic&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process before output.

 call subscreen sub including sy-repid '0200'.
  module status_0100.
*
process after input.
 module user_command_0100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subscreen logic.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process before output.
* MODULE STATUS_0200.
  module status_0100.
*
process after input.
* MODULE USER_COMMAND_0200.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;module status_0100 output.
*  SET PF-STATUS 'xxxxxxxx'.
*  SET TITLEBAR 'xxx'.
loop at screen.
 screen-input = 0.
 modify screen.
endloop.
endmodule.                 " STATUS_0100  OUTPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this work for me, you try it from your end.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 18:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382389#M1042505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T18:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: disabling subscreen fields..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382390#M1042506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SCREEN-ENABLE = 0.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 19:28:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382390#M1042506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T19:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: disabling subscreen fields..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382391#M1042507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey , I am able to disable the fields...but still getting the message ""Protected tab titles are not supported..." when i select every tab in the tabstrip ..any idea why is it displayed ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 20:13:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382391#M1042507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T20:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: disabling subscreen fields..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382392#M1042508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are getting the message because you are trying the make the TABs as input disable field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't change anything for tab control. Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at screen.
if screen-name NE 'TABCONTROL'
 screen-input = 0.
 modify screen.
endif.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 20:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382392#M1042508</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-08-18T20:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: disabling subscreen fields..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382393#M1042509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes Naimesh it helped. thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 20:35:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-subscreen-fields/m-p/4382393#M1042509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T20:35:37Z</dc:date>
    </item>
  </channel>
</rss>

