‎2006 Jul 26 4:27 PM
Hello,
In the program that I am writing now, I intend to have all the error message appear in a pop-up on the screen with the green tick. However, if I do, for example,
MESSAGE e161(q6) WITH wa_defn-fieldname 'System'.The only thing that appearred was the message at the bottom of the scrren (status bar) and the message disappeared within seconds.
May I know how can I get the effect I want in ABAP, I am running on WAS 6.40 with ABAP R/3?
Thanks!
Regards,
Anyi
‎2006 Jul 26 4:33 PM
hi anyi,
use the fm POPUP_DISPLAY_MESSAGE
hope this helps,
do reward if it helps,
priya.
‎2006 Jul 26 4:33 PM
hi anyi,
use the fm POPUP_DISPLAY_MESSAGE
hope this helps,
do reward if it helps,
priya.
‎2006 Jul 26 4:42 PM
‎2006 Jul 26 5:08 PM
hi Zhu,
Use FM <b>POPUP_DISPLAY_MESSAGE</b>
call function 'POPUP_DISPLAY_MESSAGE'
exporting
msgid = 'RP'
msgty = 'S'
msgno = '016'
msgv1 = 'TEST'
msgv2 = 'MESSAGE'.