<?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 Modify Screen, Screen Required in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420911#M1409358</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 m trying to modify input zfield added in a standard tcode. This zfield need to be kept mandatory. The problem is that if i give value to the mandatory field BACK,LEAVE, CANCEL button in status bar works properly, if i dont give value , im unable to go BACK or LEAVE or CANCEL the screen. Though i have written code to LEAVE PROGRAM, it doesnt work on screen 111??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Nov 2009 13:47:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-18T13:47:38Z</dc:date>
    <item>
      <title>Modify Screen, Screen Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420911#M1409358</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 m trying to modify input zfield added in a standard tcode. This zfield need to be kept mandatory. The problem is that if i give value to the mandatory field BACK,LEAVE, CANCEL button in status bar works properly, if i dont give value , im unable to go BACK or LEAVE or CANCEL the screen. Though i have written code to LEAVE PROGRAM, it doesnt work on screen 111??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420911#M1409358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T13:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Screen, Screen Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420912#M1409359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To omit all mandatory checks and leave the program, you must first assign &lt;EM&gt;type function&lt;/EM&gt; = &lt;STRONG&gt;E&lt;/STRONG&gt; to given button i.e. EXIT, then create module in PAI&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE my_module AT EXIT-COMMAND.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then in ABAP handle it as normal PAI module exiting your application&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE my_module INPUT.
  LEAVE PROGRAM.
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 13:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420912#M1409359</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-11-18T13:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Screen, Screen Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420913#M1409360</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;   This is standard tcode and i have assigned E to BACK, LEAVE and CANCEL. If i fill the field with value, i can EXIT sucessfully. If i dont fill value and try to leave from screen BACK, LEAVE and CANCEL doesnt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 14:11:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420913#M1409360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T14:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Screen, Screen Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420914#M1409361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As marcin said,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE my_module AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add the above statement as the first statement in your PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think so you are using sy-ucomm for your function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 14:51:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420914#M1409361</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-11-18T14:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Screen, Screen Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420915#M1409362</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;&lt;/P&gt;&lt;P&gt;  in program SAPLMEGUI , screen 14 	line no 18	CALL SUBSCREEN SUB0. -- This statement doesnt get into exit SAPLXM06, screen 111 when the mandatory zfield is not entered with value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it triggers the exit, when i fill the zfield with value, enabling BACK,LEAVE, CANCEL to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written LEAVE PROGRAM based on sy-ucomm value in module input at exit-command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still not working!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 15:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420915#M1409362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T15:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Screen, Screen Required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420916#M1409363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Uma, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put a check on sy-ucomm and execute you code only when it is not 'E'. else leave program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Harsh Bhalla on Nov 18, 2009 10:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 17:15:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen-screen-required/m-p/6420916#M1409363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T17:15:11Z</dc:date>
    </item>
  </channel>
</rss>

