2010 Mar 28 10:33 AM
Hi experts,
I have created a message class and used this in my module pool pgm. Then i used the following statement to display error message..
if wa_vbuk-WBSTK = 'C'.
MESSAGE e099.
endif.
The above statement displays the message in a popup window instead of displaying the message in the task bar.
Can anyone tell me the reason for this issue?
Regards,
Shanthi
2010 Mar 29 11:39 AM
Hi Shanthi,
If you write this message in PBO of screen then it will display as pop-up message.
Check the program DEMO_MESSAGES for behavious of messages in different cases.
Regards,
Swarna Munukoti
Hi experts,
I have created a message class and used this in my module pool pgm. Then i used the following statement to display error message..
if wa_vbuk-WBSTK = 'C'.
MESSAGE e099.
endif.
The above statement displays the message in a popup window instead of displaying the message in the task bar.
Can anyone tell me the reason for this issue?
Regards,
Shanthi
2010 Mar 29 11:39 AM
Hi Shanthi,
If you write this message in PBO of screen then it will display as pop-up message.
Check the program DEMO_MESSAGES for behavious of messages in different cases.
Regards,
Swarna Munukoti
2010 Mar 30 8:02 AM
Hi,
Try this..
if sy-subrc is not initial.
message e000(zmdm) with 'Enter valide Request Number!'.
endif.
Regards
Arbind