Idoc error via email

Hi Guys,
is it possible to send the IDOC errors to the business User via email.
1. I Know we can use workflow to send email
is there any other way not doing Abap coding.
Regards,
Kumar

closed

Similar Messages

  • Hardware Error Reporting Via Email

    Hello All
    I have a question i hope someone can help me out with.
    what i want to know is if there is a oem and or third part software that would send you server errors (mainly looking at windows) via emails. For example: if a hardware issue was to arise with lets say a HDD or some other component and the error is logged.
    Would i be able to get a program to send me that error via email automatically every time an issue arises with a any hardware component or software.
    Thanks in advance.

    Hi,
    what you really need is a monitoring tool. Something like say System Center Operation Manager, nagios, HP SIM...
    Many OEMS (HP, Dell, IBM/Lenovo,..) offer specific tools and configuratiotns for server grade hardware. this mostly consists of an IPMI with some vendor specifics (think HP ILO, Dell iDrac,..). this is modelspecific hardware to monitor (and configure) the
    hardware. Most of these can send out emails.
    Yous should never rely on the local server (only) to alert you of problems; it might be on fire when it needs to send out that mail! Have dedicated monitoring hardware.
    MCP/MCSA/MCTS/MCITP

  • Interfacing error notified via email

    Hi Gurus.
    My client is going to implement interfacing between Mercia ( Third party software) to SAP for some functionality.
    The requirement is
    The business will need to be notified via email or SAP Idoc when an error has occurred with Mercia or SAP that prevents users accessing the Mercia database, weekly schedule run, month end procedures, and any other interface failure. (depending upon the error should determine which method either email or Idoc)
    How can user will recieved mail If interfacing program having some error.

    Hi,
    try using IDOCMSG business object.
    Create a custom event to trigger to workflow. Find out some user exit or BAdi to trigger the workflow.
    Then use a send mail step and send a notification to the desired user.
    Regards,
    Raj

  • Error opening PDF file when send as attachment via email

    Hi,
    I searched around the forum to resolve my issue and there's alot of post that is related but i can't find any answer to my issues.
    Here's the scenario :-
    I try to convert the smartform to PDF and then send the PDF as an attachment via email.
    After converting the smartform to PDF, i managed to download the file and view it without any problem but i can't view the PDF as an attachment. It has the following error :-
    Adobe Reader could not open '4500002325.PDF' because it is either not a supported fle type or because the file has been damaged (for example, it was sent as an email and wasn't correctly decoded
    The following is the snapshot of my code:-
    * Determine smartform function module for invoice
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = lf_formname
        IMPORTING
          fm_name            = lf_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
    *  error handling
        ent_retco = sy-subrc.
        PERFORM protocol_update_i.
      ENDIF.
      ls_control_param-getotf = 'X'.
      CALL FUNCTION lf_fm_name
        EXPORTING
          archive_index        = toa_dara
          archive_parameters   = arc_params
          control_parameters   = ls_control_param
          mail_recipient       = ls_recipient
          mail_sender          = ls_sender
          output_options       = ls_composer_param
          zxekko               = l_doc-xekko  " user_settings = ' '
          zxpekko              = l_doc-xpekko
        IMPORTING
          document_output_info = l_ssfcrespd
          job_output_info      = l_ssfcrescl
          job_output_options   = l_ssfcresop
        TABLES
          l_xekpo              = l_doc-xekpo[]
          l_xekpa              = l_doc-xekpa[]
          l_xpekpo             = l_doc-xpekpo[]
          l_xeket               = l_doc-xeket[]
          l_xtkomv             = l_doc-xtkomv[]
          l_xekkn              = l_doc-xekkn[]
          l_xekek              = l_doc-xekek[]
          l_xkomk              = l_xkomk
        EXCEPTIONS
          formatting_error     = 1
          internal_error       = 2
          send_error           = 3
          user_canceled        = 4
          OTHERS               = 5.
      IF sy-subrc = 0.
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            FORMAT                = 'PDF'
          IMPORTING
            BIN_FILESIZE          = v_len_in
            BIN_FILE              = v_bin_file
          TABLES
            OTF                   = l_ssfcrescl-otfdata
            LINES                 = l_pdf
          EXCEPTIONS
            ERR_MAX_LINEWIDTH     = 1
            ERR_FORMAT            = 2
            ERR_CONV_NOT_POSSIBLE = 3
            ERR_BAD_OTF           = 4
            OTHERS                = 5.
    * email subject
        CONCATENATE 'Purchase order' l_doc-xekko-ebeln INTO lw_subject
                    SEPARATED BY space.
    * RECIPIENTS
        lwa_recipients-rec_type = 'U'.
        lwa_recipients-express = 'X'.
        SELECT adr6~smtp_addr
        INTO TABLE gv_smtp_addr
        FROM ekko AS ekko INNER JOIN
             lfa1 AS lfa1 ON ekko~lifnr      = lfa1~lifnr INNER JOIN
             adr6 AS adr6 ON adr6~addrnumber = lfa1~adrnr
        WHERE ekko~ebeln = l_doc-xekko-ebeln.
        IF NOT gv_smtp_addr[] IS INITIAL.
          LOOP AT gv_smtp_addr INTO gv_smtp_addr_line FROM 2.
            lwa_recipients-receiver = gv_smtp_addr_line.
            lwa_recipients-copy = ''.
            APPEND lwa_recipients TO ptb_recipients.
          ENDLOOP.
    * Text Data
            CALL FUNCTION 'READ_TEXT'
              EXPORTING
                id                      = 'ST'
                language                = 'E'
                name                    = 'TEST'
                object                  = 'TEXT'
              TABLES
                lines                   = lv_lines
              EXCEPTIONS
                id                      = 1
                language                = 2
                name                    = 3
                not_found               = 4
                object                  = 5
                reference_check         = 6
                wrong_access_to_archive = 7
                OTHERS                  = 8.
          LOOP AT lv_lines INTO lv_lines_line.
            ltb_objtxt = lv_lines_line-tdline.
            APPEND ltb_objtxt.
          ENDLOOP.
          DESCRIBE TABLE ltb_objtxt LINES lw_tab_lines.
          READ TABLE ltb_objtxt INDEX lw_tab_lines.
    * document data contains information for the whole message
          lwa_doc_chng-obj_descr = 'ABAPlist'.
    * Control Data
          lwa_doc_chng-obj_name   = 'TESTING'.
          lwa_doc_chng-sensitivty = 'F'.
          lwa_doc_chng-no_change  = 'X'.
          lwa_doc_chng-priority   = '1'.
          lwa_doc_chng-obj_prio   = '1'.
          lwa_doc_chng-obj_langu  = sy-langu.
          CLEAR ltb_objpack-transf_bin.
    *Attachment
    *Move the binary attachment to other internal table.
          ltb_objpack-head_start = 1.
          ltb_objpack-head_num   = 0.
          ltb_objpack-body_start = 1.
          ltb_objpack-body_num   = lw_tab_lines.
          ltb_objpack-doc_type   = 'RAW'.
          APPEND ltb_objpack.
          clear : lw_tab_lines.
    *Get the number of lines in the Attachment (PDF FILE)
    *      DESCRIBE TABLE it_mess_att LINES lw_tab_lines.
          DESCRIBE TABLE l_objbin lines lw_tab_lines.
          ltb_objpack-transf_bin = 'X'.
          ltb_objpack-head_start = 1.
          ltb_objpack-head_num   = 1.
          ltb_objpack-body_start = 1.
          ltb_objpack-body_num = lw_tab_lines.
          ltb_objpack-doc_type = 'PDF'.
          ltb_objpack-obj_descr = l_doc-xekko-ebeln.
          ltb_objpack-doc_size = lw_tab_lines * 255.
          APPEND ltb_objpack.
    *Email Subject
          lwa_doc_chng-obj_descr = lw_subject.
            lwa_recipients-receiver = recipeint.
            lwa_recipients-rec_type = 'U'.
            lwa_recipients-copy     = 'X'.
            lwa_recipients-express  = 'X'.
            APPEND lwa_recipients TO ptb_recipients.
          CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
            EXPORTING
              document_data = lwa_doc_chng
              COMMIT_WORK   = 'X'
            TABLES
              packing_list  = ltb_objpack
              contents_bin  = l_objbin
              contents_txt  = ltb_objtxt
              receivers     = ptb_recipients.
          IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
        ENDIF.
      ENDIF.
    Edited by: ~loObie on Apr 23, 2010 12:01 PM
    Edited by: ~loObie on Apr 23, 2010 12:02 PM

    Did you send the pdf in the following format ...
    2. Sending PDF as mail.
    CLEAR t_receivers.
    REFRESH t_receivers.
    t_receivers-receiver = sy-uname.
    t_receivers-rec_type = 'B'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    APPEND t_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    IMPORTING
    sent_to_all = w_sent_all
    TABLES
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_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.
    Quote from the Following [LINK|http://www.sap-basis-abap.com/smartforms/convert-the-smart-form-into-pdf-and-send.htm]

  • Error message received submitting form via email - "Acrobat cannot connect to the server"

    Some of my users are unable to submit form data.  The forms are set up to be submitted via email and only a few of the users are effected.  They have installed the latest versions of both Acrobat and Adobe Reader.
    "Acrobat cannot connect to the server, but will automatically submit your form once the server is online.  You can check tracker for the status of this submission."
    "You have already submitted the data on this form and it is waiting to be sent.  Further changes are not allowed until the prior data is sent."
    I know that this question has been asked before, but there has not been a response.  This is very frustrating.
    Thanks for any help or sugesstions.

    I have this exact same error, but also have not yet found a workaround.
    Only sporatic users get the error, and I've been unable to duplicate it from my machine.  I am on Adobe Reader v 10.1.2.
    Actually I can get around the error if I were to downgrade to Adobe v9, but that is a bandaid fix - not really a secure answer.

  • I am developing a book via email with a collaborator. iBooks Files are sent to me via a link to preview on iPad. This worked fine for a while but now getting download errors and the unhappy mac face saying download failed. Any ideas?

    I am developing a book via email with a collaborator. iBooks Files are sent to me via a link to preview on iPad. This worked fine for a while but now getting download errors and the unhappy mac face saying download failed. Any help appreciated. Very frustrating!

        I can see that this issue has been quite extensive, and frustrating, and I am so sorry for all that has happened societygirl! I would like to help you work this issue out. Please follow & send me a Direct Message, so I can get your account specifics and help finally bring this to a resolution.
    Thank you,
    MichelleH_VZW
    Follow us on Twitter @VZWSupport

  • Error when sending a document link via email

    Hi people,
    I am on SAP EP 6.0 SP15 and below I describe my scenario.
    I have some documents created in some KM folders. Today, I tried to send one of those documents via email to another portal user. If I go through Send To > Send Copy..., that other portal user receives the email with the document attached and he is able to open it... so far so good.
    However, if i try to send the same document but now using a link (Send To > Send Link...), the other guy receives the email, but the link results in a 404 error when clicked.
    I investigated a little and found that the link sent contains "" signals to indicate spaces in the folder names, instead of "%20". I believe this is the issue, because if I change manually the "" signals to "%20", the link works perfectly.
    My question is: is there a way to configure the sistem to use "%20" instead of "+" to represent spaces? Or I will have to remove the spaces from ALL my folder names?
    Thanks
    Fernando Urzedo

    Hi Fernando,
    this seems to be a bug. In the release notes of KMC SPS16 incl. P1, this is not reported as fixed (on the other hand, not every fixed bug gets reported in the release notes).
    You could try to patch your portal first; if you don't can do this at the moment or if the bug persists after patching, please open an OSS message.
    Hope it helps
    Detlev

  • Working on Lion, trying to share photos via email, error message: "The email server didn't recognize your username/password combination".  Regular email works fine, don't know how to fix this.

    Having trouble with sharing photos via email on my desktop Imac.  Error Message when I try to send: "The email server didn't recognize your username/password combination.  Normal email inbox/outbox works fine, error message only comes up when using "Sharing photos".
    Not sure how to fix this, please help.

    Are you trying to email directly from iPhoto? If so, check iPhoto>Preferences>Accounts tab and make sure your details are entered correctly there.

  • I cannot send docs via email constant error message.

    Whenever I try to send a document via email i get a constant error message. Any ideas?

    Very difficult to help when you don't provide any information.

  • Iphoto can't share via email; error message: Your email did not go through because the server did not reply.

    I can never share via email, using iPhoto. The error: Your email did not go through because the server did not reply. always pops up. I have no problems with my server or internet connection.
    Any ideas?
    thanks.

    Go into iPhoto's Accounts preference pane and delete the   email account there. Then add it back.  If that fails you can select Mail as your email client in iPhoto as that's more reliable and flexible.  It also offers stationary for photos that are not unlike those in iPhoto's client:
    and using Mail as the client will allow you to have a Sent copy automatically.
    OT

  • My Photoshop 9 will not send pictures via email. " services are currently unavailable" error 400  e

    Cannot share photos via email, get sign in then "Photoshop services are currently unavilable, try later. error 400.

    You can stop trying. Photoshop.com is dead and gone, as are the things that relied on it, like the downloadable content in the editor and your contact book in the organizer and so on. If you had any photos stored on photoshop.com, you should have received a bunch of emails about their getting moved to adobe revel, but revel is not a direct equivalent to the services that were available in photoshop.com. More info here:
    http://barbarabrundage.com/2013/09/16/pse-8-9-10-cant-sign-in-error-404/

  • Submit via email: Error

    Hi- Been trying to make a functioning "Submit via email" button. I used the Form rather than the Submit buttin in Livecycle, chose PDF in the Object menu, and put my list of email addresses in there. This is for inter-office use only, we all use Outlook. I have saved my Livecycle form as Reader-Enabled. Our employees will be filling the form in Adobe Reader, then I would like them to be able to just click a button on the form to email the filled PDF to everyone else in the company (all the addresses in the Object palette field).
    https://dl.dropbox.com/u/78503370/AFBS_NewFacility_DRE.pdf
    I think it worked once when I tested it in Livecycle Preview. Now, testing it in both Acrobat and Reader, absolutely nothing happens.
    How on earth can I get this to work?
    many thanks!
    Laura

    Hi  Radzmar,
    Thank you for responding! When I look at the button on the Object palette, it says that it's a regular button: not an email button, not an http button: how can you tell it's an http button?
    I had read in the forums that you have to use the regular button in the Object Library to create an email submit button because the email button in the Object Library does not allow you to  specify to email as a PDF rather than just the data. At this point I'm a little confused...
    Many thanks!
    Laura

  • Error When Trying To Send MMS via email

    Ive been trying to send an MMS via email. Ive got it to work a couple times but other times I get a message that says: MAILER-DAEMON.....etc....remote host said: 550 SMTP connection refused [BODY]"....
    I sent the pic message to a verizon phone by emailing to [email protected]
    please help. thanx.
    kev

    I'm not sure why a Verizon subscriber not updating the PRL for their phone affects this, but it can.
    As already provided, ask the Verizon subscriber to update the PRL for their phone per the instructions included with this link, which should resolve the problem.
    http://www.verizonwireless.com/care/popups/prl.html

  • Error sending pictures via email

    My phone has just started sending blank pictures via email, it sends file to facebook & whattapp. it has sent them in the past but has recently stopped, i've no upgrades or done anything different on the phone, help!!

    Hi and Welcome to the Community!!
    I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to arrive to your Messages app
    2) Delete and Resend Service Books
    KB05000Delete the service book for the BlackBerry Internet Service email account from the BlackBerry smartphone
    If you have no CMIME entry, then skip the deletion
    KB02830 Send the service books for the BlackBerry Internet Service
    Please wait for "Activation" Messages, one per already configured email account, to arrive in your Messages. If you have no already configured email accounts, please wait 1 hour.
    3) Batt Pull Reboot
    With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should try deleting and re-adding your BIS configuration for the affected email accounts. Otherwise, you should contact your mobile service provider for formal support.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Pdf via email back in 2011: error stating decoded

    I have to gain access to a years worth of files from 2011 that I downloaded from my company back when I workded with them on travel data.  I sent them to myself via email, when I left the company for tax purposes and now cannot open up.  I have tried multiple versions, a trail version of full adobe.  I downloaded Quicktime as one suggested, no luck, I created a copy and removed the pdf ext again with no luck.  someone suggested they may be pics not pdf, attempted to open in pic programs, no luck.   I am in the middle of an IRS audit and this information is needed, please help.  I don't know what to do to get these files to open.

    What is your operating system?  Reader version?
    What is the exact message you are getting?

Maybe you are looking for

  • Docuemnt uploading not opening in cv01n

    Dear all We want to upload a document in the SAP system by using portal We have created a Z RFC and in this rfc we are calling : SCMS_XSTRING_TO_BINARY  to convert to binary BAPI_DOCUMENT_CREATE2 : when debugging , the docuemtn number is generated CV

  • Will an epson photo 2400 scanner work with OSX 10.7?

    Will an epson photo 2400 scanner work with OSX 10.7? If so where do I get the drivers/software to run it? I have used it with aquire, but only in flat bed scanning. I am not able to use the film/slide mode anymore because the software that came with

  • Cisco Prime Collaboration and SIP Codes

    I am trying to position Cisco Prime Collaboration with a Cisco CUBE router and the client wants to know if Prime will be able to do the following: 1) Scan, index and alert on configurable SIP 4xx, 5xx, 6xx 2) Look at acive inbound/outbound calls

  • Can I write in greek on pages?

    Can I write Greek on pages? Many people say to use symbols but I don't know how to.

  • When is it safe to unplug a mounted usb drive?

    I'm making a headless media player that I want to automatically play music off of any usb stick or hard drive plugged into it. Because it doesnt have a monitor users wont be able to unmount the drive. If the drive is mounted read only is there any po