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

Message Display

Former Member
0 Likes
582

Hi All,

I have the following code for the message.

If sy-subrc EQ 0.

MESSAGE ID '00' TYPE 'I' NUMBER '997' WITH 'Credit Memo' salesdocument 'has been created'.

ENDIF.

It is giving me message as following,

I:00:997 Credit Memo 30023288 has been created

is there a way for me to supress the 'I:00:997' part. So that i can just see the message only.

We have ECC6.0 system.

Thanks,

Veni.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
555

There is no message 997 thats why it is coming with that.

use 398 maybe

so

MESSAGE ID '00' TYPE 'I' NUMBER '398' WITH 'Credit Memo' salesdocument 'has been created'.

3 REPLIES 3
Read only

Former Member
0 Likes
556

There is no message 997 thats why it is coming with that.

use 398 maybe

so

MESSAGE ID '00' TYPE 'I' NUMBER '398' WITH 'Credit Memo' salesdocument 'has been created'.

Read only

0 Likes
555

Thank you MxG. Now it is displaying properly.

Regards,

Veni.

Read only

0 Likes
555

good, out of curiousity why did you use 997 when it didnt exist?