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: 

Enabling multiple e-mail recipients on F110 payment advice

Former Member
0 Kudos

Hi All,

We have a requirement to set up multiple e-mail recipients on send of payment advice on transaction F110.

Currently a single recipient is pulled from XK02. You can set up additional recipients in XK02,

but I can't seem to determine how those can be recipients as well in F110. I would even code (if necessary) a custom solution, but can't seem to locate a suitable user exit in F110 where this could be coded. Has anyone ever had a similar requirement ?

Thanks in advance,

Sabu

8 REPLIES 8

Former Member
0 Kudos

I'm trying to use BTE 00002040 as a means of adding some custom code to add a second e-mail recipient for a payment advice, but what is returned from 00002040 is a structure, not a table, implying that multiples cannot be done. But I believe others have done this...any tips out there?

thanks

Sabu

Former Member
0 Kudos

No reply from any one ...

so closing the message

0 Kudos

I think this would be a custom solution with a copy of RFFOEDI1 and include RFFORI06 populate multiple emails in

FORM mail_pdf_advice. I always wondered the same for multiple emails for payment advice but never was asked to provide a solution for this req so never explored. Please post the solution you come up with.

0 Kudos

Hi Friends,

If u have the solution for this please do share it with all.

Regards

VEnk@

Former Member
0 Kudos


Hi All,

It can be done using the below code.

Loop gt_emails into gs_emails.

c_finaa-nacha =

'I'.
CONCATENATE c_finaa-intad gs_emails-smtp_addr INTO c_finaa-intad SEPARATED BY space.

Endloop.

So all the emails should be concatenated into FINAA-intad separated by space. But with this it can hold uptill 130 chracters only. If the total length of emails is more than 130 characters then the excess would be truncated. I am searching for a solution. Will post if I find something on this.

Regards,

Meena

0 Kudos

Hi Meena ..

I am having the same problem and did you manage to find a alternate way to pass multiple emails and I tried your example earlier and as you said the variable holds only 130 chars..

Please let me know.

Regards

Praneeth

0 Kudos

Hi Praneeth,

I am having the same requirement.Can you let me know how you have achieved this.

My ID : Veera14@gmail.com

former_member190726
Participant
0 Kudos

Hi Sabu,

get the ADRNR for customer from KNA1 and then use FM ADDR_SELECT_ADR6_SINGLE or ADDR_SELECT_ADR6_ARRAY(multiple), SMTP_ADDR field will contain the email address. and then use the emails in program to send mails.(usr21 is the table we have to store the mail id's in master table). it will return table. we have to create the master data with correct mails ids so this fm will get all the mail id's. fm will return to the table and will display all mail id's which present tables.