Using workflow to email and fax output documents

The requirement is that everytime an output is triggered for a document, the document should be emailed and/or faxed to certain contacts that are maintained on the customer master. Currently you can only email or fax to one contact at a time but we would like to do it for multiple contacts.
Can this be achieved using workflow? I am relatively novice in workflow but would like to implement it if possible.
The solution we have right now, which works by the way:
Add a function module in every driver program to extract the contact information and populate a database table
Run a batch job ever 5 mins that reads the database table and emails/fax using the contact information.
Am looking for some ideas for a more efficient way of doing it. Thank you.

yes you can sedn the mail to multiple recipients  by using ythe workflows and even you can attach the Document to the mail as a ATTACHMENT
by using differnet Fm that are available  just go to se 37 and SAP_WAPI click f4 you will find all the FM that are required.
Important: You have to use a step ACTIVITY and make it as background step because there is no need of any sort of interaction with the user while determining the Agents and after getting the result  i mean the reposible users  store them ina internal table of type SWHACTOR and
in the mail step use EXPRESSION and assign these determined agents
For this you have to bind the Task conatiner elements and workflow conatiner elements ok

Similar Messages

  • Email and fax capabilities

    We are moving from optio to xml publisher.
    We were able to send the pdf to printer using pasta. I have no clues how to send the output to Email and Fax server.
    Any pointers in that direction would be appreciated.
    Thanks in advance,
    Suman

    We are moving from optio to xml publisher.
    We were able to send the pdf to printer using pasta. I have no clues how to send the output to Email and Fax server.
    Any pointers in that direction would be appreciated.
    Thanks in advance,
    Suman

  • Email and fax a form

    Hi ,
           how can we send a form output as email and fax ? How to do the config for this? Can you explain the process to be done?
    Rama.

    Hi,
    See following code :
    REPORT zmail_att NO STANDARD PAGE HEADING LINE-SIZE 200.
    DATA : BEGIN OF ITAB OCCURS 0,
    PERNR LIKE PA0001-PERNR,
    ENAME LIKE PA0001-ENAME,
    END OF ITAB.
    DATA: message_content LIKE soli OCCURS 10 WITH HEADER LINE,
    receiver_list LIKE soos1 OCCURS 5 WITH HEADER LINE,
    packing_list LIKE soxpl OCCURS 2 WITH HEADER LINE,
    listobject LIKE abaplist OCCURS 10,
    compressed_attachment LIKE soli OCCURS 100 WITH HEADER LINE,
    w_object_hd_change LIKE sood1,
    compressed_size LIKE sy-index.
    START-OF-SELECTION.
    SELECT PERNR ENAME
    INTO CORRESPONDING FIELDS OF TABLE ITAB
    FROM PA0001
    WHERE PERNR < 50.
    LOOP AT ITAB.
    WRITE :/02 SY-VLINE , ITAB-PERNR, 15 SY-VLINE , ITAB-ENAME, 50
    SY-VLINE.
    ENDLOOP.
    Receivers
    receiver_list-recextnam = 'XXXXX@X...'. --> EMAIL ADDRESS
    RECEIVER_list-RECESC = 'E'. "<-
    RECEIVER_list-SNDART = 'INT'."<-
    RECEIVER_list-SNDPRI = '1'."<-
    APPEND receiver_list.
    General data
    w_object_hd_change-objla = sy-langu.
    w_object_hd_change-objnam = 'Object name'.
    w_object_hd_change-objsns = 'P'.
    Mail subject
    w_object_hd_change-objdes = 'Message subject'.
    Mail body
    APPEND 'Message content' TO message_content.
    Attachment
    CALL FUNCTION 'SAVE_LIST'
    EXPORTING
    list_index = '0'
    TABLES
    listobject = listobject.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    compressed_size = compressed_size
    TABLES
    in = listobject
    out = compressed_attachment.
    DESCRIBE TABLE compressed_attachment.
    CLEAR packing_list.
    packing_list-transf_bin = 'X'.
    packing_list-head_start = 0.
    packing_list-head_num = 0.
    packing_list-body_start = 1.
    packing_list-body_num = sy-tfill.
    packing_list-objtp = 'ALI'.
    packing_list-objnam = 'Object name'.
    packing_list-objdes = 'Attachment description'.
    packing_list-objlen = compressed_size.
    APPEND packing_list.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    object_hd_change = w_object_hd_change
    object_type = 'RAW'
    owner = sy-uname
    TABLES
    objcont = message_content
    receivers = receiver_list
    packing_list = packing_list
    att_cont = compressed_attachment.
    Reward points if helpful.
    Regards.
    Srikanta Gope

  • Adobe forms - Email and fax

    Hi,
    Does anyone have any idea about how a adobe form(tcode-SFP) can be sent through email and fax?
    I have created an interest form and have to send it accross to the customer maintained in the customer master when i run transaction code FINT.
    Help will be highly appreciated.
    Regards,
    Rasika
    Moderator Message: There is a seperate forum for Adobe Interactive Forms. Please post your question there.
    Edited by: kishan P on Nov 2, 2010 11:26 AM

    Hi,
    Thanks for reply
    The link u mentioned utilises Objects.. but can we send internet mail using this?
    As we cannot change RECIPIENT TYPE in this case in the object.
    I used this format in the program but the attachment is going to EXpress inbox. and goes to my SAP Inbox instead of Email .
    So what changes we need to do for this.
    Alternatively,  can we use FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' for this purpose?
    Edited by: Rohit Pareek on Feb 3, 2009 3:36 PM

  • Send Bid invitation to Email and Fax

    Hi,
    I would like to know if is it possible to send the bid invitation to the vendors via Email and Fax.
    I'm looking in the PPF administration (transaction SPPFCADM) at condition configuration but i'm kidda lost....
    can someone help?
    Thank you,
    Joseph

    Hi,
    Pls see the foll related threads:
    email on  bid invitation publication
    Email on Bid Invitation publication
    Re: Bid Invitation Email Subject
    Re: Bid invitation email content text modification
    Re: email on creation/change of  bid invitation and auction
    Re: Bid invitation email content text modification
    BR,
    Disha.
    Pls reward points for useful answers.

  • SAPScript to email and fax

    Hi guys,
    We want to end the sapscript thru email and fax. Can you help us how we can do that?
    The sequence should be, the sapscript will first be converted to PDF file before ending thru mail.
    Thanks a lot for all the help.
    Rgds,
    Mark

    Thanks Eswar,
    I am already successful with my pdf file,,, I am not sure what would I introduce to 'SO_DOCUMENT_SEND_API1' parameters for it to be successful...
    I have the sample code below:
    data: i_otfdata type STANDARD TABLE OF itcoo WITH HEADER LINE,
          i_pdfdata TYPE STANDARD TABLE OF tline WITH HEADER LINE,
          i_itcpp TYPE STANDARD TABLE OF itcpp WITH HEADER LINE.
    data: i_docs type STANDARD TABLE OF docs WITH HEADER LINE,
          v_len type i.
    CALL FUNCTION 'CLOSE_FORM'
       IMPORTING
         RESULT = i_itcpp
        TABLES
          otfdata = i_otfdata
        EXCEPTIONS
          unopened = 1
          OTHERS   = 2.
    CALL FUNCTION 'CONVERT_OTF_2_PDF'
       EXPORTING
         USE_OTF_MC_CMD               = 'X'
        ARCHIVE_INDEX                =
       IMPORTING
         BIN_FILESIZE                 = v_len
        TABLES
          otf                          = i_otfdata
          doctab_archive               = i_docs
          lines                        = i_pdfdata
       EXCEPTIONS
         ERR_CONV_NOT_POSSIBLE        = 1
         ERR_OTF_MC_NOENDMARKER       = 2
         OTHERS                       = 3
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data                    =
        PUT_IN_OUTBOX                    = ' '
        SENDER_ADDRESS                   = SY-UNAME
        SENDER_ADDRESS_TYPE              = 'B'
        COMMIT_WORK                      = ' '
      IMPORTING
        SENT_TO_ALL                      =
        NEW_OBJECT_ID                    =
        SENDER_ID                        =
        tables
          packing_list                     =
        OBJECT_HEADER                    =
        CONTENTS_BIN                     =
        CONTENTS_TXT                     =
        CONTENTS_HEX                     =
        OBJECT_PARA                      =
        OBJECT_PARB                      =
          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

  • App Store keep using an old email and so I can't update

    App Store keep using an old email and so I can't update how can I update my Apps?

    Hi I have tried your suggestion thank you but I had no luck . So I logged a case with Apple and they said the following:
    I have gone through your issue and I would like to inform you that you cannot update or transfer you purchased items from one account to another account. I have good news for you can access your purchases from your old email address by contacting our Account Security Team.
    for a faster resolution you need to contact our Account Security Team (AST) via Phone to schedule a call at your preferred time and they will verify the identity of your account and help you right away. To contact an Account Security Advisor, follow the on screen steps provide in the below articles:
    Contact Apple ID Account Security
    http://support.apple.com/kb/HT204169
    you also have an option to call them directly by calling the below phone number:1-800-275-2273
    Note: Please ask you need to speak to an account security advisor and provide the case number

  • I mistyped my apple id using a wrong email and forgot the password as well how can i solve this problem

    i mistyped my apple id using a wrong email and forgot the password as well how can i solve this problem?
    i can't access i cloud i need to change the id but i can't how can i do that?
    thanks

    Does she not remember her id nor her password ? She can see if she can get the id and the password for it reset via this : http://iforgot.apple.com
    Activation lock : http://support.apple.com/kb/TS4515

  • If I use a friends email and password on my laptop, will I still get the songs on my iTunes?

    I want to buy a $10.99 Album and I only have a $10.00 gift card. So a friend of mine offered to use his/her email and password. If I use his/her email and password on my laptop, would the album go to my iTunes still?

    In order to play songs with iTunes on your computer that were downloaded with another iTunes account, your computer must be authorized with that iTunes account with iTunes.

  • To send smartform output through email and fax

    Hi,
    I need to send smartform output through email if the email address is present else if the email address is present then it has to be sent through fax.If both the email address and fax are present,then it has to send an email.
    Now the issue is I am able to send the email and I am getting the message as 'Output was successfully issued'.But the entry corresponding to this is not shown in SOST transaction.
    Can anyone tell me what would be the reason for this?

    HI,
    Try to look in transaction SCOT
    Regards,
    Egle

  • Email and Fax functionality

    I have the following query....
    Working currently on BI7.0 and the reports are currently on the Enterprise Portal of client.
    I want to execute the query on the EP and send the output directly onto several email ids and fax them.
    How can i do the same without using Information BroadCasting in BI7.0
    Regards

    information broadcasting cannot be used as part of specification document.
    Regards

  • Emailing and Faxing forms to customers

    Hi,
    I want to printing email address and phone number of someone (customer service representative or so)  generating invoice in FB70 on the invoice form that will print and send to customer.
    I also want to send the invoice form to email output or fax output direct to the customer.  I know the email addresses and fax numbers of customers can be maintained in the customer master but how do I configure to send the form direct to the fax or email?
    Can someone give me guidance how the aachieved?
    Thanks
    D

    hi
    Check the distribution property in the property inspector of the Report (Top item in the object browser)
    There you can set the list of files to be produced
    You can specify the file name, type etc
    hopt this will help you
    regards

  • The printer in firefox wants to print out a "3 page list of emails" and NOT the document I requested

    The printer prompts in Firefox to print a document all appears as good same as in a Word or Excel Doc - which DOES print files properly.
    In Mozilla FF the document requested will produce a list of ~ 3 pages of my emails or NOT the document requested.
    == This happened ==
    Every time Firefox opened
    == About 3 or 4 months back

    Thanks Ed for your response. I use g mail if this helps.
    It is weird as sometimes it will print correctly and most other times, not. Greg
    Message:
    File > Print Preview will display what Firefox is going to print.
    1. Firefox doesn't do email, so you are probably referring to problems with a web mail service - which one?
    2. Without us having access to that same web mail service we would have to guess about what your problem is - I can only guess that there is a button to display a "printer ready" version of an email that you need to use so the email you are reading is displayed all by itself and thus only that is printed.

  • I am using Mail for emails and I seem to have two different windows that switch between the two.  The emails are the same but the second window opens when I click on any details and I cannot see the top of my screen with control icons for internet, file

    I am not very tech savy and apologize in advance if my question is not clear.  I use the Mail application on my mac and I have two users on my computer, one for gmail and another for my work email.  All email addresses appear in the mail application on one page.  When I open my email and click on a message it often goes to the other user screen and cuts off the top of my screen which shows the bar for Chrome, file, edit, view, history etc....Still functional but very annoying.  How do I choose a user screen and stop having it switch back and forth. 
    Thank you.

    Mail troubleshooting - Yosemite
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • Using Mountain Lion iOS and audio output will not change from internal speakers to AppleTV so that sound can come from TV speakers, why??

    I am using Mountain Lion iOS and trying to connect my MacBook Pro to my plasma TV using AppleTV and AirPlay mirroring.     The video does just fine.     However, there is no audio coming from the TV.     After activating AirPlay I try to select Apple TV as the audio output in System Preferences and it highlights it but then immediately goes back to Internal Speakers and only has sound coming from the MacBook Pro..
    What's going wrong ?????
    AJ

    Are you sure that WIFI network doesn't have an AppleTV on it?  Just because you don't own it doesn't mean there isn't one on that network.  The laptop or better said the OS cannot differentiate between an AppleTV that you own or not.  If it sees one on the network, it will show you one as being available.  The automatic reconnection is happening probably because the last time you streamed to an AppleTV, you didn't drop that connection before sleeping the computer or shutting down iTunes.

Maybe you are looking for