Link to ME23N tcode in email body

Hi,
I am sending an email when the PO is getting created. so, the requirement is to send a link to ME23N transaction along with the PO number in the body of email.
Email content :
Please click on the below link to view Purchase Order
<link to ME23N>
Please let me know if there is any way to create a link to ME23N.
Thanks
Nishant Jain

Hi Nishant,
First I want to ask you how you are sending the mail? Are you sending mail using the FM  SO_NEW_DOCUMENT_ATT_SEND_API1. Then you have to option to send the PO as an BO attachemnt. This can be achieved as follows:
DATA: docdata    LIKE sodocchgi1,
           objpack    LIKE sopcklsti1 OCCURS 10 WITH HEADER LINE,
           objhead    LIKE solisti1   OCCURS 10 WITH HEADER LINE,
           objtxt     LIKE solisti1   OCCURS 10 WITH HEADER LINE,
           objbin     LIKE solisti1   OCCURS 10 WITH HEADER LINE,
           objhex     LIKE solix      OCCURS 10 WITH HEADER LINE,
            reclist    LIKE somlreci1  OCCURS  1 WITH HEADER LINE.
DATA: tab_lines  TYPE i,
       doc_size   TYPE i,
       objdes(100).
* For the BOR attachment
CONSTANTS : c_object_describe LIKE swotobjid-describe VALUE '*<OBJECT>*'.
DATA : l_object      TYPE swotobjid,
             l_objheader   LIKE soxobj.
  * Create Message Body
*   Main Text
objtxt = 'Purchase Order'.
APPEND objtxt.
objtxt = 'BOR object attachment'.
APPEND objtxt.
*   Title and Description
DESCRIBE TABLE objtxt LINES tab_lines.
READ     TABLE objtxt INDEX tab_lines.
docdata-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
docdata-obj_name  = 'Purchase Order'.
CONCATENATE 'Purchase Order' '-' EKKO-EBELN INTO objdes.
docdata-obj_descr = objdes.
CONDENSE docdata-obj_descr.
*   Write Packing List (Main)
CLEAR objpack-transf_bin.
objpack-head_start = 0.
objpack-head_num   = 0.
objpack-body_start = 1.
objpack-body_num   = tab_lines.
objpack-doc_type   = 'RAW'.
APPEND objpack.
* Create OBJ attachment
l_object-describe = c_object_describe.
l_object-objtype  = 'BUS2012'.
l_object-objkey   = EKKO-EBELN.
CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
   IMPORTING
     own_logical_system             = l_object-logsys
   EXCEPTIONS
     own_logical_system_not_defined = 1
     OTHERS                         = 2.
IF sy-subrc <> 0.
   MESSAGE e398(00) WITH 'No Log Sys Found'.
ENDIF.
MOVE-CORRESPONDING l_object TO l_objheader.
APPEND l_objheader TO objhead.
*   Write Packing List (Attachment)
CLEAR objpack.
objpack-head_start = 1.
objpack-head_num   = 1.
objpack-body_start = 0.
objpack-body_num   = 0.
objpack-doc_type   = 'OBJ'.
objpack-obj_name   = ''BUS2012.
objpack-obj_descr  = objdes.
APPEND objpack.
* Create receiver list
reclist-receiver = sy-uname.
reclist-rec_type = 'B'.
APPEND reclist.
* Send Message
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
   EXPORTING
     document_data              = docdata
     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
     document_type_not_exist    = 3
     operation_no_authorization = 4
     parameter_error            = 5
     x_error                    = 6
     enqueue_error              = 7
     OTHERS                     = 8.
IF sy-subrc <> 0.
   MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
           WITH docdata-obj_name.
ENDIF.
WRITE: / 'End of Program'.
Try this code. This works good for me. Make necessary changes to this a per your requirement.
Regards,
Abijith

