cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to create Trans.medium of our own inline with'External Send'

Former Member
0 Kudos

Hi All,

Where All the 'Transmission mediums' (Print Output, EDI, Fax, External send etc...) be configured!

I want to know is their any way we can new transmission medium of our own in line with (replicating Transmission medium 'External Send').

Basically using these 2 transmission mediums i want send mail as PDF attachement of Form o/p to different types of users.

Thanks in advance.

Thanks,

Deep.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

If you want to send mail as PDF attachment of form o/p to more than one person,

DATA: t_reclist type standard table of somlreci1,

DATA: w_reclist like line of t_reclist.

You can simply add the recipient addresses in w_reclist-receiver

clear: w_reclist

w_reclist-receiver = "First person mail address"

w_reclist-rec_type = c_u. "External Address

append w_reclist to t_reclist

clear: w_reclist

w_reclist-receiver = "Second person mail address"

w_reclist-rec_type = c_u. "External Address

append w_reclist to t_reclist

call function module SO_NEW_DOCUMENT_ATT_SEND_API1 and

then pass t_reclist. it will send the output as PDF attachment to these mail id's

Thanks,

sriiiiiiiiiiiii(srikanth)

Former Member
0 Kudos

Hi,

I need to trigger e-mails to different id's through different transmission medium.

I know It is possible through single medium & multiple e-mail id's & Multiple outputs & single medium.

I just want to know is it possiblt to replicate 'External send' transmission medium for a o/p type!

Thanks,

Deep.

Former Member
0 Kudos

Hi,

it is al all customizing (SPRO).

But a part (only of SD/MM forms) can be done with transaction NACE.

Gr., Frank