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: 

How can I display the message type 'E' as a popup?

Former Member
0 Kudos

Hi,

Usually a message of type 'E' is displayed in the status bar. How can I display the message type 'E' as a popup?

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Check this FM POPUP_DISPLAY_MESSAGE

16 REPLIES 16

SuhaSaha
Advisor
Advisor
0 Kudos

Hello Kumar,

Is it a std. code or a custom code.

If custom code, you can identify the point where you are getting the error & change the type to I instead of E.

BR,

Suhas

Former Member
0 Kudos

I have seen this in sombody's R/3 system.

By default, the msg type 'E' is displayed in the status bar and also a popup is displayed with a red cross.

How can this be done?

I know that the message type is 'E' and not 'I'.

Edited by: kumar g on Jan 21, 2009 9:58 AM

0 Kudos

Hello,

By default, the msg type 'E' is displayed in the status bar and also a popup is displayed with a red cross.

I think this will happen for message type 'A'.

Plz revert back.

BR,

Suhas

Former Member
0 Kudos

I am sure I have seen this in sombody's R/3 system.

By default, the msg type 'E' is displayed in the status bar and also a popup is displayed with a red cross.

How can this be done?

I know that the message type is 'E' and not 'I'.

Even during logon if the password is incorrect, then the 'Invalid Password' ERROR message is popped up.

Former Member
0 Kudos

Hi Kumar,

Instead E you can use the I (informatino) to get the pop-up message.


i.e message     MESSAGE I000(0k) WITH 'Invalid entry, please make the valid entry'

Thanks!

Former Member
0 Kudos

Hi,

Use message type I to get pop-up.

Thanks,

Srilakshmi.

Former Member
0 Kudos

Hi,

Check this FM POPUP_DISPLAY_MESSAGE

0 Kudos

The statement

Message 'Invalid Entry' Type 'E'

is written and this displays an error msg in the status bar and also a popup. There is no specific FM for this.

It is happening at global level.

0 Kudos

Hi,

In your Sap screen on top right you can see Customize local layout button ( ALT+F12 ).

now here in options choose options select check box dialog box at error message.

Former Member
0 Kudos

HI,

U CAN WRITE LIKE THIS

MESSAGE E001(00) WITH 'No data for selection criteria' DISPLAY LIKE 'I'.

GauthamV
Active Contributor
0 Kudos

Hello,

use this function module.

'POPUP_DISPLAY_MESSAGE'

pass message type as 'E'.

Former Member
0 Kudos

Hi Kumar,

I dont think you can do this.

However you may raise your message in a popup window...

That is not through the regular stmnt MESSAGE but through an FM

What you must have seen could be a mix of MESSAGE and then a popup with icon only..

Former Member
0 Kudos

hi

use thi...


 MESSAGE 'ur message' TYPE 'I' display like 'E'.

regards

vivek

0 Kudos

relly helpful Thanks

Former Member
0 Kudos

Hi,

This can be done by changing the sap settings

the path is

on sap screen at topright corner you will be having one icon with customize local layout--->options in this check the check box dialog box at warning message.

i think this will do that

Regards,

Praveen