How to customize notifications response email body in iExpense

Hi Techs,
We have a requirement to include custom wordings when the iexpense approver click "Approve" or "Reject" button in email.
Is there any way to do this. Currently if the approver clicks "Approve" or "Reject" button in email, it just displays Note: '' we want this to be customized to Note: 'Please enter your comments here'
We are in R12.2.3 version.

Hi ,
I see your psot as a similar case of problem posted in the past and below is the link to refer
Workflow Mail Template Configure  -  Workflow Mail Template Configure
@N

Similar Messages

  • How to set password on email body in custom Email Template

    Hy,
    I have a Email Template customized in Email Definition>Design Console.
    I need send this 'Email Template' with the password user, but I don't know how to set the variable 'password' in the body of email.
    I searched in Varables>Targets>Variables, but I not found any think variable like password.
    Some has a idea about this? How to set password on email body?
    Regards,
    Piza

    You can use custom Java code. Refer the following:
    Email notification to users after they change their OIM password

  • How to send notification and email to all approvers

    Hi
    I am customizing the requisition approval workflow in p2p cycle.
    We have to send out notifications and emails to all people in the approval heirarchy , who have already approved the req if some body higher up in the chain rejects it.
    right now oracle only send email and notification to the requester.
    ex -- If A requested it and next approver is B , who approves it , next is C, who approves it
    but next person D rejects it
    I want to send notification to C , B and A
    not just A
    please let me know how to do this.
    thanks

    Hi,
    I've provided advice on how to do it in response to your thread on the WorkflowFAQ forum at
    http://smforum.workflowfaq.com/index.php?topic=358.0
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • How do I add an email body text for remittance advices / payment advices?

    Hello,
    I am trying to send an email body text with the pdf remittance advice to my vendors.
    Background:
    We are running automatic payments to vendors via transaction F110. We have configured the pay run to produce remittance advices for vendor payments. Finally we activated the BTE 00002040, through transaction FIBF, to use a custom copy of the function module SAMPLE_PROCESS_00002040.
    Our payment run sends emails with pdf-file attachments to our vendors correctly.
    <b>The Issue:</b>
    I can not find a way to add text to the body of the email with the attached remittance advice.
    Has anyone advise on how to populate the email body with text?
    Thank you and best regards
    Karsten Arold

    Hello Subhashree,
    I have not implemented the functionality, but I found rerference to SAP Note 1033893 in another forum post.
    Email text to Payment Advice in BTE2040
    Allan

  • How to send notification via email

    As we know, there is one step type "Sent Mail" in the workflow builder. However, the notification can only be sent to business workplace.  Any one knows how to let sap automatically send the notificatfion to both business workplace and email box of the user.

    If the SAP User Id is maintained with a valid email address in SU01d transaction and everything is properly configured in SCOT then you will receive mail on both Workplace and email inbox provided you are using SAP User Id as an agent assignment.
    Thanks
    Arghadip

  • How to pass contents in email body for output type medium external send

    Hi ,
    In my requirement i am send attachment to external send using open_form function module with email content blank,So now my requirement is add 2 to 3 line email content should come in external mail with attachment through open_form function module for that any one can help me if faced this kind of object it will be very help full for me.
    Thanks,

    Hi,
    Is your solution using DEVICE = 'MAIL' when calling OPEN_FORM? If yes, please read through OSS Note 311037 - Printing using e-mail. You should be able to define up to 10 lines, as a static cover page for printouts sent via mail (I have not verified if this works). If that doesn't suffice, you are out of luck, I'm afraid. You'd be better off sorting out the otf to pdf conversion problem.
    Edit in: alternatively, you could of course try to extend FM SO_OBJECT_SEND via implicit enhancement... All you really need to do there is to populate the table NOTE_TEXT, which will then get converted into e-mail body Create a singleton to hold text, set text in in the driver program before open_form, get it in the implicit enhancement at the beginning of SO_OBJECT_SEND, and, if note_text is empty, take over your text and clear the singleton instance...
    cheers
    Janis
    Message was edited by: Jānis B

  • How to send notification to email through report programme?

    I am do not have idea how to do it please help me.

    Hi Abbu,
    try this code, that may help u.
    Sending mail with attachment using Object Oriented Approach - Code Gallery - SCN Wiki

  • Email Smartforms with Email Body

    Hello SAP Community,
    Sorry if my question has been asked before, but I did not find any answeres yet.
    I am using BO SOFMFOL and these FM to send my smartforms to external email:
    - CREATE_RECIPIENT_OBJ_PPF
    - CREATE_SENDER_OBJECT_PPF
    - SO_USER_AUTOMATIC_INSERT
    This is working fine.  My question is: How do you add an Email  Body?  I am on ECC 6.0.
    Appreciate any inputs on this issue.
    Many thanks,
    Kim

    Hi Kim,
    I had a requirement to convert the out put into PDF format and send an email using the function module SO_NEW_DOCUMENT_ATT_SEND_API1.
    I am providing my coding, hope it helps: 
    form SEND_EMAIL .
    DATA:   t_mailpack   TYPE sopcklsti1 OCCURS 0 WITH HEADER LINE,
              t_mailhead   TYPE solisti1   OCCURS 0 WITH HEADER LINE,
              t_mailbin    TYPE solisti1   OCCURS 0 WITH HEADER LINE,
              t_mailtxt    TYPE solisti1   OCCURS 0 WITH HEADER LINE,
              t_mailrec    TYPE somlreci1  OCCURS 0 WITH HEADER LINE.
      DATA: wa_maildata    TYPE sodocchgi1,
            l_filename(50) TYPE c,
            l_fldname(30)  TYPE c,
            l_fldval(100)  TYPE c,
            l_lines        TYPE i,
            l_text         TYPE text128 .
      DATA: w_email_subrc  TYPE i.
      DATA: w_ship like vbfa-vbeln.
      CLEAR: wa_maildata,
             t_mailtxt,
             t_mailbin,
             t_mailpack,
             t_mailhead,
             t_mailrec.
      REFRESH: t_mailtxt,
               t_mailbin,
               t_mailpack,
               t_mailhead,
               t_mailrec.
    *-- Fill output file
    *- Fill header
      CLEAR: t_mailbin.
    t_mailbin[] = pdf_tab[].
      t_mailbin[] = it_att[].     "Uthaman
    *This line is added to get the shipment no in Subject Line
    SELECT SINGLE * FROM vbfa WHERE vbelv EQ nast-objky
                                AND vbtyp_v EQ c_vbtyp_v_j
                                AND vbtyp_n EQ c_vbtyp_n_8.
    w_ship = vbfa-vbeln.
    shift w_ship left deleting leading '0'.
    *-- File name
    if nast-kschl EQ 'ZFPL'.
      CLEAR l_filename.
      CONCATENATE 'Packing List -'
                  sy-datum4(2) sy-datum6(2) sy-datum(4) '.PDF' INTO l_filename.
    *-- Creation of the document to be sent File Name
      wa_maildata-obj_name = 'Packing List'.
    *-- Mail Subject
      CONCATENATE l_filename '-' 'Shipment No -' w_ship INTO wa_maildata-obj_descr SEPARATED BY space.
    *-- Mail Contents
      t_mailtxt-line = 'Packing List'.
      APPEND t_mailtxt.
    ENDIF.
    if nast-kschl EQ 'ZFBA'.
      CLEAR l_filename.
      CONCATENATE 'Booking Advice -'
                  sy-datum4(2) sy-datum6(2) sy-datum(4) '.PDF'
                  INTO l_filename.
    *-- Creation of the document to be sent File Name
      wa_maildata-obj_name = 'Booking Advice'.
    *-- Mail Subject
      CONCATENATE l_filename '-' 'Shipment No -' w_ship INTO wa_maildata-obj_descr SEPARATED BY space.
    *-- Mail Contents
      t_mailtxt-line = 'Packing List'.
      APPEND t_mailtxt.
    ENDIF.
    *-- Prepare Packing List
    *-- Write Packing List (Main Subject)
      CLEAR: l_lines, t_mailpack.
      DESCRIBE TABLE t_mailtxt LINES l_lines.
    READ TABLE t_mailtxt INDEX l_lines.
      t_mailpack-doc_size = ( l_lines - 1 ) * 255 + STRLEN( t_mailtxt ).
    CLEAR t_mailpack-transf_bin.
      t_mailpack-transf_bin = ' '.
      t_mailpack-head_start = 1.
      t_mailpack-head_num = 0.
      t_mailpack-body_start = 1.
      t_mailpack-body_num = l_lines.
      t_mailpack-doc_type = 'RAW'.
      APPEND t_mailpack.
      t_mailhead = l_filename.
      APPEND t_mailhead.
    *-- Write Packing List (Attachment)
      CLEAR: l_lines, t_mailpack.
      DESCRIBE TABLE pdf_tab[] LINES l_lines.
    READ TABLE pdf_tab INDEX l_lines.
      t_mailpack-doc_size = ( l_lines - 1 ) * 255 + STRLEN( t_mailbin ).
      t_mailpack-transf_bin = 'X'.
      t_mailpack-head_start = 1.
      t_mailpack-head_num = 1.
      t_mailpack-body_start = 1.
      t_mailpack-body_num = l_lines.
      t_mailpack-doc_type = 'PDF'.
      t_mailpack-obj_name = l_filename.
      t_mailpack-obj_descr = l_filename.
      t_mailpack-obj_langu = 'E'.
      APPEND t_mailpack.
    *-- Set recipients
    tables :  ztotcemail.
    SELECT SINGLE * FROM vbfa WHERE vbelv EQ nast-objky
                                AND vbtyp_v EQ c_vbtyp_v_j
                                AND vbtyp_n EQ c_vbtyp_n_8.
    CLEAR vttk.
    SELECT SINGLE * FROM vttk WHERE tknum EQ vbfa-vbeln.
    SELECT SINGLE * FROM ztotcemail WHERE tplst = vttk-tplst
                                      AND lifnr = vttk-tdlnr.
    IF SY-SUBRC EQ 0.
      t_mailrec-receiver = ztotcemail-smtp_addr. .
      t_mailrec-rec_type  = 'U'.
      APPEND t_mailrec.
    ENDIF.
    **-- Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = wa_maildata
          put_in_outbox              = 'X'
         commit_work                = 'X'  " N-16
        TABLES
          packing_list               = t_mailpack
          object_header              = t_mailhead
          contents_bin               = t_mailbin[]
          contents_txt               = t_mailtxt[]
          receivers                  = t_mailrec
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
      w_email_subrc = sy-subrc.
      IF sy-subrc EQ 0.
        MESSAGE s000(zotc) WITH 'Email output sent successfully'.
      ELSE.
        MESSAGE s000(zotc) WITH 'Can not send email output'.
      ENDIF.
    endform.                    " SEND_EMAIL
    Regards,
    Kittu

  • How to customize email notifications sent by Cisco Prime.

    Hi,
    We have been receiving email alerts for any unresponsive devices in Cisco Prime. I was able to find the option to customize the subject for such email alert under Admin-Network-Notification and Action settings, however I am not able to locate the option to change the email body.
    The email body for such alerts has lot of unrequired information which I would like to remove.
    Can someone provide me the options on how to get rid of such information in the email body.
    Regards

    Hi ,
    To customize the e-mail subject:
    Step 1 Select Admin > Network >  Notification and Action Settings > Fault - Email subject  customization.
    The available and selected lists of the subject attributes for e-mail  are displayed.
    To customize the e-mail subject, you can add and remove subjects from  the current e-mail subjects list. By default, following list of e-mail  subject attributes are displayed in the Selected Subjects for E-Mail  box.
    •Event ID
    •Device Name
    •Time
    •Severity
    •Event Name
    •Status
    To add a subject:
    a. Select the subject attribute  from Available Subjects for E-Mail.
    b. Click Add.
    The selected subject attribute is added to the Selected Subjects for  E-Mail list.
    You can add a subject attribute only from the Available Subjects list to  the Selected Subjects list. You cannot add a subject attribute from the  Selected subject list to the Available Subject list.
    To remove a subject attribute:
    a. Select the subject attribute  from Selected Subjects for E-Mail.
    b. Click Remove.
    The selected subject attribute is removed from the Selected list and  added to the Available subjects for E-Mail list.
    You can remove a subject attribute only from the Selected Subjects list  and not from the Available Subjects list.
    Step 2 Click Up or Down to rearrange the  order of the selected e-mail subject attributes.
    Step 3 Click Apply to save the customized e-mail  subject attributes.
    Note: Other than this you will not be able to customize any thing, User-defined fied option will not work.
    I hope this will help
    Thanks
    Afroz

  • How do I include the subject from an email in the body of a response email?

    First off, let me apologize if this is addressed somewhere else in the forum. I searched used many different variations on the theme, to no avail.
    So, yes, I am a former PC/Outlook user who made the "switch". For the most part, I couldn't be happier. However, one thing that I have been searching and searching for an answer on is: including all the info from an original email (i.e. subject, to, from, date) in a response email. Because wording this is a bit tricky, I am going to show what I mean by example.
    Apple Mail includes the original email info like this:
    On Jul 7, 2006, at 5:03 PM, John Smith wrote:
    Outlook (and most other email services) includes the original email info like this:
    -----Original Message-----
    From: John Smith [mailto:[email protected]]
    Sent: Friday, July 07, 2006 5:03 PM
    To: Jeff Smith
    Subject: The only problem I am having with Mail is...
    Point is, I would like to include more info than Mail allows. Is there anyway to set it up to include all the Outlook-style info? The preferences do not seem to address this issue and every single friend/co-worker of mine who I email with all have no idea. Thanks for your repsonse. Cheers, Jay
    PowerBook G4   Mac OS X (10.4.6)  

    Hello, and welcome to the Discussions.
    I use the Append Selected Messages feature to do this. Prior to clicking on Reply, you can highlight the smallest amount of text, and then delete that text, and then Append the message by having Selected in in the list of messages.
    You can do this for one, or many messages. With a Reply, you would only append the one message. See:
    http://docs.info.apple.com/article.html?path=Mail/2.0/en/ml1008.html
    Ernie

  • How to edit email body of email subscription and how to subscribe to a IR private group by report

    hi,
    I am new to oracle Apex and I need help in finding how I can customize the email body of the email subscription of IR. Also when a user creates a private/public report in IR using group by in IR and subscribe to it, they are getting report without group by as htm attachment in email subscription. can you please help me know how I can prevent this??

    hi,
    anybody please help me with this. I am still looking out for help/answers..

  • How to send a payslip of the emp in the email body in R12

    Hi All,
    Would like to know how can we send the payslip of an employee in the email.
    How can one do the above mentioned function in Oracle Payroll in R12.
    Please note that the payslip amounts should be in the email body and not as an attachment.
    thanx,
    Chetan

    Open the workflow process you are using.
    Open the notification.
    In the notification you will see there will be a message given
    Open the message and in that there will different parts of message like Subject, Body as text and HTML.
    See the HTML body you can find the there must be some attributes defined there. Create you own attribute say a URL (which is OA Page, a function in Apps)
    and test.
    e.g in OTL Workflows for Employees (HXCEMP) workflow, there is a message template "Inline Timecard Approval" in which a URL attribute is used.
    I think some workflow experts can help you more.
    HTH

  • 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...

  • How can I recieve an email notification

    How can I receive an email notification that I got a response back when I send my document out.

    Hi Richy E,
    You may logon to Acrobat Pro, PDF Pack, Export PDF & More | Acrobat Document Solutions with your Adobe id and password.
    Go to 'Send' section 'Select Files To Send' -> 'Choose Files From My Computer'.
    Select desire file then click on check box of 'Send Personalized Invitation'.
    Write the Email id in the given space below the 'Send To' option then click on 'Send'.
    Regards,
    Florence

  • How can I print only the body of the email without all the 'Received history'

    When I print a received email, the first page is a list of 'Received:' data and X- data.
    How do I print just the body of the message?
    John Sykes

    View (Alt-V) - Headers - Normal

Maybe you are looking for

  • Migration wont work on my mac air?

    Ive tried to migrate my itunes from my old laptop to my new air and when i try to open migraiton on my air it says it isnt supported or something along those lines not 100% sure of the wording?

  • Unable to print

    I am unable to print a PDF. It is 181MB and 330 pages but when I give the print command it takes for ever to process and the print window shows that each sheet is around 50MB. Ultimately an error message popsup just statting that document can not be

  • How can I use a file in Eclipse?

    Hi mates, I dnt know how I can use Eclipse to operate a file, like the sample input file. I try to set a file name in "Argument" tab and create a file in the project, but it 's not working. CHEERS, Elton

  • Design a 1st order Butterwort​h low pass filter

    Hey there... Really hope that u guys can guide me to solve these questions.. =) Design a first order Butterworth low pass filter with cut-off frequency fo = 20 kHz and the gain K = 1. You will need to simulate the circuit using Multisim and shows tha

  • Server Admin can't connect to my server

    I updated to 10.4.10 and since then I haven't been able to connect to my server using Server Admin or Server Monitor. In my system.log i get the following error over and over again: /Applications/Server/Server Admin.app/Contents/MacOS/Server Admin: [