Similar Messages

  • Link break in email body using User Notification Activity in 11g

    Hi All,
    I am using User Notification activity in a bpel process to send emails.Howver I am having trouble formatting the contents of the email body.
    Desired output is:
    Hi
    How are You
    Cheers,
    Ritu
    I used following approches but none of them seem to help.I cannt use email activity for the same.*(Please remove * while reading)*
    1.<html><body>Hi<*br*>How are you<*br*>Cheers,<*br*>Ritu</body></html>
    2.Hi,<*br*>How are you<*br*>Cheers,<*br*>Ritu
    3.Hi*&*#13;*How are you*&*#13;*Cheers,*&*#13;*Ritu
    4.I even coded the above within the string()
    But none of them seems to be working.
    Please help.
    Edited by: 896674 on 2012-mar-28 04:45
    Edited by: 896674 on 2012-mar-28 04:47

    It looks like what i found is a temporary solution.Everytime i edit the activity it resets the mime type to text/plain.
    could any body tell me how to provide line breaks in text/plain mime type for user notification activity in bpel.
    Regards...

  • Purchase Order External Send with email body text

    hi guru,
    i saw lot of threads but i didn't get coreect answer
    i did below process
    Goto NACE .
    u2022 Select EF and click on OUTPUT TYPES.
    u2022 Then select Output Type NEU and click on processing routines .
    u2022 In that you have to add a new entry - medium 5 .
    u2022 Then you need to assign a program, form routine and form.
    u2022 You can use the standard program i.e. SAPFM06P, FORM routine is always ENTRY_NEU and standard MEDRUCK.
    u2022 Then in PARTNER FUNCTION you need to add a new entry : medium - 5 and function - VN .
    u2022 For subject of the mail goto Mail Title and Texts. In title give PO No. &EKKO-EBELN& .
    u2022 Under General data -> Replacement of text symbols give programm as SAPMM06E and Form Routine as TEXT_SYMBOL_REPLACE .
    u2022 Now the subject will be PO No. 1800004202.
    u2022 You need to maintain your email id in tcode SU01 and also the vendor's email id.
    u2022 Now while creating a new purchase order , change the medium to External Send .
    u2022 Then goto Communication Method and select CS01 . ALSO make sure that the Cover Page Text has value PO No. &EKKO-EBELN& .
    u2022 Goto tcode ME9F .
    u2022 Execute.
    u2022 Select the checkbox and click on Output Message.
    u2022 You will get a message MAII 00000000000001 generated .
    u2022 Use note no 191470
    mail subject is going ,but mail text is not coming.
    some people  suggest this sap note
    Note 786847 - E-mail purchase order w/ e-mail text and several attachments
    i did not get this note.
    give the solution for email body text ,i read some thread,it will solve through abap development .
    please  give solution
    regards
    vijay

    Hi
    1. GO to tcode SCOT.
    2. Double click on SMTP
    3. Click on the set button next to internet
    4. In this screen for SAP Script/ Forms select TXT.
    Regards
    Girish
    Edited by: Girish Bettaiah on Aug 8, 2011 3:11 PM

  • Sending PO (PDF attach.) via email: adding email body text

    Hi,
    I need to send Purchase Orders to Vendors as PDF attachments to emails; I have successfully configured all the necessary:
    For Output Type NEU
    1) Access to conditions (General Data) set to X
    2) Dispatch time 3 Send with application own transaction
    3) Transmission Medium 5 for External send
    4) Processing routines 5 includes a customer Program and Form to make use of my SAPScript
    I have set up a Communication Strategy (NET - Internet) and created a condition based on a specific document type.
    Using ME9F I can select my PO and successfully output the message - I can view the request using SOST and an email with the PO attached as PDF is sent to the correct recipient (email address of Vendor).
    I would like though to add some text to the body of the email, which is totally empty. Can anyone please advise on how to achieve this? In the Output Type config there is a section "Mail title and texts"... can anyone tell me whether this section can be used to add body text to the email and how? I have managed to customise the "Title/Subject" of the email and PO but cannot find a way to add some text in the email body.
    Thank you very much for your help.
    Gab

    Hi Danilo,
    You need to do some configuration for this.
    - Goto NACE .
    - Select EF and click on OUTPUT TYPES.
    - Then select Output Type NEU and click on processing routines .
    - In that you have to add a new entry - medium 5 .
    - Then you need to assign a program, form routine and form.
    - You can use the standard program i.e. SAPFM06P, FORM routine is always ENTRY_NEU and standard MEDRUCK.
    - Then in PARTNER FUNCTION you need to add a new entry : medium - 5 and function - VN .
    - For subject of the mail goto Mail Title and Texts. In title give PO No. &EKKO-EBELN& .
    - Under General data -> Replacement of text symbols give programm as SAPMM06E and Form Routine as
    TEXT_SYMBOL_REPLACE .
    - Now the subject will be PO No. 1800004202.
    - You need to maintain your email id in tcode SU01 and also the vendor's email id.
    - Now while creating a new purchase order , change the medium to External Send .
    - Then goto Communication Method and select CS01 . ALSO make sure that the Cover Page Text has value PO No. &EKKO-EBELN& .
    - Goto tcode ME9F .
    - Execute.
    - Select the checkbox and click on Output Message.
    - You will get a message MAII 00000000000001 generated .
    If the BASIS guys have made the necessary configuration for sending mail then the mail will go .
    You can see the status in tcode SOST.
    If you want to use a z-programm and z-form then you need add the functions used in standard programm SAPFM06P for generating mail in your z-programm.
    Hope it helps,
    Swapnil

  • How can I include shared drive link to form in submission email?

    I am an assistant in an office where we will be using Adobe Forms to initiate the start of a project. My bosses are to save their form in a corresponding folder, then "submit" the form to me to alert me to continue with project initiation.
    My question is: Is there  away to, in the body of the email, include a link to where the Adobe form is saved on our shared drive so that I can click on the link and go straight to it, instead of using the attachment? This, I hope, will prevent the form being saved in two different places.

    Hi CSchoolinLife,
    Yes you can include customized content in the email body .
    Please save the form from https://workspaces.acrobat.com/?d=0n*uLjnmLGX8VlHRCW5n7A and check different options you can use in an email button (programatically and through GUI).
    Regards,
    Ratnesh

  • Iif and concat problem in email body - solution

    Hi all, it is not a question, just some information if somebody will try to do it:
    If you want to send an email from workflow and use the IIf function with concatenated results, the concat syntax in the help will not work.
    The solution is: Use + character in place of || and so on :)
    For exlampe:
    %%%IIf(PRE('<dDate_field1_ITAG>')<>[<dDate_field1_ITAG>],'Any text '+PRE('<dDate_field1_ITAG>')+'-->'+[<dDate_field1_ITAG>], '')%%%
    The result when the field HAD a value and it is changing to another: Any text 11/11/2011 --> 12/11/2011
    If the field is changing from NULL to something, use this:
    %%%IIf(IfNull(PRE('<dDate_field1_ITAG>'),0)<>[<dDate_field1_ITAG>],'Any text'+PRE('<dDate_field1_ITAG>')+'-->'+[<dDate_field1_ITAG>], '')%%%
    And if U want to see the every change (null -> value, value -> value, and value -> null), use this beauty:
    %%%IIf(IfNull(PRE('<dDate_field1_ITAG>'),0)<>[<dDate_field1_ITAG>] OR ([<dDate_field1_ITAG>] IS NULL AND PRE('<dDate_field1_ITAG>') IS NOT NULL),'Any text'+PRE('<dDate_field1_ITAG>')+'-->'+[<dDate_field1_ITAG>], '')%%%
    Regards,
    A.

    >
    my problem is my email body is
    please clik on this link www.gmail.com
    iii am concating the text please clik on this link ||' '||www.gmail.com
    but in email www.gmail.com is shown on text only.Correct. As the e-mail body is in text/plain MIME format.
    If you want to use formatting in the e-mail body, you need to create a text/html body. At [RFC FAQs|http://www.faqs.org/rfcs/rfc-titles.html], refer to the following RFCs:
    - RFC 2049 - Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples
    - RFC 2048 - Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures
    - RFC 2047 - MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text
    - RFC 2046 - Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types
    - RFC 2045 - Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies
    In simple terms, your e-mail message body needs to look something like this:
    Subject: Test E-mail
    From: "John Doe" <[email protected]>
    To: "Jane Doe" <[email protected]>
    Content-Type: multipart/alternative; boundary="=-2zP89iYM0w6fRrmCDsDv"
    Mime-Version: 1.0
    --=-2zP89iYM0w6fRrmCDsDv
    Content-Type: text/plain
    Content-Transfer-Encoding: 7bit
    This is the start of the e-mail message in plain text format.
    blah blah..
    --=-2zP89iYM0w6fRrmCDsDv
    Content-Type: text/html; charset="utf-8"
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
    <html>
    This is the start of the e-mail message in HTML text format.
    </html>
    --=-2zP89iYM0w6fRrmCDsDv--

  • How can i change the font of email body in my inbox.(outlook 2013 64 bit).

    Hi,
    Is there a way I can change the email body font in outlook 2013 because I am not able to read the emails from my inbox.
    I am using outlook 2013 64 bit and facing reading email.
    Regards,
    Sandy

    Hi,
    What do you mean by "I am not able to read the emails from my inbox"? Why?
    What I can consider is Conditional Formatting and font in message body.
    Conditional Formatting -
    http://blogs.office.com/b/microsoft-outlook/archive/2012/05/10/conditional-formatting-highlight-your-most-important-mails.aspx
    More fonts, sizes and color settings of the Outlook interface, please see the link below:
    http://www.howto-outlook.com/howto/fontsizecolor.htm
    Regards,
    Melon Chen
    TechNet Community Support

  • Send SmartForm as Email Body

    Hi All!
    I need to send a SmarForm by email as an email body.
    The SmartForm is a simple plain text form.
    Does someone know how to do it?
    Regards,
    Alejandro.

    hi,
    try this link u will have two codes.
    Email Body
    even if u dont understand check this code.
    Here is the code to send the Smartform to mail as PDF attachment.
    REPORT ZTEST_PDF_MAIL.
    Internal Table declarations
    DATA: I_OTF TYPE ITCOO OCCURS 0 WITH HEADER LINE,
    I_TLINE TYPE TABLE OF TLINE WITH HEADER LINE,
    I_RECEIVERS TYPE TABLE OF SOMLRECI1 WITH HEADER LINE,
    I_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    Objects to send mail.
    I_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
    I_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    I_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    I_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
    Work Area declarations
    WA_OBJHEAD TYPE SOLI_TAB,
    W_CTRLOP TYPE SSFCTRLOP,
    W_COMPOP TYPE SSFCOMPOP,
    W_RETURN TYPE SSFCRESCL,
    WA_DOC_CHNG TYPE SODOCCHGI1,
    W_DATA TYPE SODOCCHGI1,
    WA_BUFFER TYPE STRING, "To convert from 132 to 255
    Variables declarations
    V_FORM_NAME TYPE RS38L_FNAM,
    V_LEN_IN LIKE SOOD-OBJLEN,
    V_LEN_OUT LIKE SOOD-OBJLEN,
    V_LEN_OUTN TYPE I,
    V_LINES_TXT TYPE I,
    V_LINES_BIN TYPE I.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = 'ZTEST'
    IMPORTING
    FM_NAME = V_FORM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    W_CTRLOP-GETOTF = 'X'.
    W_CTRLOP-NO_DIALOG = 'X'.
    W_COMPOP-TDNOPREV = 'X'.
    CALL FUNCTION V_FORM_NAME
    EXPORTING
    CONTROL_PARAMETERS = W_CTRLOP
    OUTPUT_OPTIONS = W_COMPOP
    USER_SETTINGS = 'X'
    IMPORTING
    JOB_OUTPUT_INFO = W_RETURN
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    I_OTF] = W_RETURN-OTFDATA[.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    MAX_LINEWIDTH = 132
    IMPORTING
    BIN_FILESIZE = V_LEN_IN
    TABLES
    OTF = I_OTF
    LINES = I_TLINE
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    OTHERS = 4.
    IF SY-SUBRC 0.
    ENDIF.
    LOOP AT I_TLINE.
    TRANSLATE I_TLINE USING '~'.
    CONCATENATE WA_BUFFER I_TLINE INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    I_RECORD = WA_BUFFER.
    APPEND I_RECORD.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Attachment
    REFRESH: I_RECLIST,
    I_OBJTXT,
    I_OBJBIN,
    I_OBJPACK.
    CLEAR WA_OBJHEAD.
    I_OBJBIN] = I_RECORD[.
    Create Message Body Title and Description
    I_OBJTXT = 'test with pdf-Attachment!'.
    APPEND I_OBJTXT.
    DESCRIBE TABLE I_OBJTXT LINES V_LINES_TXT.
    READ TABLE I_OBJTXT INDEX V_LINES_TXT.
    WA_DOC_CHNG-OBJ_NAME = 'smartform'.
    WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
    WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
    WA_DOC_CHNG-SENSITIVTY = 'F'.
    WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    Main Text
    CLEAR I_OBJPACK-TRANSF_BIN.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    I_OBJPACK-BODY_NUM = V_LINES_TXT.
    I_OBJPACK-DOC_TYPE = 'RAW'.
    APPEND I_OBJPACK.
    Attachment (pdf-Attachment)
    I_OBJPACK-TRANSF_BIN = 'X'.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    DESCRIBE TABLE I_OBJBIN LINES V_LINES_BIN.
    READ TABLE I_OBJBIN INDEX V_LINES_BIN.
    I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
    I_OBJPACK-BODY_NUM = V_LINES_BIN.
    I_OBJPACK-DOC_TYPE = 'PDF'.
    I_OBJPACK-OBJ_NAME = 'smart'.
    I_OBJPACK-OBJ_DESCR = 'test'.
    APPEND I_OBJPACK.
    CLEAR I_RECLIST.
    I_RECLIST-RECEIVER = 'mail id'.
    I_RECLIST-REC_TYPE = 'U'.
    APPEND I_RECLIST.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = WA_DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    COMMIT_WORK = 'X'
    TABLES
    PACKING_LIST = I_OBJPACK
    OBJECT_HEADER = WA_OBJHEAD
    CONTENTS_BIN = I_OBJBIN
    CONTENTS_TXT = I_OBJTXT
    RECEIVERS = I_RECLIST
    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.
    WRITE:/ 'Error When Sending the File', SY-SUBRC.
    ELSE.
    WRITE:/ 'Mail sent'.
    ENDIF.
    If you want to send some text as Body of the Mail then follow this once
    when u r callin the FM'SO_NEW_DOCUMENT_ATT_SEND_API1'.. points to remember
    1.u have to pass the body of content in table CONTENTS_TXT(ia m using I_OBJBIN) (each line a record) then. suppose i have appended 11 records to the table CONTENTS_TXT .
    2.PACKING_LIST(iam usign I_OBJPACK) table u ahve to append a redord as follows
    I_OBJPACK-TRANSF_BIN = ' '.
    I_OBJPACK-HEAD_START = 000000000000001.
    I_OBJPACK-HEAD_NUM = 000000000000001.
    I_OBJPACK-BODY_START = 000000000000002
    I_OBJPACK-BODY_NUM = 000000000000010.
    I_OBJPACK-DOC_TYPE = 'RAW'.
    append I_OBJPACK-.
    by the above code system treat the first line in table I_OBJBIN as header and the 2nd line to 10 lines tread as body.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = WA_DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    TABLES
    PACKING_LIST = I_OBJPACK
    OBJECT_HEADER = WA_OBJHEAD
    CONTENTS_BIN = I_OBJBIN
    CONTENTS_TXT = I_OBJTXT
    RECEIVERS = I_RECLIST
    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.
    reward me ig helpful.

  • Where to find email body text saved in SAP tenant system?

    Hi
    i wants to change email body text, in my tenant sap system we have one mail format like body as below:
    Hi customer,
    Thank you for your order.
    Yours sincerely,
    xyz
    now i wants to add some extra text in the above body text. for now i am editing it for every order. i want it to setup once.
    below step i am using:
    https://my____.sapbydesign.com
    first login to your tenant system and go to sales order workcenter-->select one sales order id-->view all(in the right most corner)-->now click on you can also button-->edit output settings.
    one window will get open here i am editing the body text.Can anybody suggest me where i can find this saved email body text so that i can append some text in this.

    Hi Douglas,
    Thanks for reply.
    Your given link dosent opens "server not found" error. And Last time i had raised an incident to SAP and got the below reply(Some part of reply).
    "Email body text field feature will be available in FP 1302 system the BO:  /DOC/OM_DOCUMENT_OUT_REQ -> ROOT->ITEM->EMAIL_BODY_TEXT  field is PSM write access is enabled."
    "standard email
    template can further be modified by making the field
    “EMAIL_BODY_TEXT” PSM enabled.
    The hierarchy is ROOT->ITEM->EMAIL_BODY_TEXT.
      This feature can only be available in FP 1302 and above systems".
    Can you help where and how i can use this.

  • Embed .DOC or .PDF in email body

    Using SO_OBJECT_SEND with OBJECT_TYPE =  'HTM' to display a formatted email to employees for various reasons.  These emails have mostly hardcoded content but now have a request to periodically send out an email that will always have different content - and possibly embedded graphics.  Don't want to hardcode HTM changes for a temporarily used email.
    Is it possible to embed a Word, PDF, etc. file in the body of an email?  Don't want to attach the file or create a link to the document - just want to dump the content of a file (probably will be stored in KM) to the email body.
    Is this possible to do with SO_OBJECT_SEND?

    Dear friend, thank you for help. I know how to send a PDF from a stored file.
    Sometime when I'm replying an email I have to keep the origin body and insert a PDF file like the way we using for the photo. Just touching the screen and insert a photo. This is good way to insert also a file or a PDF. But I don't have this selection. So I wonder if there is other way to attach a PDF in a existing message, expect your suggested and normal selection by choosing first the PDF and then type a new text body.

  • Adding link to CUP ticket in Email reminder in 5.3 SP8.1

    We have CUP configured to sent an email reminder after a ticket is idle for 30 days to the people that are needed to approve the tickets. This email does not include a link to the ticket itself as it does in other emails from CUP.
    Is there a way to add the link to the ticket referenced in the email that goes out as the email reminder sent to people?
    Again, we are on CUP 5.3 SP8.1

    I'm not sure that there is!
    The only suggestion that I have is to have a static link to the application in the body of the email. Perhaps raise a message to SAP to ask if they are releasing this functionality in a support pack soon?
    Simon

  • When I click on an email link it opens in the email window instead of opening a new window, how to get it to open a new window instead

    It's Comcast email, most links are to articles from the Wall Street Journal. Lately an email from Charles Schwab broker with a link to a pdf file has been doing the same. When I click on the link, it opens within the email frame, which is about 1/3 filled up with the toolbar, mailboxes, headings etc. If it opens with 2 bars on the right side to move down, I can see the whole article, but often it opens with only one bar on the right side which will not let me get all the way to the end of the page.
    It's been happening for several weeks. I got a new computer and it's still happening. Comcast sounds like they've never heard of it. Most recently happened today. I tried the same email link with IE and it opened a new window.

    Firefox sent an email to me to confirm that I had asked the above question. The email had a link to click. When I clicked it from Firefox, nothing happened. Then I opened IE, signed into Comcast, opened the email, clicked the link, and it brought me here.

  • How to remove the bar above the email body in inbox

    How do I remove the Information / toolbar? (not sure what it is called) that appears above the email body under the list of incoming emails in the inbox. It is the bar the has info about the email and buttons like reply, delete, etc. It is redundant and just takes up space.

    You cannot remove it. It is part of the message pane and will display when the message pane turned on.
    You can make it smaller with this add on.
    https://addons.mozilla.org/en-US/thunderbird/addon/compactheader/?src=hp-dl-featured

  • How to embedded oracle report data in email body from forms?

    Hi,
    I am working on oracle forms and report 10g and i am new to this. I want to knw How to embedded oracle report data in email body ?
    Regards
    Shruti

    I have uploaded a sample . This might help
    http://www.alexyscorp.com/send_report_email.zip

  • XML Publisher Email Body Attached Bursting Control File 11i EBS HRMS

    Hi there
    I have a problem with the Brusting , when I received an email through the bursting, I get the Email Body as an Attached File.
    XML Publsiher
    5.6 Build 45
    EBS 11.5.10.2
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/XXPER/LIST_G_COMPANY_CODE">
    <xapi:delivery>
    <xapi:email id= "XXPER" server="is050.atco.com" port="25" from="${FROM_EMAIL_ADDRESS}" reply-to ="${FROM_EMAIL_ADDRESS}">
    <xapi:message id="XXPER" to="${TO_EMAIL_ADDRESS}" attachment="true" subject="XXPER Employees List Company: ${COMPANY_CODE}">
    Status: Normal, Successful Completion.
    Regards
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="XXPEREmployees List" output-type="pdf" delivery="XXPER">
    <xapi:template type="xsl-fo" location= "xdo://XX.XXPER.en.00/?getSource = true">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Regards
    ASIM

    I HAVE ADDED THE FOLLOWING statement BEFORE subject, and it resolved the issue.
    content-type="text/html"
    For Example:
    <xapi:message id="XXPER" to="${TO_EMAIL_ADDRESS}" attachment="true" content-type="text/html" subject="Employees List Company: ${COMPANY_CODE}">
    Regards
    ASIM

Maybe you are looking for