‎2008 May 19 6:26 AM
Hi,
I have this code below:
IF i_messages3-type = c_error.
MESSAGE i000 WITH i_messages3-message.
EXIT.
ENDIF.
when there is an error message, the whole sentence of the message is not displayed properly,,, it is cut-off... message 000 for the message class is assigned with &.
Instead of displaying "No default value maintained for op. generation for 999 (mat 999000)", it only shows "No default value maintained for op. generation for".
What's the problem with this??
‎2008 May 19 6:47 AM
Hi
the probs is,
there is some limited sentence only avail for message class
i think only 50 Char only u can give...
try for some limited sentence
reward if useful
‎2008 May 19 6:36 AM
HI
try
No default value maintained for op. generation for &1.
andl also check the value of i_messages3-message and c_error at run time.
Regards
Aditya
‎2008 May 19 6:36 AM
Hi,
Try this,
IF i_messages3-type = c_error.
MESSAGE i000 WITH i_messages3-message matnr.
EXIT.
ENDIF.
Cheers.
...Reward if useful.
‎2008 May 19 6:46 AM
Hello,
the value at runtime for i_messages3-message is "No default value maintained for op. generation for 999 (mat 999000)",... but the actual message is only "No default value maintained for op. generation"...
Will the below code work? Since i_messages3-message is type to char with 220 characters...
IF i_messages3 IS NOT INITIAL.
MESSAGE i000 WITH i_messages3-message(220).
EXIT.
ENDIF.
Thanks a lot!
‎2008 May 20 8:09 AM
Hi,
Try this.
Data: g_strg type string.
g_strg = i_messages3-message.
Cheers.
...Reward if useful.
‎2008 May 19 6:47 AM
Hi
the probs is,
there is some limited sentence only avail for message class
i think only 50 Char only u can give...
try for some limited sentence
reward if useful