<?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 Validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004348#M1495767</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Managed to solve this by useing LEAVE SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jun 2010 07:09:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-03T07:09:37Z</dc:date>
    <item>
      <title>Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004332#M1495751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello out there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to do some validation within a customer exit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.         IF wa_length &amp;lt;&amp;gt; 11.&lt;/P&gt;&lt;P&gt;                     MESSAGE e001(zpa0105).&lt;/P&gt;&lt;P&gt;               ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if the length of a screen field is not equal to 11 characters the error message is displayed. Everying is&lt;/P&gt;&lt;P&gt;working fine except that I would expect the cursor to remain within the screen field containing the error.&lt;/P&gt;&lt;P&gt;What actually happens is that the screen field changes so that no input is allowed and the cursor is &lt;/P&gt;&lt;P&gt;placed on the first field at the top of the screen which is also highlighted in red.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 10:33:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004332#M1495751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T10:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004333#M1495752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming that you are writing your code in PAI (Process after input), you may write it in a separate module under PAI as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process after input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD &amp;lt;your screen fieldname&amp;gt; MODULE &amp;lt;module name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside the module,  put the code for checking the lenth and displaying the message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Jayesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 10:49:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004333#M1495752</guid>
      <dc:creator>jayesh_gupta</dc:creator>
      <dc:date>2010-05-26T10:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004334#M1495753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET CURSOR FIELD &amp;lt;ur field name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to set the cursor on the field you want to edit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 10:56:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004334#M1495753</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2010-05-26T10:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004335#M1495754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET CURSOR FIELD will not work after displaying an error message. The display of error message aborts further processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jayesh Gupta on May 26, 2010 12:59 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 10:59:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004335#M1495754</guid>
      <dc:creator>jayesh_gupta</dc:creator>
      <dc:date>2010-05-26T10:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004336#M1495755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Jayesh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will have a go with your answer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 11:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004336#M1495755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T11:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004337#M1495756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Jayesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 11:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004337#M1495756</guid>
      <dc:creator>jayesh_gupta</dc:creator>
      <dc:date>2010-05-26T11:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004338#M1495757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jayesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't get this to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is in a function exit that I am trying to get this working&lt;/P&gt;&lt;P&gt;i.e. EXIT_SAPFP50M_002 and then the code I am entering is in the INCLUDE ZXPADU02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 11:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004338#M1495757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T11:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004339#M1495758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think using&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MESSAGE ... TYPE 'W'. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;will first raise the warning but eventually (after ENTER key pressed) will allow you correct the entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also this might be an issue of some other (previous) field not receive the correct value. So when you invalidate the entry, the PAI starts again with checking all the fields listes in &lt;EM&gt;PROCESS AFTER INPUT&lt;/EM&gt; in screen flow logic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first invalied met will stop you from further input on previous field. To avoid this you can use [CHAIN logic|http://help.sap.com/saphelp_bw/helpdata/en/9f/dbabbd35c111d1829f0000e829fbfe/frameset.htm] to keep all fields input enalbed once one of them invalidates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Please reopen the thread if not solved, otherwise people will most likely skip this thread seeing it as answered. Once you get the solution (or could not find one) then close it again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 11:57:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004339#M1495758</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-05-26T11:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004340#M1495759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 12:20:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004340#M1495759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T12:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004341#M1495760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Misunderstanding of question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 12:36:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004341#M1495760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T12:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004342#M1495761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jayesh, Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know what you mean now. But the FIELD command can only be used within&lt;/P&gt;&lt;P&gt;the FLOW-LOGIC of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I  can't add/chnage this because it is SAP standard, that is why I have to use&lt;/P&gt;&lt;P&gt;the customer function exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any  other ideas?  Or can this simply not be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 12:39:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004342#M1495761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T12:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004343#M1495762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andy, your problem is resolved:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I examined function exit EXIT_SAPFP50M_002. This function module has an exception as ERROR_OCCURED(see function module in SE37). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, there is an emplemented example for this exit in Include LXPADF01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to this example, you need to raise the above exception with your message. I am copying the example include source code here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* data declaration in ZXPADTOP     "Global Data
  DATA: I0001 LIKE P0001,
        I0008 LIKE P0008.
