‎2009 Nov 17 10:30 AM
Hi experts,
is it possible to define a long text of a message dynamically? Or is it only possible to define them in SE91?
e.g. I get a string from a method and want to show a message with that string as long text.
Regards,
Tobi
‎2009 Nov 17 10:35 AM
Check this!
DATA: v_str type string.
v_str = 'long text'.
MESSAGE I000(ZMS) WITH v_str.
‎2009 Nov 17 11:55 AM
Hi Mahesh,
thanks for your answer. Forgot to mention, that I got an exception class and the with parameter doesn't work here.
Class derived from CX_STATIC_CHECK.
MESSAGE mr_exception TYPE 'S' DISPLAY LIKE 'E' .Regards,
Tobi
Edited by: Tobias Bollmann on Nov 17, 2009 12:55 PM