cancel
Showing results for 
Search instead for 
Did you mean: 

Sending e-mail to a distribution list

Former Member
0 Kudos

Hi,

I have a requirment where in I have to:

1) Send mail to a distribution list:- Is it possible to send mail to a distribution list which is maintained in an R/3 table?

2) The mail should be sent after posting an IDoc(which can be done in BPM) but the mail content should have the posted IDoc number. How will get the IDoc number inside XI?

Any help would be greatly appreciated.

Regards,

Anish

Accepted Solutions (0)

Answers (2)

Answers (2)

STALANKI
Active Contributor
0 Kudos

Otherwise you cant get the idoc number from idx* tables and you can get GUI id in the BPM(refer to michals blog for retriving CURRENT INSTANCE OF GUID).

MichalKrawczyk
Active Contributor
0 Kudos

Hi,

>>>>1) Send mail to a distribution list:- Is it possible to send mail to a distribution list which is maintained in an R/3 table?

sure it is;)

with sp14 you can create mail adress dynamically

very easy with adapter specific identifiers

and with RFC API you can easily get info from r3 table

during your graphical mapping for example

>>>>>2) The mail should be sent after posting an IDoc(which can be done in BPM) but the mail content should have the posted IDoc number. How will get the IDoc number inside XI?

you can do it like this (one of the ways)

find a user exit iside this idoc - when the idoc gets createt and send an rfc call to the bpm

with the use of correlation on some value

this is the easiest to implement only a few things to do

Regards,

michal

Former Member
0 Kudos

Thanks Michal

Let me try this ...