Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Message

Former Member
0 Likes
574

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.

1 ACCEPTED SOLUTION
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
549

HI,

As follows

MESSAGE 'Message text' TYPE 'E'.

Use E or I or S or W. in the type

Regards,

Sesh

4 REPLIES 4
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
550

HI,

As follows

MESSAGE 'Message text' TYPE 'E'.

Use E or I or S or W. in the type

Regards,

Sesh

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
549

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).

Read only

dev_parbutteea
Active Contributor
0 Likes
549

HI,

you can also have :

MESSAGE text-001 TYPE 'I' DISPLAY LIKE 'E'.

Regards,

Sooness

Read only

Former Member
0 Likes
549

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