‎2008 Nov 04 4:20 PM
HI ALL ,
I HAD WRITEN CODE LIKE THIS
MESSAGE E001 WITH WA_FINAL-MATNR.
THE FIELD WA_FINAL-MATNR VALUE IS NOT DISPLAYING.
CAN ANY PLZ GUIDE PROPERLY
THANKS
‎2008 Nov 04 7:13 PM
1. SE91, create a message using & as placeholder. No message class? Create one either.
2. MESSAGE tnnn(id) WITH v1 v2 v3 v4.
t is message type(i, s, w, e, a, x);
nnn is message number
id is message class
v1 .. v4 are four fields to replace the placeholder in the message text
3. Or, you can use alternative syntax, MESSAGE ID id TYPE t Number nnn WITH v1 v2 v3 v4
‎2008 Nov 04 4:24 PM
first start writing in lowercase letters
second use F1 on message command in SE38
‎2008 Nov 04 4:26 PM
‎2008 Nov 04 4:29 PM
‎2008 Nov 04 7:05 PM
Hi
You need to mention the message class if you have not specified your message class in the report.
Pass the value like this.
MESSAGE I001(ZZ) WITH MARA-MATNR.
Thanks,
Chidanand
‎2008 Nov 04 7:13 PM
1. SE91, create a message using & as placeholder. No message class? Create one either.
2. MESSAGE tnnn(id) WITH v1 v2 v3 v4.
t is message type(i, s, w, e, a, x);
nnn is message number
id is message class
v1 .. v4 are four fields to replace the placeholder in the message text
3. Or, you can use alternative syntax, MESSAGE ID id TYPE t Number nnn WITH v1 v2 v3 v4
‎2008 Nov 04 7:14 PM
What is the message class, and how is message 001 defined? If it doesn't have & or &1 then it won't work. Alternatively, wa_final-matnr is empty
matt