Application Development 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: 

Message without message class

Former Member
0 Kudos

Hi All

Is it possible to post a message in ABAP program without a message class (MESSAGE).

Amol

7 REPLIES 7

Former Member
0 Kudos

<b>message i000(000) with 'message u required'.</b>

Former Member
0 Kudos

HI,

MESSAGE I000(G) WITH '.......'.

HERE, G IS DUMMY VALUE.

- SARU

Former Member
0 Kudos

U have to define a message class in order to give a message.

Please reward points if this helps.

Former Member
0 Kudos

you can give any name, MESSAGE I000(TEMP)...

IF that message class is not available, you will get these message no and class name ALSO along with the MESSAGE in the output.

Regards

Srikanth

former_member404244
Active Contributor
0 Kudos

Hi Amol,

yes u can post a message.

Message i(000) with 'UR MESSAGE'.

Regards,

Nagaraj

sergey_korolev
Active Contributor
0 Kudos

As of version 4.7 you can use statement

MESSAGE msg TYPE mtype.

Former Member
0 Kudos

Hi amol,

1. simple

2. MESSAGE 'this is message' type 'I'.

where I can be E,W,S etc.

(It should be in Quotes)

(or can be a variable also)

regards,

amit m.