Fax output for multiple recipients

Hi All,
Please help me to figure out how can I get the fax output for order confirmation and invoices. I have done config part necessary in the nace by creating fax output , assigning medium and all. We are able to get PDF attachment for out email output. But I am not sure what changes i need to ask abaper to make in there program in order to generate PDF for fax output.
Please give me some suggestions.
Thank you.

hi
please convey to your abaper to a Z table with a maintaince view which has to store email id of the group when ever that particular is getting triggering it has to trigger to all the group you mentioned in Z table.
or
if you are having any authrization group to which you have to trigger the mail say abaper to write a code on the group.
regards
balajia

Similar Messages

  • How to use one email adress for multiple recipients

    Hello,
    I'd like to know how to use one email adress for multiple recipients. 
    this would be very useful or projects. for example;
    if i send one mail to [email protected], all people in this project get an email.
    I will add the people in this project myself. 
    I know it is possible, but I don't know how to do it ;-)
    please help me! 

    Hope this help.
    _http://technet.microsoft.com/en-us/library/cc164331(v=exchg.65) .aspx

  • Action to send email for multiple recipients

    Hi gurus,
    Currently the user needs to send a email for multiples recipients according to the organization structure.
    For example:
    The user generates a complaint and the systems must notify by email the department responsible to solve this complaint, sending an email for all employees assigned into this organizational unit.
    How should I configure the action to send an email for the whole departament?
    Best Regards,
    Gabriel Santana

    HI Gabriel,
    Get the email ID's of all the recipents from orgunit using FMs <b>RH_STRUC_GET</b> and <b>BAPI_BUPA_ADDRESS_GETDETAIL</b> into internal table <b>et_mailid</b> and then using FM <b>SO_NEW_DOCUMENT_ATT_SEND_API1</b>.
    For reference check the code below:
    <b>*i_message has contents of mail body</b>
    DATA:    g_sent_all(1) TYPE c,
             g_doc_data LIKE sodocchgi1,
      DATA:  i_message      LIKE solisti1   OCCURS 0 WITH HEADER LINE,
             i_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
             i_receivers    LIKE somlreci1  OCCURS 0 WITH HEADER LINE.
    Fill the document data.
        g_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
        g_doc_data-obj_langu = sy-langu.
        g_doc_data-obj_name  = 'SAPRPT'.
        CONCATENATE g_sdltime0(2) ':' g_sdltime2(2) ':' g_sdltime+4(2) INTO g_time.
        CONCATENATE c_subject g_time INTO g_doc_data-obj_descr SEPARATED BY space.
        g_doc_data-sensitivty = 'F'.
    Describe the body of the message
    Information about structure of data tables
        CLEAR i_packing_list.
        REFRESH i_packing_list.
        i_packing_list-transf_bin = space.
        i_packing_list-head_start = 1.
        i_packing_list-head_num = 0.
        i_packing_list-body_start = 1.
        DESCRIBE TABLE i_message LINES i_packing_list-body_num.
        i_packing_list-doc_type = 'RAW'.
        APPEND i_packing_list.
    Add the recipients email address
        LOOP AT et_mailid.
          CLEAR i_receivers.
          i_receivers-receiver = et_mailid-email_id.
          i_receivers-rec_type = 'U'.
          i_receivers-com_type   = 'INT'.
          i_receivers-notif_del  = 'X'.
          i_receivers-notif_ndel = 'X'.
          APPEND i_receivers.
        ENDLOOP.
    Call the FM to post the message to SAPMAIL
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = g_doc_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          IMPORTING
            sent_to_all                = g_sent_all
          TABLES
            packing_list               = i_packing_list
            contents_txt               = i_message
            receivers                  = i_receivers
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
    Regards,
    Amit
    *Always reward points for helpful answers
    Message was edited by:
            Amit Kumar

  • 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

  • Using the NotificationService adapter for multiple recipients

    Greetings,
    We have a process that's used to send email messages using the NotificationService adapter.
    Currently this process works when all recipients listed have valid mailboxes. However, if any one of the addresses is (for example the address points to a non-existant mailbox) not valid, the message is not sent.
    Here is the xml from the audit trail illustrating this type of message
    <messages><varNotificationReq><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="EmailPayload">
    <EmailPayload xmlns="" xmlns:def="http://xmlns.oracle.com/ias/pcbpel/NotificationService" xsi:type="def:EmailPayloadType" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <FromAccountName xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">CMD</FromAccountName>
    <To xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">wharrell@workflowmail,vmedee@workflowmail</To>
    <ReplyToAddress xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"></ReplyToAddress>
    <Subject xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">1 invalid address</Subject>
    <Content xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">multipart/mixed</MimeType>
    <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MultiPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <BodyPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">text/html; charset=UTF-8</MimeType>
    <ContentBody>one of these things is not like the other.</ContentBody>
    <BodyPartName xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">NotificationAttachment1.html</BodyPartName>
    </BodyPart>
    </MultiPart>
    </ContentBody>
    </Content>
    <EmailHeaders xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <Cc xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <Bcc xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    </EmailPayload>
    </part></varNotificationReq><varNotificationResponse><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Responses"><ArrayOfResponseType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <Response>
    <MessageId>86326ccc876d8b26:390fd60a:11524a9d501:-793b</MessageId>
    </Response>
    </ArrayOfResponseType>
    </part></varNotificationResponse>
    </messages>
    Now, in this case the first address (wharrell@workflowmail) is valid. The second address (vmedee@workflowmail) is not. With this list of recipients the message does not get delivered at all.
    However, if I use only valid addresses which point to existing mailboxes, the message is delivered perfectly. I've tried using the Cc instead of the To and get the same results. I've been looking for a way to view the actual chat that's being used by the NotificationService adapter (the BPEL server's logging mode is on DEBUG) and am not having any luck. I've also considered trying to use multiple To or Cc elements in the BPEL adapter call but the XSD strictly specifies a MaxOccurs of 1 for both of these. Is there something I'm missing here?

    Yes, It seems to be an internal, unpublished bug. Anyway, you can give reference of this thread and Bhagat Nainani for filing the backport SR.
    --Shiv                                                                                                                                                                                                                                                                                                               

  • Scheduling of Discoverer Reports and emailing output to multiple recipients

    Hi,
    Is is possible using Oracle Discoverer Server (Plus and Viewer) version 10.1.2 to schedule workbooks and then have the output of the scheduled workbooks emailed to multiple email recipients at the time the scheduled report completes?
    Kind regards,
    Leigh.

    hi,
    Within the discoverer tool there is no functional sulotion to email scheduled reports.
    This issue came up several times in the past to this forum,
    the solution is to use a third party tool that once the scheuled run is completed the third party tool will collect the output file and mail it.
    the workaround is described in MOS [ID 373812.1] How to Schedule Reports to Run at a Specific Time and Automatically E-mail The Output
    Tamir

  • Unique output for multiple customers

    One more for everyone this morning!  (RoboHelp 8.0.2.208, FlashHelp Output).  I don't think there is a way to do this, but I figured I'd ask: My project files contain many topics for an online user manual for many different customers.  Our product is customized for each customer, so while some general features of the user manual are uniform throughout, I'm using a lot of conditional build tags on the topics for each customer's unique features, and have several TOCs, one for each customer.  To the best of my current knowledge, every time I make a change to the user manual, I need to generate a new build for every customer, and push the changes to every customer.  As our list of customers grows, this maintenance is going to become a full time position.  Is there any way to generate an inclusive build that lives on our server, and point each customer to their specific TOC/Conditional Build Tagged Contents?  Any other suggestions would be greatly appreciated!!  Thank you!
    Chris

    Hi,
    You can create multiple single-source layouts (also multiple FlashHelp layouts), each with a different TOC/CBT/UDV specification. You can then easily use a batch command to generate/publish all your different layouts at once. (You can do this from RoboHelp, but you can also use a .bat file/the cmd.)
    In RH7, the batch function is in the File menu. I don't know where it's hidden in RH8.
    As for publishing to your customers, do you use Online Help, or do you deliver the files? In the first case, you can use the publishing function to publish directly after generating.
    If you send zips to your customers, perhaps a developer can write you a script to quickly zip each build and put the files in the directory you use for publishing.
    Greet,
    Willam
    This e-mail is personal. For our full disclaimer, please visit www.centric.eu/disclaimer.

  • Outputting for multiple screens / projectors

    Hello everyone
    I am preparing a video installation that I would like to project through 3 projectors onto three walls side by side. I would like to slide video clips from one wall onto the next or even stretch one video footage onto all 3 walls. (with the effect that subjects from one wall glide onto the next wall without the audience perceiving any dividing lines)
    How to do that? Doe anybody have experience with such set-ups? I was thinking that maybe I could define my project settings with a video frame that would have the hight of a standard 4:3 screen but its length would be 3 times as long. I then could insert three separate footages: one to the right, one in the center, and one on the left. - DOES THIS IDEA WORK?
    and if it works, can I then just burn a simple DVD (using DVD studio pro)? What would be the final result: 3 small projections or one big image stretching (as intended) over the area of 3 walls/projectors?
    I hope I could explain myself clearly enough! If my text seems vague, then it is because I can't really predict where during the production I could encounter problems. And it's good to start a new project with the right decisions.
    thanks for your suggestions and help,
    Hynek

    I had the opportunity to talk to two video-artists and this is their solution:
    *Matrox TripleHead2Go* http://www.matrox.com/graphics/en/gxm/products/th2go/
    (The company offers different multiple screen solutions)
    you then just edit your film on a 2160*576 Frame = 3*long normal Frame (720*576). Just make sure your pixel aspect ratio is the same as the imported video. I use a square pixel aspect ratio.
    Nevertheless, thank you for your support!
    Hynek

  • XMP output for multiple files

    Is it possible to generate separate xmp files containing metadata from several images without having to open each one manually?  I'd think it could be done using something like a Ps action run via Bridge, but doesn't look like that's possible.
    Thanks,
    Zolt

    Yes it's possible..
    Run the following code from ExtendScript Toolkit. Make sure you select the files in Bridge first.
    The xmp files will be created on the desktop.
    #target bridge
    var sels = app.document.selections;
    for(var a in sels){
    sourceFile = new Thumbnail(sels[a]);
    var Name = decodeURI(sourceFile.name).replace(/\.[^\.]+$/, '');
    var md = sourceFile.synchronousMetadata;
    var outFile = new File("~/desktop/"+Name+".xmp");
    outFile.open('w');
    outFile.encoding = 'UTF8';
    outFile.writeln(md.serialize());
    outFile.close();

  • Single ERS Invoice for multiple POs with different GS and same IP

    Dear All,
    I have a Requirement as per the below scenario:
    We need to have single invoice created using ERS (MRRL) functionality in the below scenario:
    Two POs created with different Partner function GS (goods supplier) and same IP (Invoice party partner function).
    Ex:
    GS IP PO GR ERS
    vendor1 10001 4500001 500001 Yes ( GR-IV-Yes, GR done- Yes, same payment terms - 001)
    vendor2 10001 4500002 500002 Yes ( GR-IV-Yes, GR done- Yes, same payment terms - 001)
    When I run ERS for last 1 week (GR) and select the option (Doc selection – per IP or other criteria like GRs posted in last one week) , system should create 1 invoice document. Standard SAP posts 2 documents for each GS.
    I have tried using 2 user exits for MRRL, but none of them work for this functionality.
    Thanks,

    Hi,
    Go for  MIRO without MRRL.
    Instead ERS, you can post single  Invoice(MIRO) for multiple POs  for one vendor.
    OR
    Check with Technical consultant and go for development to have single ERS output for multiple ERS invoice documents for single vendor.
    Regards,
    Biju K

  • Fax output - Chinese characters are garbled

    Hello,
    We are using fax output for two forms ( One smartform and the othe sap script). Both the form outputs are thorugh  the same fax device. For the smartform output there are no issues and the output is as expected but for the sap script output the chinese characters are garbled. Instead of the chinese characters i get output like _____ _______>,<%,,<< etc.
    Interestingly, if i have a look at the print preview or take print out there is no issue and the characters are as expected. The issue arises only during fax.
    Can someone help pls?
    Thanks,
    Venkat

    HI friend,
    I found few same post in SDN which are related to this Chinese characters in SAP Scripts.
    Please see this link and find is the problem is same as yours if so make use of it.
    Link: [Output of Sapscript in Chinese language|Output of Sapscript in Chinese language;
    Link: [Problem displaying Chinese Characters|Problem displaying Chinese Characters in SAP script form WESCHEINVERS1;
    I think these will be helpful please revert back to me after going through the links.
    Thanks,
    Sri Hari

  • PO Fax output issue

    Hi,
    We have configured FAX output for PO. The fax  output is being processed successfully.
    We have issue in which if a user processes fax output and its sent successfully from ECC but there is error at the fax machine.
    In this case, User might think he has sent the fax but actually it has not been sent successfully.
    It was decided that in cases like this, email will be sent to the user who has processed fax indicating that there was error in fax and he needs to re-send PO again. The problem here is , this email which is sent from Fax machine, is not able to specify the PO number for which the error occured.
    Is there any way that while calling the PO smart form, i have to pass PO number in specific parameter which can be picked up and send  to the user in email so that user knows specific PO which went into error.
    Please let me know incase any further information is required to answer this.
    Regards,
    Shahu

    Hi Sudhir,
    The solution in the thread are for SRM.
    Do we have any solution for the POs in ECC6 R/3?
    Thanks
    Raju

  • Submitting a Form to Multiple Recipients

    I am running into problems when I attempt to send a form to multiple recipients. I am using Acrobat Pro 8.0 and my mail client is Outlook.
    I have an interactive form that contains a submit button. I set the submit button to execute the following URL:
    mailto:[email protected]
    And everything works great. Then I tried added another recipient to the URL, something like:
    mailto:[email protected];[email protected]
    In the "Distribute Form" wizard it gives the error message "The specified return address is invalid" and I am unable to continue. I get the same message if I try to separate the 2 addresses with a comma.
    So then I looked under "Help" and it said to try adding the second e-mail address in the CC field, so I changed the URL to:
    mailto:[email protected]?cc=[email protected]
    I still get the same message.
    I'm really stumped on this one. I see no way to add the second address in a CC field other than the method above. I know it's syntax, but does anyone know the correct syntax for multiple addresses?
    Thanks in advance
    Jackie

    Unfortunately the Distribute Form wizard doesn't allow for multiple recipients. You can however, create a Submit button with multiple recipients and PDF as the format, reader-enable your form, and then manually distribute the form. Then when the form is returned you just need to manually manage your form data (i.e., import form data).

  • CS15 for multiple plants

    Hi
    Please inform, How to get report similar to  CS15 output for multiple plants?

    Hi Bhurke,
    If you want to search Material Where-used list for multiple plants, then in CS15 first screen enter where used material number and in second screen under Plant give * ( Star symbol) and execute. System will display the Material where used details across multiple plants.
    Thanks & Regards,
    Ramagiri

  • Multiple fax outputs to sales documents

    What are the different options for configuring the multiple fax outputs from a sales documet? if the faxoutput needs to be sent to 8 or 10 of their partners what is the best possible solution.

    it doesn't matter how many partners - use the same V/47

Maybe you are looking for