‎2009 May 06 4:18 PM
Hi,
I want to display an error message in status bar.
my validation is in PBO and m writing there - message e010 with 'error msg...' but when the respective screen(300) is displayed, its showing an error msg pop up and only option to exit.
I want to be on same screen(300) after error message is displayed. Also the error messge comes in the status bar.
Please suggest.
Thanks.
‎2009 May 06 4:26 PM
Hi,
You can display a status message as an error message by using DISPLAY LIKE dtype (press F1 on message to get syntax details).
This will prevent exit from screen but display the message as error message.
You can also try using AT exit command in CHAIN ENDCHAIN.
‎2009 May 06 4:26 PM
Hi,
You can display a status message as an error message by using DISPLAY LIKE dtype (press F1 on message to get syntax details).
This will prevent exit from screen but display the message as error message.
You can also try using AT exit command in CHAIN ENDCHAIN.
‎2009 May 06 4:28 PM
Use the option "Display LIKE" for the message statement.
e.g Message EXXX display like 'S' with 'message text'.
this should change the only the display of your message i.e. in status bar instead of the pop-up and not the behaviour...
Edited by: Rohit Ganeriwal on May 6, 2009 5:28 PM
‎2009 May 06 4:37 PM
Thanks all,
it works as below:
Message SXXX display like 'E' with 'err text'.
thanks.