‎2009 Feb 19 12:10 PM
Hi,
how to change ME393 " No shipping data could be found for item & " system message from 'W' warning to 'E' error.
i have checked using OLME,OMT4 tcode but not finding this message number.
also i checked SPRO IMG.
but could not found it ?
what is right way to Find ME 393 system message
This message is in ME21N.
‎2009 Feb 19 1:12 PM
FOLLOW THIS :
SPRO>SAP REFERENCE IMG>MATERIAL MANAGEMENT>PURCHASING>Environment data-->SYSTEM MESSAGE
Change the message type.
Hope this resolves the issue.
SPRO>SAP REFERENCE IMG>MATERIAL MANAGEMENT>PURCHASING>MESSAGE.
Check under this catagory also.
Regards,
Gurpreet
Edited by: Gurpreet Singh on Feb 19, 2009 2:34 PM
‎2009 Feb 19 12:27 PM
You can check the messages in SE91 by giving the ME and 393. As you said we cannot change the message from W to E, we can use the message in both the ways. If the standard program call the message in E format then nothing can be done.
‎2009 Feb 19 12:29 PM
Hi,
ME is the Message class
393 is message id or message number
You can get if from :
tcode-->SE91 and enter ME
Search for Message id:393
Program for ME21n is SAPLMEGUI.
Search for the message id in the program.
Or debug the program Using '/H' in command box.
Regards,
Gurpreet
.
‎2009 Feb 19 12:30 PM
‎2009 Feb 19 12:30 PM
you can check the message in SE91 transaction.
it is used in below program .
Program - SAPMM06E
include - MM06EFPV
include - MM06EFPV_PTV_FUELLEN_RETOURE_L
In the last include i have mentioned you can find those messages.
‎2009 Feb 19 12:33 PM
‎2009 Feb 19 12:51 PM
Hi,
I don't want to change it using SE38 .
this is system message . I have seen one screen like table maintance which just replace W with E for error message.
Any other clue.
‎2009 Feb 19 12:56 PM
Hi,
one way of converting is
MESSAGE ID 'ED' TYPE 'S' NUMBER '006'
DISPLAY LIKE 'E'
WITH sy-uname.
Hope this helps
‎2009 Feb 19 1:12 PM
FOLLOW THIS :
SPRO>SAP REFERENCE IMG>MATERIAL MANAGEMENT>PURCHASING>Environment data-->SYSTEM MESSAGE
Change the message type.
Hope this resolves the issue.
SPRO>SAP REFERENCE IMG>MATERIAL MANAGEMENT>PURCHASING>MESSAGE.
Check under this catagory also.
Regards,
Gurpreet
Edited by: Gurpreet Singh on Feb 19, 2009 2:34 PM
‎2009 Feb 19 1:17 PM
hi Gurpreet,
you are on right path , which i need, i checked it..through SPRO but this message Number is not there its showing 391 only not 393.. in ME class.
‎2009 Feb 20 5:10 AM
Hi Jim,
if you want to display a warning message as an error message is quite simple.
when you write your warming message just add
message Wxxx display like 'E'.
This should convert the warning message and display it as an error message.