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: 

Popup messages

Former Member
0 Kudos

Hi,

I have created a screen where a new entry will be made..

After entering the details whn user clicks the submit button a popup message want to displayed in the other users system..

If there are 5 users in the company..If one user enters a record means a message want to popup in the other 4 users screen..

How it is possible..

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

For setting system messages, the transaction SM02 is used by the administrator. In the background, the transaction supposedly triggers FM SM02_ADD_MESSAGE.

(You can find more related function modules from function group SM02)

You can call this function module from your program and pass the suitable parameters. Ensure all the parameters are properly set e.g. delete time so that the messages appear only for sometime.

Cheers,

Aditya

Edited by: Aditya Laud on Feb 11, 2008 2:04 AM

2 REPLIES 2

Former Member
0 Kudos

Hi,

For setting system messages, the transaction SM02 is used by the administrator. In the background, the transaction supposedly triggers FM SM02_ADD_MESSAGE.

(You can find more related function modules from function group SM02)

You can call this function module from your program and pass the suitable parameters. Ensure all the parameters are properly set e.g. delete time so that the messages appear only for sometime.

Cheers,

Aditya

Edited by: Aditya Laud on Feb 11, 2008 2:04 AM

Former Member
0 Kudos

thanks