Customize Concurrent Request Notification email

Hi Guys,
Can anyone tell me if it is possible to customize the body of the notification send when concurrent request is submitted. it is as follows by default:
Request number 123123 (Request Name) completed at 13:00:00 on 12-MAY-2011 with a status of Normal. This request was submitted by USER1. The report may be viewed at the following URL.
Please click here to respond
Many thanks for any help.
Brian

Brian,
Please see if these docs help.
How To Change the Text/Link "Please Click Here To Respond" in the Response Required Notifications [ID 1083771.1]
Is it Possible to Remove Approve / Reject Links from the E-Mail Notification For Internet Expenses Approval? [ID 1298366.1]
Thanks,
Hussein

Similar Messages

  • Is there a way to send output from a Concurrent Request via email in r12?

    We are looking for a way to send emails out from the Concurrent Request output in r12.
    Discussions internally have involved using Unix procedures/commands but we were looking for an EBS integrated solution if one is available.
    I did find document 811716.1which seems to provide a solution, but the patches and information given are for 11i (we are r12). If this functionality is available in r12, is there any further documentation we can use?
    Any assistance would be appreciated.
    Thanks.
    Kevin
    Edited by: user3065048 on Jul 21, 2009 2:52 PM

    Duplicate post.
    Is there a way to send output from a Concurrent Request via email in r12?
    Re: Is there a way to send output from a Concurrent Request via email in r12?

  • Workflow-Attaching pdf from Custom Concurrent Request to email notification

    Hi,
    I was wondering if anyone has done something similar before and maybe have any suggestions?
    I am trying to attach a .pdf file that is generated by a custom concurrent request report to an email notification.
    The .pdf is generated correctly and I can access the file but I’m having problems trying to attach it to the email notification
    I have tried to use Wf_Engine.SetItemAttrText and Wf_Engine.SetItemAttrDocument but are unable to get it to attach the file.
    Does anyone know where I can find an example how to use either of the above API's? and a detailed explanation of them?
    Should the attachment always be in FND_LOBS to be picked up or can it be picked up from the file system?
    What should the Workflow - Notification - Performer Value be set to, that is referencing the message with the Document Attribute?
    I'm unable to find a detailed explanation of how this can be done in the Oracle Workflow Developers Guide Release 2.6.4.
    Any reference material or guidance as to where an example can be found will be greatly appreciated
    Thanks
    Coenraad

    The PLSQL procedure that generates the PL/SQL BLOB documents must follow standard API formats and a sample is shown below.
    procedure GENERATE_PDF(document_id in varchar2,
    content_type in varchar2,
    document in out nocopy blob,
    document_type in out nocopy varchar2)
    is
    l_docid pls_integer;
    l_filename varchar2(100);
    l_errmsg varchar2(100) := 'The Document is not found in the Database';
    l_bdoc blob;
    l_data_type varchar2(100);
    begin
    l_docid := to_number(document_id);
    dbms_lob.CreateTemporary(l_bdoc, FALSE, DBMS_LOB.Session);
    SELECT file_data
    into l_bdoc
    FROM fnd_lobs
    WHERE file_id= l_docid;
    dbms_lob.Copy(document, l_bdoc, dbms_lob.getLength(l_bdoc));
    exception
    when others then
    dbms_lob.WriteAppend(document, length(l_errmsg), l_errmsg);
    wf_core.context('SA_MLRTST','GENERATE_PDF',document_id);
    raise;
    end GENERATE_PDF;
    You can use FND_LOBS or any other table to get the content. The content must be stored into the corresponding table before using it.
    The following is the PLSQL script for generating BINARY data for a file
    declare
    l_bfile BFILE;
    l_temp_blob blob;
    l_docid number :='1000';
    l_ctype varchar2(300) :='application/pdf';
    l_filename varchar2(50) :='testfile.pdf';
    begin
    dbms_lob.createtemporary(l_temp_blob, true, dbms_lob.session);
    l_bfile := BFILENAME('OEX_INPATH',l_filename);
    dbms_lob.fileopen(l_bfile, dbms_lob.file_readonly);
    dbms_lob.loadfromfile(l_temp_blob, l_bfile, dbms_lob.getlength(l_bfile));
    INSERT INTO fnd_lobs(file_id, file_name, file_content_type,file_data,file_format)
    VALUES( l_docid,l_filename,l_ctype,l_temp_blob,'binary');
    end;
    OEX_INPATH - this is a database directory, you need to copy the pdf file which you want to convert to BINARY to the location which this directory points
    l_filename - name of the file which need to be converted to BINARY format

  • Notification Email should be triggered when hit the Apply changes?

    Hi All,
    Am creating a request form similiar to a remedy form,when ever the user create a new request and submit the request.Notification email will be sent to the user and the admin.
    Here when the admin ppl rejects the request,a notification email triggered to the user like request has been rejected .
    I have three radio buttons in the Form
    1.Submitted(default).
    2.Rejected.
    3.Accepted.
    When the admin edit the request and select rejected radio button,and apply changes ,a notification email should be triggered to the user.
    Now i have a after submit process for edit the ,which will be triggered when ever the user hit the apply changes button and it will send notification to both user and admin.
    How to achieve the notification email that should be triggered when the admin rejects the request and submit the form???
    am using apex version 4.0
    when the Admin will select the reject radio button and hit tha apply changes then the notification email should be sent to the user!!
    Always appreciate your help!!!
    Thanks & Regards,
    Ramya.

    Ramya wrote:
    Hi Gurujothi,
    Thanks for your response!.
    I can able to send email now.Thing is i need to send an email like when the admin rejects the request.
    For eg.
    1.Admin opened the request and select the Reject radio button and clicking Applychanges button then the email notification will be sent to the user like,
    Your request has been Rejected.
    2.If the Admin selects the radio button accept radio button and clicked apply changes,start processing about the request then the Email notification will be sent to the user like ,
    Your request has been modified .Request will be notified by the admin.(Working now)
    DO i need to create two separate process for the email notification like
    one is for all the modifications that the user/admin will do in the form ,once the record is created and another process is for Rejection purpose of the Form.But only one Apply changes button is there in the Form.You don't need two page process, In one single process you can acces the page item session values using *:YOUR_ITEM_NAME* bind variable syntax or V function like this V('YOUR_ITEM_NAME')
    So in your PL/SQL code you can easily prepare the email body based on your radio group item's value
    declare
    l_body varchar2(4000);
    begin
    IF :Px_MY_RADIO_GROUP ='R' THEN
      l_body := build your conditional email body for rejected
    ELSIF  :Px_MY_RADIO_GROUP ='A' THEN
      l_body := build your conditional email body approved
    END IF;
    apex_mail.send(
            p_to       => '[email protected]',   -- change to your email address
            p_from     => '[email protected]', -- change to a real senders email address
            p_body     => l_body,
            p_subj     => 'APEX_MAIL Package - Plain Text message');
    end;
    See this http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/concept_ses_val.htm#HTMDB03012

  • Send email notification when a concurrent request completes with Error

    {color:#0000ff}I need to setup the system such that when a concurrent request completes with the status "Error", generate/send email notification to an application user. Please advice if you know how to configure the system to accomplish this.
    Note: If the concurrent request completes with status "Normal" or "Warning", do not send/generate email notification to the application user.
    Thanks.
    {color}

    We do what amOx does. I made a concurrent program that calls a sql script, and emails me of errored jobs. It is more convenient than logging in each day. I ran this twice daily, and the sql checks for the previous 12 hour time slice (ie - twice a day run).
    ..colin

  • How to customize SharePoint Foundation 2013 workflow notification emails

    We have a SharePoint Foundation 2013 workflow that sends emails when certain criteria are met. We have tried to customize the emails using SharePoint Designer, but the emails that are received are different.
    Ho do we configure SharePoint to send the emails formatted as we specified in the workflow?
    The emails we receive are all formatted like this:
    Subject:
    [Company Name Workflow] - [Item] has been assigned to you
    Content:
    Task assigned by [User Name] on [Date].
    To complete this task:
    1.    Review [Item].
    2.    Perform the specific activities required for this task.
    3.    Use the Open this task button to mark the task as completed. (If you cannot update this task, you might not have access to it. Click here to request access.)

    Hi,
    According to your post, my understanding is that you want to customize SharePoint Foundation 2013 workflow notification emails.
    We’ll need to do a few things to replace SharePoint’s default notification with our own. The first thing we need to do is turn off SharePoint’s default notification. On the Workflow Tasks list, go the Advanced Settings and select
    No for Send e-mail when ownership is assigned. Then we need to create workflow to send email.
    There is an article for your reference, although it is about the SharePoint 2007, it still works for SharePoint 2013.
    Create a Detailed Custom Task Notification with a SharePoint Designer Workflow
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Notification failure for concurrent requests

    Hi,
    Here, we have a situation where there are concurrent requests which are completing normal for a user, but no notification is being sent to that user after completing the request. Checked both user and mail ID and both are fine. What could be the reasons for this failure. Please advice ASAP

    Please post the details of the application release, database version and OS.
    Here, we have a situation where there are concurrent requests which are completing normal for a user, but no notification is being sent to that user after completing the request. Checked both user and mail ID and both are fine. What could be the reasons for this failure. Was this working before? If yes, any changes been done recently?
    Can you find any errors in the Workflow log files?
    Please verify the value of the (Email Style) from the user preferences and make sure it is set properly.
    Workflow Java Mailer & Notifications FAQ [ID 562551.1] -- Why would Workflow Email Notifications not be received for a user, but are for others?
    Please advice ASAPFor urgent requests, please log a SR.
    Thanks,
    Hussein

  • Notify via email upon concurrent request failure

    Hi,
    I would like suggestions on the best way to solve the problem of being able to notify user(s) via email upon the failure of a concurrent request. Apps has the built-in ability to notify upon completion, not just upon failure. I want to limit the need for any user/passwd info being exchanged.
    So far, my best bet I think is a dbms_job.
    Any suggestions other than writing a shell script to login to the database and check on fnd_concurrent_requests?
    Seems like this would be a good feature to add for Apps.

    All you need is to create a trigger as below
    CREATE OR REPLACE TRIGGER sgldba.sgl_concurrent_request_status
    after insert or update on apps.fnd_concurrent_requests
    for each row
    WHEN (new.status_code in ('E','G','T'))
    begin
    insert into sgldba.sgl_concurrent_request_track values (
    :new.request_id,
    :new.status_code,
    :new.actual_start_date,
    :new.actual_completion_date);
    end sgl_concurrent_request_status;
    I am having the trigger to update a table sgldba.sgl_concurrent_request_track with the request_id , status_code , actual start date , actual completion date .
    You can proceed further by adding addition information to the trigger like sending mail
    Regards

  • Concurrent Requests output file (pdf format) send to email

    Friends -
    Does any one implemented this.
    Submit Conurrent Requests once the requests is completed send the output file(PDF Format) as an attachement to email.
    Please provide us steps.
    Regards
    VSH

    Hi,
    See this thread.
    concurrent ouput to email
    concurrent ouput to email
    Regards,
    Hussein

  • Is there a way to customize the MDM Workflow email notification content?

    I am looking for a way to customize the MDM Workflow email / notification  content. For example, I might want to put the Supplier ID(s) of the impacted supplier records (be it Update, Insert & Delete) into the email body or put an URL into the email body.
    Can MDM Workflow do this?
    Is there any workaround?
    Thanks

    Hi,
    What you can do is add a boolean field to the repository, for instance "Send Mail". You can use an assignment in the Workflows to set this field to true. Next, define an updatelistener and pick up the change to this field. If the value is "true", send out an email. Afterwards, let the listener change the value back to "false".
    Good luck,
    Gerwin

  • EPrint Job Status Notification Email Customization

    Dear All HP experts,
    I am new to this eprint service, i just purchased a hp printer with model Deskjet Ink Advantage 4615, after i setup it properly, now i am able to send email to the printer, after the printer receive the email print job, it will return a email message to my email account with subject "ePrint Job Received" if success print the email or "ePrint Error" if incase failed to print the email.
    However, i have a business need to customize the email subject and also email body for the notification email that i received, when i send a email that contain PO with number 00000123 to the email printer, it should be able to return me the alert email with subject that contain my PO number as well, so that i can recognized whether my PO is successfully print or not and also for record keeping.
    Can I know whether this is possible to done or can't be done? Any help from HP experts are highly appreciated.

    Hi Kklee,
    I understand that you want to customize the notification email you receive after sending an ePrint job.  I am sorry there is no way to customize the notification email. 
    Hope this helps.
    **If you find this helpful or want to say thanks make sure to click the white star under my name to give me Kudos. **

  • Customize Notification Email

    Hello,
    The notification email is typically printed and used. Can the format of the email be modified? The email has a graphic on it -- can it be removed?
    Can a custom notification email be used?
    Thanks.
    --Rich Ota

    Hi;
    The only customization available is on the "Notifications" section of the Options tab allowing you to change the Subject and Message and define whether you want the data and blank fields included.  Any other graphics etc added to the Notification email cannot be changed.
    Thanks,
    Josh

  • Customize Embedded OAF region in WF notification email

    Hi All,
    I have a requirement as below:
    There is a notification email that has an embedded OAF region. All this is oracle seeded. This region has many other regions like
    MainRegion
    -- Region1
    -- Region2
    -- Region3
    Now I would like to not show Region2 in the emails. How do we do this.
    I tried to personlize the region and make the Rendered property to false for region2. This is working fine if I see the notification from the Oracle Applications Self-service login.
    But the email(which comes to say yahoo mail) which has this as embedded region still shows all the regions(including Region2 which I had set not to render through personalization).
    Is there a way to achieve this. If so, any pointers.
    Thanks,
    Anand

    Hi Anand.
    Thank you for replying. We have 2 notification changes that we would like to implement, OIE Expense Report Approval notification and Requisition Approval notification. On both notifications, we would like to display 2 segments of the GL code associated to the line - cost center and business unit. As I mentioned in my previuos email, I was able to add those columns in both notifications by extending the VO (OAF), then doing personalization. However, we can only see those columns displayed when we are viewing the notification from the worklist, that is within Oracle Applications. The notification that comes through the email does not show those columns we've added. What other area should we be changing to make those columns display on the email notification? How come the new columns show on the notifications in the worklist, but not in the email?
    Best Regards,
    Narissa

  • How to configure notification emails for reports output or alerts for all users in r12

    Hi,
    I need to configure notification emails. I have provided settings in OAM-> Workflow and SMTP IP address in settings and only Outbound. I am able to test for my user ID.
    I want to know how to redirect emails or alerts for users like when a user runs a report he should get notification email in his outlook about the report output and details. In settings it only points for one replyto field. How do I mention all user ID's?
    Regards,
    Mohammed

    Hi Mohammed,
    You may check on XML bursting for XML based reports.
    In addition, also see links:
    http://oracle.anilpassi.com/email-output-of-concurrent-program-request.html
    Anil: Oracle Apps Concurrent program Output as Email
    Oracle ERP World: Email the output of a concurrent program as Attachment
    Also see:
    How to Redirect Output from Printer to Mail Message after Running Report (Doc ID 1036586.6)
    Thanks &
    Best Regards,

  • Directory Services User/Role Validation concurrent request impact

    we have the Java WF Mailer active and have users that receive WF notifications via email and the worklist. If we are are constantly running the Workflow Directory Services User/Role Validation concurrent request, what will this do to them?
    Thanks & Regards,
    sree

    There should not be any impact on the notifications.
    Please see (Questions On The "Workflow Directory Services User/Role Validation" Program [ID 369279.1]) for how frequent you should run this concurrent program.
    Thanks,
    Hussein

Maybe you are looking for

  • Black pixels in animated gif??

    Hi, I've got this game where I use gif's in a loop to make animations, what I don't understand though is when I use small animations they work fine but when I use bigger animations at the end of the animation a black stripe starts to form at the bott

  • I bought a Album I didn't want I want to know if I can get the money back for it

    I Accident Bought a Albom I didn't want, I was wondering if I can get the money back?

  • Looking for Photoshop Plugin Software Developer

    Anyone know where I can find a software developer to create a Photoshop Plugin?  Not having any luck finding programmers with knowledge of Adobe code. Or, is anyone a developer that can help?  Please let me know. Thank you.

  • LR vs. Aperture

    I've just started playing with the demo that is now available and I'm looking for reviews/and or opinions on LR vs. Aperture. I posted in an older thread how I'm considering LR and is there any conversion software. For now the easiest approach for me

  • Allowing the copy of duplicated files

    Hi, I'm backing up my old windows folders into my Mac. Once I'm copying the files (drag and drop) the system stops because it detects duplicated file names. I'm aware of the duplicated names and I would like to continue, however the system is not all