‎2008 Sep 18 9:19 PM
Hello!
What is the difference between these two statements?
MESSAGE lv_errmsg TYPE 'E'
MESSAGE lv_errmsg TYPE 'E' DISPLAY LIKE 'I'.
‎2008 Sep 18 9:26 PM
MESSAGE lv_errmsg TYPE 'E' DISPLAY LIKE 'I'.
will generate the Information type of message. This will not display the Red message in the status bar. It will give the Popup.
MESSAGE lv_errmsg TYPE 'E' .
Will generate the normal error message.
But, both message will not execute any statement after that.
Regards,
Naimesh Patel
‎2008 Sep 18 9:26 PM
MESSAGE lv_errmsg TYPE 'E' DISPLAY LIKE 'I'.
will generate the Information type of message. This will not display the Red message in the status bar. It will give the Popup.
MESSAGE lv_errmsg TYPE 'E' .
Will generate the normal error message.
But, both message will not execute any statement after that.
Regards,
Naimesh Patel
‎2008 Sep 18 9:33 PM