Send billing output to multiple email adresses

Hi,
we need to configure our output determination to be able to send billing invoices via email to multiple recipients.
In our old 4.6c environment it worked with output type 5 when we added multiple comma separated email-addresses to the customer master record.
After applying some kernel updates, this does not work anymore.
does anyone have experience with that?
I tried to set it up for output media 7 (SAPoffice) and wanted to get it working with SAP distribution list. but I struggle and I am at the point where I feel like I have tried everything.
Maybe it's just an easy setting I'm missing.
Thanks for any help.
Markus

Huey,
Read and processed your selection as you suggest. Run into issue when the output record is executed, get error message that ...
Communication type  cannot be used
Message no. SVN000
Diagnosis
Message type ZD08 should be sent with communication type .
System Response
Communication type  is not supported by the conversion module.
Procedure
Use one of the supported communication types:
Printer (LET)
Fax (FAX)
Telex (TLX)
X.400 (X40)
Mail via Internet (INT)
Mail via SAPoffice (RML)
Any thoughts on this are appreciated. We are on ECC 6.0 SP14.
Thanks,
Jay

Similar Messages

  • Triggering billing output for multiple emails

    Hi Experts,
    We have a scenario wherein a single billing document output gets triggered for multiple emails. The requirement is to send the invoice layout copy to multiple emails where we maintain customer mail ids in customer master record.
    When tried ,we found option in customer master record and maintained multiple email ids to send the billing output.The system has considered first email id from customer master record and did not consider next mail ids from CMR. Could you please suggest now how can we suffice this requirement .
    Thanks in advance.
    KV

    Dear Kv rekha,
    Check whether the following thread helps you.
    http://wiki.sdn.sap.com/wiki/display/Snippets/Howtosendmailtoadistributionlistoragroup+ID
    Thanks & Regards,
    Hegal K Charles

  • Send invoice (copies) to multiple email address

    Hi,
    Is it possible to send invoice(copies) to multiple email address? how?
    Understand that we can maintain multiple email add for a customer. Example if 5 email add has been maintained for customer A, let say if I need to email 1 original invoice to email add 1 and email the other 2 copies invoice to email add 2 & 3 , how do I select the email add 1, 2 & 3 from the customer under the OUTPUT of change invoice (VF02) when we only input the customer code under Partner?
    Appreciate your inputs on the above.

    Hi,
    I think it is possible to send invoice copies to multiple email addresses using comma in between them.
    Regards,
    Sarosh

  • Broadcasting - email bursting multiple email adresses

    Hello all,
    For broadcasting emails we use the bursting option. We want to use the option of 'filter document by characteristic value' so we can specify the reports by sales organization (0SALESORG).
    This works fine if we putt an e-mail address in the InfoObject, but we want to email the same report to multiple email adresses. So (for example) for salesorg 10 we want 4 email adresses to receive the broadcasting report. Is this possible?
    In the SAP documentation I only see 1 e-mail address per sales org for example.
    We are running SAP BW 7.0 SP 12.
    Thank you in advance.
    Message was edited by:
            Gerard Bot

    HI,
    it is not possible to use more than one Email-addresses.
    There is no user-exit for this stuff. The only thing i could imagine, is that you send the mail to a distribution list of your mailserver.
    May you can create a distribution List on Mailserver, add the receiptients to that list, and change the email-address in the attribute to the mail-address of the distribution list.
    Within SAP is no chance.
    best regards,
    Kai

  • To send smartform output in an email without attachment

    Hi All,
      How to send smartform output in an email without attachment?
    Thanks & Regards,
    Mamta Gupta.

    Try this,
    DATA:
    ls_control_param TYPE ssfctrlop, "Control paramters
    ls_output_options TYPE ssfcompop. "Output options
    DATA:
    lv_ip_mailaddr TYPE so_name, "Address of a Mail Recipient
    lv_ip_type_id TYPE so_escape, "Recipient type
    ls_recipient_id TYPE swotobjid, "Structure for recvr obj ID
    ls_sender_id TYPE swotobjid. "Structure for sender obj id
    CONSTANTS:
    lc_ip_type_id TYPE so_escape VALUE 'U', "For internet address.
    lc_smartform TYPE tdsfname VALUE 'ZVSF_ASN_DELNOTE', "Smart form name
    lc_mail TYPE tddevice VALUE 'MAIL'. "Mail device
    Assign recipient
    lv_ip_mailaddr = gv_smtp_addr. "CSAM email id
    lv_ip_type_id = lc_ip_type_id. "External address
    Create Mail title
    CONCATENATE text-001
    nast-objky
    INTO ls_output_options-tdtitle.
    Create recipient object
    CALL FUNCTION 'CREATE_RECIPIENT_OBJ_PPF'
    EXPORTING
    ip_mailaddr = lv_ip_mailaddr
    ip_type_id = lv_ip_type_id
    IMPORTING
    ep_recipient_id = ls_recipient_id
    EXCEPTIONS
    invalid_recipient = 1
    OTHERS = 2.
    IF sy-subrc 0.
    cf_retcode = sy-subrc.
    PERFORM protocol_update.
    ENDIF.
    Get sender object id.
    CALL FUNCTION 'CREATE_SENDER_OBJECT_PPF'
    EXPORTING
    ip_sender = sy-uname
    IMPORTING
    ep_sender_id = ls_sender_id
    EXCEPTIONS
    invalid_sender = 1
    OTHERS = 2.
    IF sy-subrc 0.
    cf_retcode = sy-subrc.
    PERFORM protocol_update.
    ENDIF.
    Assign the smart form name
    w_ssfname = lc_smartform.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = w_ssfname
    IMPORTING
    fm_name = lf_fm_name
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3.
    IF sy-subrc 0.
    cf_retcode = sy-subrc.
    PERFORM protocol_update.
    ENDIF.
    For Print output:
    IF nast-nacha = '1'. "Print output
    ls_control_param-preview = 'X'.
    ls_control_param-no_dialog = 'X'.
    ENDIF.
    For Email output.
    IF nast-nacha = '2'. "Email
    Output options
    ls_output_options-tdteleland = gs_kna1-land1.
    ls_output_options-tdtelenum = gs_kna1-telfx.
    ls_output_options-tdfaxuser = sy-uname.
    ls_output_options-BCS_COMMIT = 'X'.
    ls_control_param-device = lc_mail.
    ENDIF.
    dynamically call Fm behind the Smart form
    CALL FUNCTION lf_fm_name
    EXPORTING
    control_parameters = ls_control_param
    mail_recipient = ls_recipient_id
    mail_sender = ls_sender_id
    output_options = ls_output_options
    user_settings = ' '
    TABLES
    delivery = gt_delivery
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5.
    IF sy-subrc 0.
    cf_retcode = sy-subrc.
    PERFORM protocol_update.
    ENDIF.
    Regards,
    Joan

  • Sending smartform output to external email id

    here the issue is ,,'
    in pa40..m
    after changing the start date of pernr ...
    if i click on save button i  have to generate one  smartform based on the pernr and bedga ..
    after i have to send that smartform output to external email id dynamically ..
    please help me in this...
    Moderator message: please search for available information/documentation before asking, your posts are pain to read, use normal punctuation, capitalization, do not open multiple threads for the same issue.
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    Edited by: Thomas Zloch on Nov 10, 2010 1:56 PM

    Hi Swati,
    Try to maintain an auto-forwarding email address for this user using transaction SO36 and check if that solves your problem.
    Regards,
    Jigar

  • Send Payment advice to multiple email ids

    Hi,
    We have requirement that payment advice need to be send to multiple vendor email ids.
    I have implemented SAP note Note 1033893, which says after applying the note the email can be sent to multiple email ids by seperating the email ids by space in field c_finaa-intad in BTE 2040.
    But when i am trying to send the email to multiple ids is not going , when i tried to send with one email id . its working fine.
    i am using RFFOAVIS_FPAYM to send the payment list.
    Please help if you know any solution..
    Thanks,
    Geeta

    Hi,
    Create the distribution list and maintain the email ids in that.
    T.code : SO23 - to create a distribution list.
    And fuctional consultant that whether they can assign this distriution list in SRO to get the all email ids or u may have to write code in user exit.
    Thanks.
    Balu

  • Send birthday reminder to multiple emails

    Hey guys
    I was wondering is there's a way to send an email reminder to multiple email addresses. Every year we celebrate our co-workers' birthdays by surprising them within a two-week period of their birthdays, it could be before or after it, that way they don't expect it. Man, you should see their faces when we do that. Hehe. Anyway, what I'm trying to do is let all the others know who's b-day is coming up next. I can't do nothing with Birthdays turned on, so the only way I can see it working is by making an event for the person's b-day, but it only gives me the option to email myself. Is there a way of emailing multiple address?

    Hey guys
    I was wondering is there's a way to send an email reminder to multiple email addresses. Every year we celebrate our co-workers' birthdays by surprising them within a two-week period of their birthdays, it could be before or after it, that way they don't expect it. Man, you should see their faces when we do that. Hehe. Anyway, what I'm trying to do is let all the others know who's b-day is coming up next. I can't do nothing with Birthdays turned on, so the only way I can see it working is by making an event for the person's b-day, but it only gives me the option to email myself. Is there a way of emailing multiple address?

  • Send invoice document to multiple email ids

    Hi Experts,
    I wnat to email the invoice generated through tcode VF03 to multiple email ids.
    As per standard, only one email id is active . So please suggest some solution.
    Thanks in advance

    Hi,
    Create the distribution list and maintain the email ids in that.
    T.code : SO23 - to create a distribution list.
    And fuctional consultant that whether they can assign this distriution list in SRO to get the all email ids or u may have to write code in user exit.
    Thanks.
    Balu

  • Send email to multiple email adresses in contact card?

    Hello,
    I would like to send emails to all email addressess in one contact. It automatically chooses the first email in the card. Is it possible to choose all email addresses in one contact?
    Cheers!

    When I try this, I get a list of the e-mail addresses from that card. I enter one, hit return, and then type the next one.

  • Send output to multiple recepients(Using External send)

    Hi
    Using the external send for outputs we can send the email of outputs to customers using the email id given in the customer master record , Is it possible to send the output to multiple recepints the same output?
    Because in the customer master we can add more than one email id but system will select only one email id for sending the output.
    Thanks and Regards,
    Ananda

    Hi Raj,
    The requirement is for one customer master if i want to add more then one email id and for those email ids , I want to generate a invoice output using VF02 , We can add more than one email id in Customer master but we can not use all the email ids the same time to trigger the output.
    If I want to send the output to multiple email ids maintained in the customer master , how i can do that?
    Thanks
    Ananda

  • Simultaneous output to multiple external DACs

    Hello,
    Just wondering if anyone has figured out how a single MacBook Pro can output audio simultaneously to 2 or more USB external DACs so that you deliver high quality source music signal to multiple zones of a building ?
    Can this be done through wi-fi ?
    I've been trawling through numerous blogs and posts and can't find anything other than accounts of unsuccessful tries with the Aggregate Sound Device.
    Thanks.
    Clement

    Hi Raj,
    The requirement is for one customer master if i want to add more then one email id and for those email ids , I want to generate a invoice output using VF02 , We can add more than one email id in Customer master but we can not use all the email ids the same time to trigger the output.
    If I want to send the output to multiple email ids maintained in the customer master , how i can do that?
    Thanks
    Ananda

  • Campaign output to BP with multiple email addresses

    Hi all,
    I noticed that within Campaign Execution the output to email channel will only send an output (mail form) to the business partners standard email address.
    Question is: how to send an output to ALL email addresses stored within a business partner and not just the one email marked as standard.
    Thanks,
    John

    Hello John,
    Don't know if it is possible but you can try making out the target group based on the email address as an attribute.
    I don't think that this is a good practice. The customers will not like to have an offer more than once. What if he is not interested. So, reading multiple mails for the same purpose wll frusturate him/her.

  • Billing output through email

    Hello SDNs,
    I have a requirement to send the billing output directly to the customer(BP) who is receiving billing document but it should be specific customers. Can you please explain where do we maintain for automatic billing output through customer email.
    I have maintained transmission medium as email at billing output type level and maintained output codition record level.
    Outout is not triggering as i have maintained above settings. Can you please guide the steps for getting output through email.
    Regards,
    K

    Hi,
    If you want to sent email to the BP the invoice copy then create your output type in SPRO>SD>Basic Functions>O/P control>O/P determination>O/P determination using condition technique>maintain Output Determination for billing documents.
    Select RD00 and create an output type of your own. In the Default values tab maintain transmission medium "5" and partner function "BP" and Communication Strategy "CS01". Now at left side "Dialog structure " Maintain the values for each one
    In the processing routines maintain medium "5" .Your program ,form routine and form.Also type "2 PDF".
    In partner functions Maintain medium "5" and partner function "BP" these are the configurations when you maintain the new output type.
    After creating the new output type maintain the same in output determination procedure. with Step/Output type (created by you).
    Maintain the email address in customer master of BP.
    Also check in SCOT to ensure the email is triggered

  • Emailing functionality for billing output

    Hello SDN's,
    As per requirement, business needs to send invoice output to customer email directly and business needs to validate the invoice before sending to customer email .Can you please suggest how do we implement this process in as per business requirement.
    I have checked current functionality, as per that business is validating the invoice before sending to customer(not email).
    Please suggest.
    Thanks in advance
    Regards,
    KV

    Hello Guru's
    Based on the discussion, I do have similar business requirement but with little twist, as it can never be same
    I need to configure billing output via ale. which they want in email format to be sent to vistex for further processing.
    Secondly this output has to be for some special customers, business will run a batch by the end of the day to push this docs for further processing to vistex.
    So for this solution do I control it by output routine or maintain access sequence?
    And also which transmission medium should I use?
    Please suggest on this.
    Thanks
    Aman

