<?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/4833286#M1130767</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have written the above code in the Function modules given for the screen, i also tried by writing in the PBO of the screen but still it is not gettin updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Nov 2008 06:32:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-21T06:32:08Z</dc:date>
    <item>
      <title>Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833282#M1130763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have iomplemented a screen exit to iw21 tcode, it is working fine but when i go for iw23( display) it is still in change mode, i have tried with loop at screen but its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;  V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 08:27:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833282#M1130763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T08:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833283#M1130764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Any Inputs ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833283#M1130764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T06:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833284#M1130765</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;Copy the same screen and input disable all the filelds.&lt;/P&gt;&lt;P&gt;And try like this, might be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Case sy-tcode.

When 'Tcode for display'.
sy-dynnr = copied screen number.
Endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833284#M1130765</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2008-11-21T06:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833285#M1130766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, this is what i have written in the Function module of screen exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: tcode like sy-tcode.&lt;/P&gt;&lt;P&gt;TCODE = SY-TCODE.&lt;/P&gt;&lt;P&gt;IF save_ok =  '10\TAB19'.&lt;/P&gt;&lt;P&gt; IF TCODE = 'IW23'.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'RIQS0_10-TAB21'.&lt;/P&gt;&lt;P&gt;      IF screen-group4 = 'TAB'.&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;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as it is comming to Loop at Screen it is getting off from the exit, i also tried by removing the loop at screen, then it is entering the loop and updating the screen struture for that screen but still the result is same .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:30:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833285#M1130766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T06:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833286#M1130767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have written the above code in the Function modules given for the screen, i also tried by writing in the PBO of the screen but still it is not gettin updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:32:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833286#M1130767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T06:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833287#M1130768</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;PRE&gt;&lt;CODE&gt;Write the above case statements in the PAI include.


case sy-tcode.

When 'create'.
ur code.
when 'Change Tcode'
ur code.
when ' Display'.
" here you copy the screen (with different screen number) of the change tcode.
Set the screen number 
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; REgards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit/m-p/4833287#M1130768</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2008-11-21T06:37:51Z</dc:date>
    </item>
  </channel>
</rss>

