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 without message class

Former Member
0 Likes
6,035

Hi All

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

Amol

7 REPLIES 7
Read only

Former Member
0 Likes
2,906

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

Read only

Former Member
0 Likes
2,906

HI,

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

HERE, G IS DUMMY VALUE.

- SARU

Read only

Former Member
0 Likes
2,906

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

Please reward points if this helps.

Read only

Former Member
0 Likes
2,906

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

Read only

former_member404244
Active Contributor
0 Likes
2,906

Hi Amol,

yes u can post a message.

Message i(000) with 'UR MESSAGE'.

Regards,

Nagaraj

Read only

sergey_korolev
Active Contributor
0 Likes
2,906

As of version 4.7 you can use statement

MESSAGE msg TYPE mtype.

Read only

Former Member
0 Likes
2,906

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.