<?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: screen exit.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882968#M933061</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the In the Include of your PBO module you can write following code.......&lt;/P&gt;&lt;P&gt;give group name to your screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF SY-TCODE EQ 'KO03'.
LOOP AT SCREEN. 
IF SCREEN-GROUP1 = 'GRP'. 
SCREEN-INPUT = 0. 
MODIFY SCREEN. 
ENDIF. 
ENDLOOP. 
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2008 06:19:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-31T06:19:08Z</dc:date>
    <item>
      <title>screen exit....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882963#M933056</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 am working on screen exit. I am using the tn. code KO01, KO02, KO03. I have added three new fields on the subscreen. I want the fields which i have added to be input disabled when i go to the transaction code KO03. How should i achieve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will reward if the reply is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 14:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882963#M933056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T14:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: screen exit....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882964#M933057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;put the below code in some Module at PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If sy-tcode = '&amp;lt;TCODE&amp;gt;'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name  = &amp;lt;FIELDNAME&amp;gt;.&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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if you given some group name to the fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you can also code like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If sy-tcode = '&amp;lt;TCODE&amp;gt;'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name  = &amp;lt;FIELDNAME&amp;gt; and screen-group1 = &amp;lt;GROUPNAME&amp;gt;.&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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do this, it will surely work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 08:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882964#M933057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T08:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: screen exit....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882965#M933058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Will reward if the reply is helpful.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;You didn't keep your word, did you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 15:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882965#M933058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T15:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: screen exit....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882966#M933059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;do one thing ........you go to se80 .....give the program name of the screen which u added .......there go to flow logic of your screen(custom screen)..... in pbo create a module ...you double click it will ask you for creation of new include create it and write the code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = &amp;lt;&amp;gt;&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 05:20:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882966#M933059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T05:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: screen exit....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882967#M933060</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;Check the below links.&lt;/P&gt;&lt;P&gt;[&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="984808"&gt;&lt;/A&gt;|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="984808"&gt;&lt;/A&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Boobalan S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 05:54:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882967#M933060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T05:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: screen exit....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882968#M933061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the In the Include of your PBO module you can write following code.......&lt;/P&gt;&lt;P&gt;give group name to your screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF SY-TCODE EQ 'KO03'.
LOOP AT SCREEN. 
IF SCREEN-GROUP1 = 'GRP'. 
SCREEN-INPUT = 0. 
MODIFY SCREEN. 
ENDIF. 
ENDLOOP. 
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 06:19:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/3882968#M933061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T06:19:08Z</dc:date>
    </item>
  </channel>
</rss>

