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: 

how to send messages to the specified user through sap

santosh_fhalke
Participant
0 Kudos

how to send messages to the specified user through sap

6 REPLIES 6

Former Member
0 Kudos

Hello,

Go to transaction SBWP (Business WorkFlow) and create and check internal messages.

Regards,

Shehryar Dahar

Former Member
0 Kudos

Hi Santosh,

You can send an asynchronous message to a user using FM TH_POPUP.

Regards,

John.

Former Member
0 Kudos

Hi Santosh,

try:

CALL FUNCTION 'TH_POPUP'

EXPORTING

CLIENT = SY-MANDT

USER = BNAME "User you want

MESSAGE = MSG "text you want

EXCEPTIONS

USER_NOT_FOUND = 1.

*

Regards, Dieter

Former Member
0 Kudos

c the function module FOR sap MAIL: FSCM_SEND_R3_MAIL

FOR MESSAHE USE 'TH_POPUP'

Ramesh

Message was edited by:

Ramesh

santosh_fhalke
Participant
0 Kudos

thanks

0 Kudos

Hi Santosh,

problem solved?

regards, Dieter