Sending document in body of message

I've designed a document using Pages and I need to send it out by mass mail to non-Mac users. How can I save it and put it into the body of a mail message, rather than as an attachment? I understand how to save to Word or PDF, but not how to make it the entire message. Thanks.

If you cut and past from Pages, you'll get the fonts and whatnot, but much of the formatting doesn't carry over. To really get it right, you need to paste the pages in as images -- which is simple enough.
Format your content in Pages, then print, but rather than print to you regular printer, go to the lower left corner of the print dialog, click on the PDF button, and select 'Open in Preview'.
Once in preview, select a page and press command-C or select Edit >> Copy from the menu, then go to Mail, click in the message body, and press command-V or select Edit >> Paste from the menu. What this does is copies the page to the clipboard as an image and then pastes the page as an image into your e-mail.
It's no where near as decent quality as attaching an actual PDF, but it will permit you to do what you want.

Similar Messages

  • Send Document via message determination

    Dear Friends
    We are using DMS (Document Management System) and I would like to know some things:
    u2022 I would like to see at item level an icon which shows if the material have attached documents when I am doing my purchase requisition. How can I do it?
    u2022 I would like to send to the vendor via message determination the Drawings as an attachment with my request for quotation. How can I do it?
    Regards,
    Carlos Pallares

    Hi Manuel,
    This is not available in standard functions. For this you need help from expert Abap'r who cam write a program for sending mail intimation with purchase requisition as a dms attachment.
    Hope this will help.
    Regards,
    Ravindra

  • Send Document via message determination/icon which shows attached documents

    Dear Friends
    We are using DMS (Document Management System) and I would like to know some things:
    u2022 I would like to see at item level an icon which shows if the material have attached documents when I am doing my purchase requisition. How can I do it?
    u2022 I would like to send to the vendor via message determination the Drawings as an attachment with my request for quotation. How can I do it?
    Regards,
    Manuel Nuñez

    Hi Manuel,
    This is not available in standard functions. For this you need help from expert Abap'r who cam write a program for sending mail intimation with purchase requisition as a dms attachment.
    Hope this will help.
    Regards,
    Ravindra

  • How to send binary data in the message body

    How can we send binary data in the message body that is base64 encoded? below are the requirements
    Mime Header.
    Mime-version: 1.0
    Content-Type: application/octet_stream; name=test
    Content-Transfer-Encoding: Base64
    Submission must be named "test.sub" (lowercase)
    Submission must be base64 mime-encoded
    Submission must be sent in the body of the message (not as an attachment)
    Only one submission per mail message
    No other comments should be put in the body of the mail message (other than the submission)
    I highly appreciate your help. If you can provide few examples, that will be very helpfull.
    Thanks,
    Madan

    Use Message.setContent to set the content, or use Message.setDataHandler with
    a DataHandler constructed with a ByteArrayDataSource. If the content is not
    "naturally" encoded in base64, you can enforce it by setting the Content-Transfer-Encoding
    header to "base64". Any reasonable mail reader won't care what encoding you use, as
    long as the decoded data is correct.

  • Payment advice notes by email (change in sender id) and body

    Hi experts ,
    I am trying to change the sender name and body of the mail that is send by mail.does this code work i called SO_NEW_DOCUMENT_ATT_SEND_API1 in Z_PAN_EMAIL_00002040.
    look in the code and also tell me me does this work out. can some one tell me what is the 'SAPoffice'  in this code. (ls_document_data-obj_name  = 'SAPoffice'.) in fill document data part.
    FUNCTION Z_PAN_EMAIL_00002040.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(I_REGUH) LIKE  REGUH STRUCTURE  REGUH
    *"  CHANGING
    *"     REFERENCE(C_FINAA) LIKE  FINAA STRUCTURE  FINAA
    data: zadrnr     like adr6-addrnumber,
          zsmtp_addr like adr6-smtp_addr,
          zremark    like adrt-remark,
          begin of zcon occurs 0,
              zadrnr     like adr6-addrnumber,
              zconnumber like adr6-consnumber,
              zsmtp_addr like adr6-smtp_addr,
          end of zcon.
          refresh zcon.
          select single adrnr into zadrnr from lfa1 where
                              lifnr = i_reguh-lifnr.
          if sy-subrc = 0.
             select addrnumber consnumber smtp_addr into table zcon
             from adr6 where addrnumber = zadrnr.
          endif.
             loop at zcon.
                  clear zremark.
                  select single REMARK INTO ZREMARK FROM ADRT
                                   where addrnumber = zcon-zadrnr
                                   and consnumber = zcon-zconnumber.
                  TRANSLATE zREMARK TO UPPER CASE.
                  if sy-subrc = 0 and zremark = 'REMIT'.
                     zsmtp_addr = zcon-zsmtp_addr.
                     exit.
                  endif.
             endloop.
             IF zsmtp_addr <> ' '.
       search zsmtp_addr for 'britishcouncil' .
       if sy-subrc <> 0.
      code modified to check if sy-subrc = 0.
               C_FINAA-NACHA = 'I'.
    CODE MODIFIED AS PER SAP NOTE  1033893 .
          C_FINAA-NAMEP = 'Testname'.
        internet address of partner company clerk has been changed by pradeep akula as per requirements.
          C_FINAA-INTAD = zsmtp_addr.
          C_FINAA-FORNR = 'Z_F110_IN_AVIS2'.
      this zzmail_sender_addrr and zzmail_body_text  did not work in testing.
         C_FINAA-ZZMAIL_BODY_TEXT = 'This is a test body text'.
         C_FINAA-ZZMAIL_BODY_TEXT = 'Payment Advice Notes attached, please do not discard this message .All vendors should please add their company name'.
       endif.
    ENDIF.
    code changes done by pradeep akula for Body of mail .
    CLASS cl_abap_char_utilities DEFINITION LOAD.
    TYPES: t_solisti1 TYPE TABLE OF solisti1,
          t_sopcklsti1 TYPE TABLE OF sopcklsti1,
          t_somlreci1 TYPE TABLE OF somlreci1.
    DATA: lt_content       TYPE t_solisti1,
          lt_packing_list  TYPE t_sopcklsti1,
          lt_header        TYPE t_solisti1,
          ls_document_data TYPE sodocchgi1,
          l_subject        TYPE solisti1-line,
          l_content_lines  TYPE i,
          lt_receiver      TYPE t_somlreci1,
          l_address        TYPE adr6-smtp_addr,
          l_new_object_id  TYPE sofolenti1-object_id,
          l_sent_to_all    TYPE sy-binpt,
          l_msg_text       TYPE string,
          l_rc             TYPE sy-subrc,
          l_user           TYPE sy-uname.
    DATA:  l_crlf(2)             TYPE  c.
    DATA:  BEGIN OF crlf,
             x(1) TYPE x VALUE '0D',
             y(1) TYPE x VALUE '0A',
           END OF crlf.
      l_crlf = cl_abap_char_utilities=>cr_lf.
    receiver address
      DATA: ls_receiver TYPE somlreci1.
      ls_receiver-receiver = zsmtp_addr.
    receiver address type (internet address)
      ls_receiver-rec_type = 'U'.
    communication type (send via internet)
      ls_receiver-com_type = 'INT'.
      APPEND ls_receiver TO lt_receiver.
    SAP name: used for the shortcut to the inbox (optional)
    l_user = p_user.
    l_user = ' '.
    mail subject
    l_subject = p_subj.
    DATA: ls_content TYPE solisti1,
          ls_header  TYPE solisti1.
    fill the document data.
      READ TABLE lt_content INDEX l_content_lines INTO ls_content.
      ls_document_data-doc_size =
        ( l_content_lines - 1 ) * 255 + STRLEN( ls_content ).
      ls_document_data-obj_name  = 'SAPoffice'.
      ls_document_data-obj_descr =  'Test mail form payment advice its working'.
      ls_document_data-obj_prio = 5.
      ls_document_data-priority = 5.
    fill data of mail
      DATA: ls_packing_list TYPE sopcklsti1.
    update the packing list.
      ls_packing_list-transf_bin = ' '.
      ls_packing_list-body_start = 1.
      ls_packing_list-body_num = l_content_lines.
      ls_packing_list-doc_type = 'RAW'.
      APPEND ls_packing_list TO lt_packing_list.
      ls_header-line = 'Test header - Vish'.
      append ls_header to lt_header.
      ls_content-line =   'Test mail form payment advice what you want to print here'.
      append ls_content to lt_content.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = ls_document_data
          commit_work                = 'X'
        IMPORTING
         sent_to_all                = l_sent_to_all
          new_object_id              = l_new_object_id
        TABLES
          packing_list               = lt_packing_list
          object_header              = lt_header
          contents_txt               = lt_content
          receivers                  = lt_receiver
        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.
      IF sy-subrc <> 0.
      keep error message
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                INTO l_msg_text.
      ENDIF.
    endfunction.

    Hi Pradeep,
    you can change the sender, when you change the system-field SY-UNAME before calling FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    REPORT Z_TEST_SEND_MAIL.
    h_uname must be a SAP-UserId.
    sy-uname = h_uname.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
         PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = OBJPACK
          OBJECT_HEADER              = OBJHEAD
          CONTENTS_BIN               = OBJBIN
          CONTENTS_TXT               = OBJTXT
          RECEIVERS                  = RECLIST
        EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          OPERATION_NO_AUTHORIZATION = 4
          OTHERS                     = 99.
    I tried it and it was successfull.

  • Send email with body in a specific template

    Hello
    I want to send an email from an ABAP program with the message body in a specified template with borders. Is it possible to do this?? I had used class BCS in one of my previous program in which the message body was in text and it worked. Can my current requirement be met with class BCS.
    Can anyone please help me
    Regards
    Sathar

    Hi,
    Here is an example to give you an idea. In the html file saved in the webrepository (tcode SMW0) you placed placeholders like !reden!.
    regards,
    Bert
    form DO_SEND_MAIL changing LV_SEND type XFELD.
      data: TEXTLINE      type SOLI.
      data: SMTPADR       type AD_SMTPADR,
            SEND_REQUEST  type ref to CL_BCS,
            TEXT          type BCSY_TEXT,
            DOCUMENT      type ref to CL_DOCUMENT_BCS,
            SENDER        type ref to CL_SAPUSER_BCS,
            RECIPIENT     type ref to IF_RECIPIENT_BCS,
            SENT_TO_ALL   type BOOLEAN.
      data: LT_TEXT type table of SOLI.
      data: LT_MAIL type table of SOLI.
      data: LW_MAIL type SOLI.
      data: LV_SUBJECT type SO_OBJ_DES.
      data: LV_HEADER type SO_OBJ_DES.
      data: LS_VBAK type VBAK.
      data: LS_KUAGV type KUAGV.
      data: LS_KURGV type KURGV.
      data: LS_KUWEV type KUWEV.
      data: LV_DATUM type STRING.
      data: LV_PLANNERDESCR type DSNAM.
      data: LV_PROJECTVERANT_DESCR type PS_VERNA.
      data: LV_NWP_DESCR  type AUFTEXT.
      data: LW_PROJ type PROJ.
      data: LV_VALUE3 type CHAR255.
      data: LV_VALUE2 type CHAR255.
      data: LS_APPOBJECT type BORIDENT.
      type-pools: SWWW.
      data: LV_TEMPLATE type W3OBJID.
      data: LT_H type table of W3HTML.
      data: LW_H type W3HTML.
      data: LT_M type SWWW_T_MERGE_TABLE.
      data: LW_M type SWWW_T_MERGE_ITEM.
      if GS_DATA-EMAIL1 is initial and GS_DATA-EMAIL2 is initial.
        message 'Geen emailadressen opgegeven, Mail verzenden mislukt'  type 'S'.
      else.
    * voorbereidende acties
    * actie 1: Mail onderwerp instellen
        if GS_DATA-STATUS = '900'.
          concatenate 'Aanvraag is afgewezen:' GS_DATA-XBLNR into LV_SUBJECT separated by SPACE.
        else.
          concatenate 'Projectplandata aanvraag:' GS_DATA-XBLNR into LV_SUBJECT separated by SPACE.
        endif.
    * actie 2: Aanhef(header) instellen
        call function 'SD_SALES_DOCUMENT_READ'
          exporting
            DOCUMENT_NUMBER      = GS_DATA-VBELN
            I_BLOCK              = ''
            I_NO_AUTHORITY_CHECK = 'X'
          importing
            EKUAGV               = LS_KUAGV
            EKURGV               = LS_KURGV
            EKUWEV               = LS_KUWEV
            EVBAK                = LS_VBAK.
        concatenate 'Beste' LS_KUAGV-NAME1 into LV_HEADER separated by SPACE.
    * actie 3
    * create persistent send request
        SEND_REQUEST = CL_BCS=>CREATE_PERSISTENT( ).
    * html template uit web repository halen !! zie SMW0
        if GS_DATA-STATUS = '900'.
          refresh LT_H.
          clear: LW_H, LW_M.
          LV_TEMPLATE = 'ZMAIL_AANVRAAG_GEWEIGERD'.
          LW_M-NAME = '!reden!'.
          LW_M-COMMAND = 'R'.
          LW_H-LINE = GS_DATA-STATUSTEXT.
          append LW_H to LT_H.
          append lines of LT_H to LW_M-HTML.
          append LW_M to LT_M.
          refresh LT_H.
          clear: LW_H, LW_M.
          LW_M-NAME = '!uwaanvraagnummer!'.
          LW_M-COMMAND = 'R'.
          LW_H-LINE = GS_DATA-XBLNR.
          append LW_H to LT_H.
          append lines of LT_H to LW_M-HTML.
          append LW_M to LT_M.
          refresh LT_H.
          clear: LW_H, LW_M.
          LV_TEMPLATE = 'ZMAIL_AANVRAAG_VERWERKT_KCO'.
        call function 'WWW_HTML_MERGER'
          exporting
            TEMPLATE    = LV_TEMPLATE
          importing
            HTML_TABLE  = LT_H[]
          changing
            MERGE_TABLE = LT_M[].
        loop at LT_H into LW_H.
          LW_MAIL = LW_H.
          append LW_MAIL to LT_MAIL.
        endloop.
        DOCUMENT = CL_DOCUMENT_BCS=>CREATE_DOCUMENT(
                        I_TYPE    = 'HTM'
                        I_TEXT    = LT_MAIL
                        I_SUBJECT = LV_SUBJECT ).
    * add document to send request
        call method SEND_REQUEST->SET_DOCUMENT( DOCUMENT ).
    * --------- set sender -------------------------------------------
    * note: this is necessary only if you want to set the sender
    *       different from actual user (SY-UNAME). Otherwise sender is
    *       set automatically with actual user.
        SENDER = CL_SAPUSER_BCS=>CREATE( SY-UNAME ).
        call method SEND_REQUEST->SET_SENDER
          exporting
            I_SENDER = SENDER.
    * --------- add recipient (e-mail address) -----------------------
    * create recipient
        if GS_DATA-EMAIL1 is not initial.
          SMTPADR = GS_DATA-EMAIL1.
          RECIPIENT = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS( SMTPADR ).
    *   add recipient with its respective attributes to send request
          call method SEND_REQUEST->ADD_RECIPIENT
            exporting
              I_RECIPIENT = RECIPIENT
              I_EXPRESS   = 'X'.    "This message was sent with High Importance
        endif.
        if GS_DATA-AUGRU = 'Z02'.
          if GS_DATA-EMAIL2 is not initial.
            SMTPADR = GS_DATA-EMAIL2.
            RECIPIENT = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS( SMTPADR ).
    *   add recipient with its respective attributes to send request
            call method SEND_REQUEST->ADD_RECIPIENT
              exporting
                I_RECIPIENT = RECIPIENT
                I_EXPRESS   = 'X'.    "This message was sent with High Importance
          endif.
        endif.
        try.
            move GS_DATA-VBELN to LS_APPOBJECT-OBJKEY.
            move 'BUS2030' to LS_APPOBJECT-OBJTYPE.
            call method SEND_REQUEST->CREATE_LINK
              exporting
                I_APPL_OBJECT = LS_APPOBJECT.
          catch CX_SEND_REQ_BCS .
        endtry.
    * ---------- send document ---------------------------------------
        call method SEND_REQUEST->SET_SEND_IMMEDIATELY
          exporting
            I_SEND_IMMEDIATELY = 'X'.
    * Possible statuses in field I_REQUESTED_STATUS:
    * N = No status is to be returned
    * E = Only error statuses are to be returned
    * A = Return all statuses
        call method SEND_REQUEST->SEND(
          exporting
            I_WITH_ERROR_SCREEN = 'X'
          receiving
            RESULT              = SENT_TO_ALL ).
        if SENT_TO_ALL <> 'X'.
          LV_SEND = SPACE.
        else.
          LV_SEND = 'X'.
          commit work.
        endif.
      endif.
    endform.                    " DO_SEND_MAIL

  • HP P1102w don't print - W [16/Aug/2012:08:47:51 -0300] HP_LaserJet_Professional_P1102w: Printer supports Create-Job but not Send-Document operation.

    Sirs,
    I'm trying to print from wirelessy from my MacBook Pro (OS X Mountain Lion) to a P1102w printer without success.
    The error message is:
    W [16/Aug/2012:08:47:51 -0300] HP_LaserJet_Professional_P1102w: Printer supports Create-Job but not Send-Document operation.W [16/Aug/2012:08:47:51 -0300] HP_LaserJet_Professional_P1102w: Printer supports Create-Job but not Send-Document operation.
    The Printer Firmware is 20120130 (HP last version)
    Any hints?
    Regards
    Camilo

    It doesn't share the printer and the Mac can't print

  • Can't send document to Apple Mail after upgrading to Maverick

    Hello,
    When I in iWork '09 try to send a document to Apple Mail as an attachment, I get an error message that says  "iWork encountered an error while attempting to create the attachment data", I get the same message wether I select "Pages", "Word" or "PDF".
    I get the same message in Pages and in Numbers. It started after I upgraded to Maverick.
    I copied this from the console:
    2014-05-11 19:37:27,587 Pages[234]: -[NSFileWrapper setContentID:]: unrecognized selector sent to instance 0xc74d4c0
    2014-05-11 19:37:27,587 Pages[234]: Caught the following exception while trying to send to mail.
    -[NSFileWrapper setContentID:]: unrecognized selector sent to instance 0xc74d4c0
    Help would be appreciated.
    Fred

    Hello Fruhilda!
    It seems that my problem is resolved. My version was 4.1 and App Store didn't show any updates. But after som searching I found out that there was an iWork 9.3 update which I downloaded and installed. After the update the version was 4.3 and I was able to send documents to Apple Mail.
    Fred

  • Word saving documents as binary files- can't send documents as attachments

    I've had my Macbook for about 9 months. During the first 6 months, I could send attachments via email perfectly fine. After about 6 months, something happened and the files could no longer be opened after being attached. I tried sending some attachments to myself and found out that the documents were being sent as binary files.
    I also backed up my documents onto an external hard drive. When I opened the documents on a Windows computer, the Word documents that I created during the first 6 months could be opened. However, the most recently created documents couldn't be opened by my computer.
    I decided to do an erase and install on Saturday. Afterwards, Word was working fine and I was able to send documents as attachments. This morning (Tuesday) I tried to send attachments again and it didn't work! Again, the documents were binary files.
    I'm not sure what to do because it was working fine for three days, but now it's not working anymore. I think something must have happened during those three days that corrupted my computer?
    Has anyone had a similar problem? Can anyone help?
    Sorry I know it was a long post but I wanted to give more information in case it would give some clues. I feel I should add that I've been having quite a few problems with my Macbook, e.g. screen freezing, DMGs not loading properly, getting some pop ups
    Message was edited by: MissIndecisive
    Also wanted to add that I've had my logicboard replaced recently because of problems such as freezing, so I don't think it should be a hardware problem.

    Since Word is not an Apple product, you'll get better response if you use a forum dedicated to Microsoft's Mac products such as <http://groups.google.com/groups/dir?sel=33607053> rather than an Apple forum that focuses on compatibility between Macs and Windows.
    Be sure to search the forum first in case someone has already had a similar question answered. You'll get your answer faster this way. Post your question in the forum if you don't find anything that helps you

  • Add 'soft link' of a shared file in the body of message.

    I want to know if there is a way to hyperlink a shared file which is on a server and add it in the body of message rather than sending that whole file as an attachment. So that when the recipeint receives the e-mail, he/she can just click on the link and that particular file will open.
    I hope my question is clear enough. I need your expert opinion in this matter. Is this do-able or am I crazy?

    I tried doing the same thing. I guess I am doing something wrong.
    I have a webserver and folder named projects under webserver. I want to access a file from the projects folder. Hence my absolute file path looks something like this:
    \\Web_Server\web_server\projects\bci.doc . How can I make this path as URL? I understand that if I have any internet website or any ip address, I can hyperlink it. But I am not sure, how can I hyperlink a file path such as this.
    I have tried the following code in the javamail:
    String tempFileName ="Web_server/WEB_SERVER/Projects/BCI.doc";
    </font>";
    This did not help me.
    Please help.
    Thanking you in advance,
    Riddhi.

  • How to send Text HTTP Body in sender Http post to proxy .

    Hi Exeperts,
    I have a scenario http post to proxy scenario. where i need to send  Text HTTP Body  using http sender.receiver side  i am having proxy.
    Please let us know what are the configuration i need to take at sender side and receiver side .
    Regards
    Ravinder.s

    Hi,
    1.If you have any xsl code or java code please share .
    You need Java (or ABAP), not parsing the input, creating xml.
    2. my client is  using dual stack abap/java.
    Your desicion to use Java or ABAP. From my point of view ABAP is easier, but it depends or your experience.
    3.please share the any udf for map the string to the target side?
    An UDF is part of a Message Mapping. Does not work here.
    4. i already  developed the proxy code.
    That s a good start
    /Udo

  • XML gate way send document erroring out

    Hi,
    We are using the "CLN_SHOW_SHIPMENT_OAG72_OUT.xgm" to map the ASN 856 XML gateway map.
    But this is getting error out in the Show shipment workflow (send document process).
    Error Name ECX_SENDDIRECT_ERROR_EMBD
    Error Message 6013: Error while processing XML document in SENDDIRECT mode : 'ORA-20100: Error occurred while parsing: Element SHOW_SHIPMENT_005 not complete, expected elements '[DATAAREA]'.'. For further details, see the log corresponding to FND-Logging AFLOG MODULE Name: 'ecx.plsql.trig.CLN.SHOWSHIPO.65899.3.35793.log'.
    Error Stack ECX_STANDARD.sendDirectCover(CLN, SHOWSHIPO) ECX_STANDARD.Send(SHOWSHIP, 65899.3, 538854, RUN) Wf_Engine_Util.Function_Call(ECX_STANDARD.SEND, SHOWSHIP, 65899.3, 538854, RUN)
    I have done the transaction setup , trading partner setup and reuired ECX profile options.
    Below are the steps i am following.
    To generate an ASN for one shipment of goods:
    1. Log on to the Oracle Order Management application.
    2. Create a sales order in Order Management either manually or electronically
    through Order Process.
    3. Book the sales order.
    4. Navigate to Release Sales Order window.
    5. Enter the sales order number in Order Number.
    6. Click Execute Now to release this sales order.
    7. Navigate to the Shipping Transaction window.
    8. Click Search Delivery.
    9. Enter the delivery name in From Delivery Name.
    10. Click Find.
    11. Ship confirm the delivery.
    ◗◗ To extract ASN for a delivery number in case of first ASN failure:
    1. Navigate to the Supply Chain Trading Connector responsibility in Oracle
    E-Business Suite.
    2. Navigate to Requests and select Run.
    3. Verify if Single Request is selected. Click Ok.
    4. Select CLN:Send XML Show Shipment Document for Request Name.
    5. Enter Delivery Number.
    6. Click Submit to submit the request.
    7. Search for Ship Notice collaboration in the Collaboration History by entering
    Delivery Number for Document Number.
    The go to workflow administrator > transaction monitor > item type %SHIP% then > go.
    After this I could see that the workflow is erroring out at send document process.
    Please let me know the what is issue , this could help me a lot.
    Regards,
    Yudhistar

    Hi,
    any tips, hints, sample code or other pointersWell, maybe some java, here's your question:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:38012348052
    will refer you to
    http://asktom.oracle.com/pls/asktom/f?p=100:11:478714880659465::::P11_QUESTION_ID:952229840241
    in the end.

  • Send mail with body (content)

    Dear SDNers,
    Currently whenever status has been changed in my solman, message processor and requestro both are receving mails with an smartform as an attachment with blank body in mail. But I want add some custom test at the body of the mail. How can I do this. Here is the screen shot how what my system using classes and methods to send smartform.
    Kindly guide me.
    Regards,
    Venkat

    Hi Venkat
    Please check the below blog to understand how email action works....
    Sending E-Mail from Support Message
    basically SAP provides different smartforms for different purpose, some contains direct link to the ticket but some smartforms contains the long description entered in the ticket
    Therefore, you need to use the correct smartform with corresponding classes/methods etc to re-use for ur requirement
    Hope this helps
    Thanks
    Prakhar

  • Error when sending documents

    I have two users that receive the following message when trying to send documents to clients:
    You can't send the documents to yourself.
    I checked and the email addresses entered do not match their own.  Could something be wrong with their user accounts?

    Hello Michael,
    You can follow below steps and see if that resolves issue with Internet Explorer:
    Here are the steps to disable AutoComplete on IE:
    Open Internet Explorer.
    Click Tools Internet explorer tools icon in the upper right-hand corner.
    Select Internet Options from the dropdown menu.
    Under the Content tab, in the Autocomplete section, click the Settings button.
    Within this window, you can select the fields in which you'd like to store Autocomplete data by using the checkboxes. This action turns Autocomplete On or Off based on what boxes are checked.
    Once you have made your selections, click OK.
    -Rijul

  • Body of message disappears in outlook office 2010 in win 7 64 bit

    Dear Team,
    In outlook body of message has been disappeared.when the mail delivered to the recipient.
    I uncheck the add ins and fonts and cleared the cache and created the new profile still the issue not fixed please help me out to fix the issue
    Regards,
    Mohan 658
    Mohankrishna_658

    Hi,
    On the recipient side, the email body shows blank when the recipient check the email, right?
    Does this issue happen to all recipient or just one? Please let the recipient log into his web mail and check if he can see the email body.
    Please try to turn off antivirus software on both sender and recipient side to test the issue again.
    In addition, are you using an ANSI-formatted Outlook Data (.pst) file? If so, please see the following KB article and check if it applies:
    http://support.microsoft.com/kb/2641961/en-us
    Hope this helps.
    Best Regards, 
    Steve Fan
    TechNet Community Support

Maybe you are looking for