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: 

message in status bar

Former Member
0 Kudos

Hi,

I have a little problem when alerting a message via this instruction:

MESSAGE s000(00) WITH msg.

(where "msg" is a string containing the message to alert)

an additional "00:000" is added before the message.

Is there a way to remove it?

thanks

Gabriele

5 REPLIES 5

Former Member
0 Kudos

Hi,

Try to use a blank message... i.e message that has '&' in its value

if you use a blank message , then your string text will overwrite the blank message

This will resolve your issue

Regards

Shiva

Former Member
0 Kudos

When i look in SE91 with class 00 number 000, i don;t see any place holders like in number 001. So you will never see your msg inserted in the message.

Try again but use number 001 instead. Mind you, if you text in msg is too long, some truncation might take place.

Former Member
0 Kudos

Report ( Add the message class ).

MESSAGE s000(Use a message class) WITH msg.

Former Member
0 Kudos

Hi Gabriele,

i think the message id (00) is not declared in the message class.

if you want to pass any message without message id just write

message with ' *** something*** ' type 'S'.

these will work

Former Member
0 Kudos

whatever you want to display in message in run time

use & in messge text where u define.

writelike

messge s001(zvikalp) with vbeln.

i think it help you