‎2008 Apr 04 3:13 PM
Hi all,
I am getting Error message in the form of popup.
i should get the same error message in the status bar as "I" and "W" message types.
how to achieve this.
helpful suggestions will sure be rewarded.
regards
samarendra
‎2008 Apr 04 3:15 PM
hi,
Replace 'E' with 'I' or 'W' to achieve that ...
Regards,
Santosh
‎2008 Apr 04 3:15 PM
Hi,
You can do as below:
message 'Error information' type 'E'.
Thanks,
Sriram Ponna.
‎2008 Apr 04 3:26 PM
Dear sriram,
There is logic given down after the condition further.
when i have given the message as "W" or "I' then it is not displaying the message and it is continuing to the further logic.
where in which there are success messages also.
regards
samarendra
‎2008 Apr 04 3:21 PM
hi check this program..
REPORT ztest message-id zmsd.
data: v_test type i value '10'.
if v_test ne 12.
message s000 with 'this is not matched'.
endif.
or
REPORT ztest message-id zmsd.
data: v_test type i value '10'.
if v_test ne 12.
message i000 with 'this is working'.
endif.
regards,
venkat.
‎2008 Apr 04 3:37 PM
hi ,
if u specify the message type 'E' it will stops u other wise it will continue ....if u give the type as 'I' or 'W'...
regards,
venkat.
‎2008 Apr 04 3:51 PM
In your GUI on top right you see personalization options ...you can reach it through ALT+F12...now in this pop up choose options and further select options tab..now unclick dialog box at error message...
‎2008 Apr 05 4:51 AM
Dear amiya
i have gone through the solution that u have given.
this did not help me because all the message options are not checked.
regards
samarendra
‎2008 Apr 04 3:55 PM
hi,
you can try
message 'Error Message' type 'E' display like 'I' or 'W' whatever you want.
‎2008 Apr 05 4:54 AM
Dear Ravi,
this also has not helped me because it is showing the popup again i.e., warning message is also behaving like error message.
Earlier the warning message or information message used to show in status bar.
now it is showing as popup and stopping further processing logic
regards
samarendra
‎2008 Apr 04 4:00 PM
Hi,
Message types are E - Error
I - Information
W - Warning
S - Success
If you use Error or Success Message types will shows on the status bar
If you use Information or Warning Message types will give popup windows
Error will not allow the futher action untill correct it but information or warning press enter it will allows to continue. You can write different types.
Eg: Message 'Type 1' type 'E'.
Message E0001(Zxxx) with 'Type 2'.
In 2nd Eg: Message class should be there.
Thanks
Ganesh