Maybe you are looking for

  • What's new in kde4.4?

    As a long time kde user I was bewildered by some of the things that hit me when I fired up kde4.4. To kick the changes off I was impressed by the new netbook setup which one call up seemlessly and which relies on the new search and launch activity: s

  • USB device not recognized win7 iPod Touch 1g

    My computer will not recognize my 1st Gen Ipod Touch 8gb when I plug it into my USB port. I get a message USB Device Not Recognized. I've tried everything from resetting the iPod, uninstalling and reinstalling iTunes and all other Apple related progr

  • Is there any way to get around using iTunes.7 with a Nano (secnd gen)?

    I, like many others received a pretty new Nano from Santa, but was disappointed to find that.. it doesn't seem to be usable! I have a iMac (os x 10.2.8) and a iBook G4 (os x 10.3.7) BUT as I'm sure you're aware, I can't update the iTunes on either to

  • No Lights on the shuffle unless it is charging!

    Hello everyone, my mom bought my son a 3rd Gen Ipod Shuffle for christmas from Amazon and it is not working. No lights come on period unless the shuffle is hooked up to the USB, then its orange while its charging. It has charged for 24 hours at one t

  • New iphone, no music :(

    ok i got a new iphone and i tried putting music from my itunes on to it...but it didn't work!! can sumone pleaze help me with my problem??