‎2006 Sep 04 8:11 AM
Hi All
Is it possible to post a message in ABAP program without a message class (MESSAGE).
Amol
‎2006 Sep 04 8:12 AM
‎2006 Sep 04 8:13 AM
HI,
MESSAGE I000(G) WITH '.......'.
HERE, G IS DUMMY VALUE.
- SARU
‎2006 Sep 04 8:21 AM
U have to define a message class in order to give a message.
Please reward points if this helps.
‎2006 Sep 04 8:24 AM
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
‎2006 Sep 04 8:25 AM
Hi Amol,
yes u can post a message.
Message i(000) with 'UR MESSAGE'.
Regards,
Nagaraj
‎2006 Sep 04 9:05 AM
As of version 4.7 you can use statement
MESSAGE msg TYPE mtype.
‎2006 Sep 04 9:12 AM
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.