Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

changing System warnig msg to Error Message

Former Member
0 Likes
2,747

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,869

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

10 REPLIES 10
Read only

Former Member
0 Likes
1,869

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.

Read only

Former Member
0 Likes
1,869

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

.

Read only

Former Member
0 Likes
1,869

Hi Jim,

Refer the following thread:

Regards,

Nitin.

Read only

GauthamV
Active Contributor
0 Likes
1,869

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.

Read only

Former Member
0 Likes
1,869

Hi Jim,

Table for messages : T100.

Regards,

Sravanthi

Read only

Former Member
0 Likes
1,869

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.

Read only

Former Member
0 Likes
1,869

Hi,

one way of converting is

MESSAGE ID 'ED' TYPE 'S' NUMBER '006'

DISPLAY LIKE 'E'

WITH sy-uname.

Hope this helps

Read only

Former Member
0 Likes
1,870

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

Read only

Former Member
0 Likes
1,869

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.

Read only

0 Likes
1,869

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.