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

Problem with error message that pop up

Former Member
0 Likes
743

Hi guys,

using this code:

Message e000(otc) with v_curr.

Is it possible that this message will pop up to the user?

Thanks!

5 REPLIES 5
Read only

Former Member
0 Likes
721

Hi

Pop-up comes only with Information message.

You can give Information message at AT-selection screen.

Aditya

Read only

0 Likes
721

Hi aditya,

Thanks a lot!

But why am i having a pop up message for this code?

Is there an explanation for this?

Is there anything that needs to set up for this?

Read only

Ralf
Active Participant
0 Likes
721

Whether messages appear as a line at the bottom (Status line) or as a pop up is depending on the local user setting -> Customize local layout. And this means every individual user in you organization.

If you want to force a pop up, no matter what the user has set up here (most users and the standard setting is that only a message at the bottom appears) you should use a function module to produce a pop up.

Can't remember the name of such function module, but there are plenty of them, I think it's something like MESSAGE or POPUP*, have a look in SE37 yourself.

Hope this helps,

Ralf

Read only

0 Likes
721

Hey Mark

Use this

Message i000(otc) with v_curr. it will give you a pop up

~hitesh

Read only

ingo_barschow
Explorer
0 Likes
721

Hi Mark,

use 'I' instead of 'E':

* Message e000(otc) with v_curr.
Message i000(otc) with v_curr.

In SE38 / SE80 press F1 on MESSAGE and it will explain the usage.

Maybe you should try:

message e000(otc) with v_curr DISPLAY LIKE 'I'.

regards