* OR, if it is an infotype view:
  DATA: BEGIN OF I0008.
          INCLUDE P0008.
          INCLUDE PS0230.  "additional fields
  DATA: END OF I0008.

* default values in ZXPADU01

  CASE INNNN-INFTY.
    WHEN '0001'.
      MOVE INNNN TO I0001.
      MOVE 'XX'  TO I0001-VDSK1.
      MOVE I0001 TO INNNN.
    WHEN '0008'.
      MOVE INNNN TO I0008.
      MOVE 'YY'  TO I0008-TRFGR.
      MOVE I0008 TO INNNN.
  ENDCASE.


* additional checks in ZXPADU02
* example: wage type '1234' is not allowed for employee subgroup 'DE'
  CASE INNNN-INFTY.
    WHEN '0008'.
      MOVE INNNN TO I0008.
      IF P0008-LGA01 EQ '1234' AND IPSYST-PERSK EQ 'DE'.
        MESSAGE S016(RP) WITH 'wage type' I0008-LGA01 'not allowed'
                         RAISING ERROR_OCCURD.
*       S-Message for infotype 0008 (see psyst-msgtp).
      ENDIF.
  ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the second CASE statement which is rasing a message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Jayesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jayesh Gupta on May 26, 2010 2:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 12:56:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004343#M1495762</guid>
      <dc:creator>jayesh_gupta</dc:creator>
      <dc:date>2010-05-26T12:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004344#M1495763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just checked that too. For me, simple &lt;EM&gt;warning&lt;/EM&gt; message works fine (as described before)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MESSAGE ... TYPE 'W'. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;First the screen field (in PA30) is input disabled but once you press the ENTER you can correct your entry in that invalidated field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 13:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004344#M1495763</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-05-26T13:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004345#M1495764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In case of warning messages, if you repeatedly press ENTER, the incorrect input values are accepted. Hence warning message should be avoided.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jayesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 13:05:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004345#M1495764</guid>
      <dc:creator>jayesh_gupta</dc:creator>
      <dc:date>2010-05-26T13:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004346#M1495765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jayesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciiate your time in answering my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have now chanaged the include ZXPADU02 within the function module exit EXIT_SAPFP50M_002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code now says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WHEN '0105'.    " DV1K928778&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*----------------------------------------------------------------------*
* Put Contents of screen fields to i0105
*----------------------------------------------------------------------*
*
    CALL METHOD cl_hr_pnnnn_type_cast=&amp;gt;prelp_to_pnnnn
      EXPORTING
        prelp = innnn
      IMPORTING
        pnnnn = innnn.

* Check the format of the work telephone numbers
*
*   Work Tel. No - Has to be 11 numeric characters
*   Work Mob. No - Has to be 8  numeric characters
*
*
    IF innnn-subty = '0020'    " Work Tel. No.
    OR innnn-subty = 'CELL'.   " Work Mob. No.

*     Check Work Tel. No.
      IF innnn-subty = '0020'.
        wa_length = STRLEN( i0105-usrid_long ).

        IF wa_length &amp;lt;&amp;gt; 11.
          MESSAGE e001(zpa0105) RAISING error_occured.
        ENDIF.
      ENDIF.


    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still the same thing happens. The cursor is moved to the top of the screen and the&lt;/P&gt;&lt;P&gt;telephone number does not allow any input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 13:20:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004346#M1495765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-26T13:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004347#M1495766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andy, you have to use MESSAGE S001(zpa0105) RAISING error_occured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Presently you are using MESSAGE e001(zpa0105) RAISING error_occured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Jayesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 13:45:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004347#M1495766</guid>
      <dc:creator>jayesh_gupta</dc:creator>
      <dc:date>2010-05-26T13:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004348#M1495767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Managed to solve this by useing LEAVE SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jun 2010 07:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-validation/m-p/7004348#M1495767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-03T07:09:37Z</dc:date>
    </item>
  </channel>
</rss>

