‎2008 Aug 22 8:34 AM
Hi guys,
using this code:
Message e000(otc) with v_curr.
Is it possible that this message will pop up to the user?
Thanks!
‎2008 Aug 22 8:36 AM
Hi
Pop-up comes only with Information message.
You can give Information message at AT-selection screen.
Aditya
‎2008 Aug 22 8:41 AM
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?
‎2008 Aug 22 8:51 AM
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
‎2008 Aug 22 9:00 AM
Hey Mark
Use this
Message i000(otc) with v_curr. it will give you a pop up
~hitesh
‎2008 Aug 22 8:40 AM
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