‎2014 Mar 13 10:56 AM
Hi All,
I am having an error in Message class 00.
The message number is 058.
The issue is I want to convert this error message to the warning message...
Is there any solution for this?
‎2014 Mar 13 11:11 AM
Hi,
You can try the below code
message e058(msgclass) display like 'W'.
‎2014 Mar 13 11:13 AM
‎2014 Mar 13 11:17 AM
Hi Yash,
Where are you changing this message? Is it in any standard transaction or custome report?
You can use the below syntax.
MESSAGE w058(00).
Regards,
Pravin
‎2014 Mar 13 1:50 PM
‎2014 Mar 13 2:54 PM
In some areas such messages are configurable, but for message class 00 I have no such hopes. The where used list shows 330+ references...I guess you are out of luck, standard is standard.
Maybe raise an OSS message and see what they say.
Thomas
‎2014 Mar 13 3:58 PM
Hey Yash,
You can Implement the below code to make your scenario work.
DATA: mid TYPE sy-msgid VALUE '00',
mtype TYPE sy-msgty VALUE 'I',
num TYPE sy-msgno VALUE '058'.
MESSAGE ID mid TYPE mtype NUMBER num DISPLAY LIKE 'W'.
Thanks,
Kishor.
‎2014 Mar 13 4:45 PM
Thank you guys.
But how to implement this? because this is in standard?
‎2014 Mar 13 6:04 PM
I really didn't understand your question. You wants to implement this code in the standard screen? explain your requirement briefly.
Thanks,
Kishor.
‎2014 Mar 13 7:46 PM
If this is standard programing, you should change with enhancement explicit section.
In other hand you must get SSCR KEY to change de standard program.
‎2014 Mar 13 7:51 PM
I did not suggest a modification of the standard, because this can lead to unforeseeable results. An error message usually stops further processing, by changing it to a warning the process (whatever it is, you did not say anything about it) might continue with inconsistent data.
Thomas
‎2014 Mar 13 6:26 PM
Use like this. you can change 1 2 3 varibles with value whatever you want to display
MESSAGE ID '00' TYPE 'E' NUMBER '058' WITH '1' '2' '3' DISPLAY LIKE 'W'.