Application Development 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: 

Showing error as popup when message type is 'E'.

Former Member
0 Kudos

I have some problem about showing message.

When I try to show error message by using message type 'E',

message shows as popup like message type 'I'.

I don't want to show message as popup.

Sap version is ECC 4.6.

please give me an answer experts.

Have a nice day.

SELECT SINGLE loevm

FROM knb1

INTO l_loevm

WHERE kunnr = bseg-kunnr

AND bukrs = bkpf-bukrs.

IF l_loevm = 'X'.

MESSAGE E037(zfimsg) WITH bseg-kunnr.

ENDIF.

Edited by: SANG SIN BAE on Jan 16, 2009 3:11 AM

4 REPLIES 4

martin_voros
Active Contributor
0 Kudos

Hi,

message formatting depends on which event is your code. For example same message type may be displayed differently in START-OF-SELECTION and INITIALIZATION. There is table with description in ABAP documentation. You can modify it my using message option DISPLAY LIKE.

Cheers

0 Kudos

Hi,

As Martin said, it is depends on which event you put your message.

Following link will help you:

Link:[http://help.sap.com/abapdocu/en/ABENABAP_MESSAGE_DIALOG.htm]

Best Regards,

Victor.

Former Member
0 Kudos

Thank you for quick answers.

I tried to use "DISPLY LIKE 'E'" but I couldn't active

I think it's poosible to use it from ECC5.0.

Is there any other way for ECC4.6?

0 Kudos

In which event you put your error message?