‎2007 Jun 29 5:14 AM
Hello all,
Is it possible to display a message with out having a message id or message class in the program.
If possible what is the syntax.
My requirement is to display an error message inside an user exit.
Rakesh.
‎2007 Jun 29 5:19 AM
HI,
As follows
MESSAGE 'Message text' TYPE 'E'.
Use E or I or S or W. in the type
Regards,
Sesh
‎2007 Jun 29 5:19 AM
HI,
As follows
MESSAGE 'Message text' TYPE 'E'.
Use E or I or S or W. in the type
Regards,
Sesh
‎2007 Jun 29 5:20 AM
Hi,
Message e000(zz) with 'Message Here'.
000 is the message no.
zz is the message class
if & is in 000 then with addition is required.Otherwise,
Message e000(zz).
‎2007 Jun 29 5:24 AM
HI,
you can also have :
MESSAGE text-001 TYPE 'I' DISPLAY LIKE 'E'.
Regards,
Sooness
‎2007 Jun 29 5:35 AM
Hi,
You can use this syntax
Message I000(00) with 'Your message'.
You can use I or E or W
IF USEFULL GIVE REWARDED POINTS