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: 

Suppress Message / Clear Status line

alejiandro_sensejl
Active Participant
0 Kudos
370

Hello Gurus,

I am using function module MB_PHYSICAL_INVENTORY in a RF-transaction. There I am collecting all return messages into an itab to show a protocol in a small popup.

The problem is, after completition of the posting a message (type S) is shown in status line (e.g. "Diffs in phys. inv. doc. 240307242 posted with m. doc. 3702433524").

Is it possible to suppress this message somehow or is there a way to clear the status line manually (w/o displaying another message)?

Help is much appreciated,

Alej

PS: Points will be rewarded for helpful answers!

4 REPLIES 4

former_member188685
Active Contributor
0 Kudos
108

Is it possible to suppress this message somehow or is there a way to clear the status line manually (w/o displaying another message)?

Actually the message is from Standard program. But This won't effect the RF. I think it is not possible to stop that message. What is the problem you are facing with the message.

I did many RF applications similar to what you did.Success messages nothing will happen,it won't disturb, Error messages any way you are capturing and showing in different way.

0 Kudos
108

Hello Vijay Dudla,

thanks for your quick reply. It's correct, that the message isn't affecting the further processing of the RF transaction.

As I said I collect several messages before I display them, so the message invoked by the standard function module is displayed too early before all actions are done (e.g. the function module shows a success error but the following function is processed with errors). This is very irritating for the user and that's why I want to suppress it.

Regards,

Alej

0 Kudos
108

(e.g. the function module shows a success error but the following function is processed with errors).

I am not sure what you are telling..Can you explain it in detail.

0 Kudos
108

The complete process is using three function modules. The first is the above mentioned MB_PHYSICAL_INVENTORY. Even if this function module was executed successful (BLING message appears on the status line), the other two could have run incorrect.

For Example:

FM 1 correct (Status message)

FM 2 correct

FM 3 ERROR

So I want to display the user a complete log of the results of all function modules and the user shouldn't think 'Everything was fine!' because of the message of the first FM.

I hope I could clarify my problem.