Sending a URL in a WF notification

Hi All,
I am new to WORKFLOW and have an object to be developed.
The requirement is to send a URL in an email notification to the notifications screen of the Workflow Administrator.
Workflow Administrator >> Administrator Workflow >> Notifications.
The notifications screen is attached to the function "WF_ADMIN_NOTIFICATIONS".
Work Done:
I have created an attribute of type URL and defaulted the value as "JSP:/OA_HTML/OA.jsp?OAFunc=WF_ADMIN_NOTIFICATIONS".
The above step has resulted in providing a URL link in the email, but, when clicked, a new window does get opened, but, I only get the header (which is in blue color and has the words like 'Home', 'Preference', Diagnostics') and the base title of page (which is also in blue and has similar options including options like, 'About the Page', 'Privacy Statement'), but not the details of the page nor does it show the details about WF or the options to Approve/Reject the notification, which generally occurs between these two title bars in blue..
Below is the exact error that is shown on the new window that gets opened:
Error
You have insufficient privileges for the current operation. Please contact your System Administrator.
**Could someone please help me in this issue?**
A quick response/guidance/inputs will be of great help, as I need to deliver this object today.
Thanks in Advance!
Regards,
AB
Edited by: user13792839 on Sep 8, 2011 10:26 PM
Edited by: user13792839 on Sep 8, 2011 11:04 PM

Duplicate post - Sending a URL in a WF notification
Srini

Similar Messages

  • URL link in the notifications

    When we receive the notifications it has a URL link to click on to view the data, any idea where this URL link gets created completely? What are the packages or config files to look for.

    Q:I tried to see what you said, but as per your email when the URL was sent as a attachment means you already captured the URL and sent it as a attachment, right?
    A:Yes, you are righte
    Q:Where did youcapture the URL (link)? I checkd in the workflow and i can not find any thing related how the URL gets created.
    A:The URL is an attribute. You are responsible to set this value.
    Q:Second problem in the DEV instnace when we use the workflow notifications to notify the users when the report gets completed it send a URL link but it is pointing to different instance> any idea which profile option or file entry need to be changed?
    A:Check your notification object and see who is the performer.
    Luiz

  • Can I send an url (link) from iMac to Apple TV

    Hi & good day,
    Everything is working just fine.
    However it is tedious to enter f ex a YouTube video _name_ into Apple TV with the simple control, spelling back and forth every letter.
    I would like to find a YouTube video on y desktop and then be able to send the url to AppleTV or somehow?
    Wouldn't it be nice.
    with best regards,
    Omar K N
    Stockholm, Sweden

    You could Airplay from an iPad or iPhone or use the Remote app on these devices to get around the clumsy physical remote interface.

  • How can I include a Credit Mgmt Case Folder URL in a workflow notification?

    I have a requirement to add a URL to a workflow notification, which is easy enough. The issue I am having is that I am not able to create a URL that successfully opens the Credit Management Case Folder that is specified in the worflow notification.
    I am only able to get the URL to launch the following successfully: http://<ce:0000>/OA_HTML/RF.jsp?function_id=16351&resp_id=23916&resp_appl_id=222&security_group_id=0&lang_code=US
    Has anyone else solved this issue? Any help would be appreciated.

    We are using eBusiness Suite 11.5.10.2, 10g database
    I created a woflow attribute of type URL.
    Name: Case Folder Link
    Frame Target: New Window
    Value: http://<instance>/OA_HTML/RF.jsp?function_id=16351&resp_id=23916&resp_appl_id=222&security_group_id=0&lang_code=US
    I then added the following line to add the URL attribute to the HTML message body.
    Case Folder Link : &CASE_FOLDER_LINK
    When using the link above I don't get any error message. However when I try to change the URL to a specific case folder URL (Note this URL should change depending on the Case Folder # provided in the notification message.):
    http://<instance>/OA_HTML/OA.jsp?_rc=ARCMANALYSISDATACRDSUMMARYPAGE&_ri=222&retainAM=Y&cmSubRegion=PARTYREGION&cmPartyId=%7B!!k5vkXUpUCWxLhSZj.uqBHQ%7D&cmCustAccountId=%7B!!lBrDTc7.B3E6QA-16tJNIw%7D&cmSiteUseId=%7B!!7jcW1qvgKOeEFCpFYCanSA%7D&OAHP=ARCMMENUAPPLICATION&OASF=ARCMANALYSISDATACRDSUMMARY&_ti=1687529995&oapc=9&oas=GiXPV8nU9RQ6Ej53zIESsw..
    The error I receive is:
    Error: You are trying to access a page that is no longer active. - The referring page may have come from a previous session. Please select Home to proceed.

  • Sending email to user using the notification template in OIM 11g

    Hi all
    I have created a Notification Template using web console in OIM 11g.
    Iam able to access the contents from notification template in my java code.
    But iam not able to find the correct api's to send email to user using the notification template
    (like tcEmailNotificationUtil using this class we can connect to email template created in design console and creating IT resourse we can send email to user using the method sendEmail).
    Waiting for your help and pointers
    Thanks and Regards
    Bipin patil

    Thanks GP!.
    But i have the same doubt here.
    "The Notification Event is defined through a XML file that must be loaded into MDS database." - in which path and in what name it should be.
    Because under /metadata/iam-features-notification, i couldnt see any event Xml present. I thought atleast we could see the existing OOB notification template's event xml files.
    Please let me know if you are aware.
    Thanks,
    Amudha

  • Sending a URL link instead of workitem

    Hi Friends
    Could anyone explain me how to send a URL link to the inbox of a user instead of an workitem?
    -Vinod

    Hello,
    You can send a URL in an email, but I assume you already know that.
    regards
    Rick Bakker
    hanabi technology

  • I need to send an automated birthday greetings mail notification

    hi all .. I have a requirement like.. I need to send an automated birthday greetings mail notification on every morning.. so I need a general code...for that
    so pls any one help me thank you in advance

    package notification;
    import java.sql.*;
    import javax.naming.*;
    import javax.sql.DataSource;
    public class Notification{
        /** Creates a new instance of Notification*/
        public Notification() {
        public static void main(String[] args) {
            try {
                String sql = "Select name, email from users where DATEDIFF(NOW(),birthday)=0)";
                Class.forName("com.mysql.jdbc.Driver").newInstance();
                Connection conn = DriverManager.getConnection(
                        "jdbc:mysql://localhost/birthday?user=java&password=javajava");
                Statement stmt = conn.createStatement();
                ResultSet rs = stmt.executeQuery(sql);
                while (rs.next()) {
                    String theText = "Congratulations "+rs.getString("name");
                     new BirthdayMail("smtprelay.myserver.net", rs.getString("email"), "[email protected]", "Automatic notification", theText, "Birthday");
            } catch (SQLException ex) { // handle the error
                System.out.println("SQLState: " + ex.getSQLState());
                System.out.println(
                        "VendorError: " + ex.getErrorCode() + " " + ex.getMessage());
            } catch (Exception ex) { // handle the error
                System.out.println("Non-sql exception: " + ex.getMessage());
                ex.printStackTrace();
    * BirthdayMail.java
    package notification;
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    public class BirthdayMail {
         * Main method to send a message given on the command line.
        public static void main(String args[]) {
            try {
                String smtpServer=args[0];
                String to=args[1];
                String from=args[2];
                String subject=args[3];
                String body=args[4];
                send(smtpServer, to, from, subject, body, "");
            } catch (Exception ex) {
                ex.printStackTrace();
            System.exit(0);
         * Constructor.
        public BirthdayMail(String s1, String s2, String s3, String s4, String s5, String s6) {
            try {
                String smtpServer=s1;
                String to=s2;
                String from=s3;
                String subject=s4;
                String body=s5;
                String personal = s6;
                send(smtpServer, to, from, subject, body, personal);
            } catch (Exception ex) {
                ex.printStackTrace();
         * "send" method to send the message.
        public static void send(String smtpServer, String to, String from
                , String subject, String body, String personal) {
            try {
                Properties props = System.getProperties();
                props.put("mail.smtp.host", smtpServer);
                Session session = Session.getDefaultInstance(props, null);
                // -- Create a new message --
                Message msg = new MimeMessage(session);
                // -- Set the FROM and TO fields --
                msg.setFrom(new InternetAddress(from, personal));
                msg.setRecipients(Message.RecipientType.TO,
                        InternetAddress.parse(to, false));           
                // -- Set the subject and body text --
                msg.setSubject(subject);
                //msg.setText(body);
                msg.setContent(body, "text/html");
                // -- Set some other header information --
                msg.setHeader("X-Mailer", "NotificationMail");
                msg.setSentDate(new Date());
                // -- Send the message --
                Transport.send(msg);
                //log.info("Message sent OK.");
            } catch (Exception ex) {
                ex.printStackTrace();
        public static boolean statusSend(String smtpServer, String to, String from
                , String subject, String body, String personal) {
            try {
                Properties props = System.getProperties();
                // -- Attaching to default Session, or we could start a new one --
                props.put("mail.smtp.host", smtpServer);
                Session session = Session.getDefaultInstance(props, null);
                // -- Create a new message --
                Message msg = new MimeMessage(session);
                // -- Set the FROM and TO fields --
                msg.setFrom(new InternetAddress(from, personal));
                msg.setRecipients(Message.RecipientType.TO,
                        InternetAddress.parse(to, false));
                // -- We could include CC recipients too --
                // if (cc != null)
                // msg.setRecipients(Message.RecipientType.CC
                // -- Set the subject and body text --
                msg.setSubject(subject);
                //msg.setText(body);
                msg.setContent(body, "text/html");
                // -- Set some other header information --
                msg.setHeader("X-Mailer", "NotificationMail");
                msg.setSentDate(new Date());
                // -- Send the message --
                Transport.send(msg);
                return true;
            } catch (MessagingException ex){
                log.error(ex.toString());
                return false;
            } catch (Exception ex){
                ex.printStackTrace();
                return false;
    }and in cron.daily a script to daily execute the project:
    #!/bin/sh
    /usr/local/jdk1.5.0_06/bin/java -jar /home/admin/proj/notification/Notification.jar
    exit 0

  • I need adobe reader api send me url please

    hi i am developing an application in C# that open password protected pdf file by supplying password programatically .Someonetold me that you have adobe reader api that take password as parameter. Please send me url i am ready to purchase.
    [spam link removed by forum host]

    Try the forum for Acrobat SDK.

  • I cannot view the family sharing invitation. My wife has sent it multiple times Via email and text yet I haven't had a notification, but when I attempt to send to her she receives the notification. Help please?

    I cannot view the family sharing invitation. My wife has sent it multiple times Via email and text yet I haven't had a notification, but when I attempt to send to her she receives the notification. Help please?

    There are a lot of posts in the forums today with people having problems with iMessage.   There was also a published outage yesterday, so it's possible there are still some issues that may be impacting you both.
    I would just wait it out - I'm sure it will be sorted out soon.

  • I have to tell Firefox that I am logging in from "home" every time I log into Facebook. Firefox will not let me unclick ""Send me an email" under Login Notifications in Facebook "My Account" settings. Why? (to both questions)

    I have to tell Firefox that I am logging in from "home" every time I log into Facebook. Firefox will not let me unclick ""Send me an email" under Login Notifications in Facebook "My Account" settings. Why? (to both questions)

    It started last week - I normally use Chrome to play my games in Facebook - but I started getting "Sorry, this feature isn't available
    right now"..... When I used IE..... no problem - a friend said to install Foxfire, which I did, but I made the mistake of having my bookmarks and whatever transferred from Google as it is the browser I used most often and it has all my bookmarks, but
    now it does the same thing when I try to log into Facebook. - I have no problem with any other website.  I deleted both Google and Foxfire and tried to start over - I cleared History and checked all the boxes hoping that this would help - but it did not.
     I can't understand why I can get in with IE, but not Google or Foxfire.  Do you have any suggestions.......
    On Friday, it started working again - and everything was fine.  But on Sunday evening I ran the History Clean in Google and when
    I went to log back in, I couldn't and got the same "Sorry" message and has stayed this way since. 
    I ran a Norton scan of the entire computer, a Hitman scan, a CCleaner scan, ...  all to no avail. Problem still exists.
    I tried to run a restore program prior to the problem, but I am getting error messages like mad.
    there has been two Windows Updates in this time frame and I don't know if this has anything to do with it or not - but my Restore program does not work.
    NYCsDancer -- if its working via Internet Explorer, we can't help you much. Most of the time it has to do with Cookies, or your Java Version. I'd reach out to Google's forums for assistance with Chrome
    https://support.google.com/chrome/?hl=en#topic=3227046
    or Firefox support for assistance with Firefox
    https://support.mozilla.org/en-US/products/firefox
    Or as S.Sengupta said  reach out to the Facebook Help center....
    Entrepreneur, Strategic Technical Advisor, and Sr. Consulting Engineer - Strategic Services and Solutions Check out my book - Powershell 3.0 - WMI: http://amzn.to/1BnjOmo | Mastering PowerShell Coming in April 2015!

  • Can not send long url in smartforms

    hello
    im tring to send long url from smartforms - using text - url.
    -243 characters and its shown not as url
    sametimes is revers part of the url or it put # in the begingn and in the end aldow there not spaces
    how can i overcomes this problem
    and if anyone have knows how to send short text conexted to the url from the smartforms for example
    click hear - and  behind that will be the url - can it be done
    thank you all

    Hello ,
    As per my understanding of the requirement you want to send a text as url in the smartform..?
    if its the requirement then create a text module with the URL in it and use this text module in the smartform ,.
    THanks ,
    M.Naveen Kumar.

  • Send email with attachment from Q2 notification to external email

    Hi,
    Whenever I create a Q2 notification, I want to send the vendor, details of the notification as attachment. Now it is copying the "coordinator" from partner function. But not copying vendor data in select partner function. Here I have to manually select the vendor. Another question here is that, this email should trigger to the email id of vendor maintained in the vendor master. This email address will be an external id. Please suggest the best way to send email to vendor along with attachment.
    Thanks
    Vineeth

    Hi
    Check with this sap note 208271 "Sending Notification email with Print function"
    and required basis configuration.
    Regards
    Shiva

  • How to remove sender name in field "From" in Notification page

    I would like to remove name ( LIUNI, ANTONIO_ ) (bold text and underline) from message and field "From" in notification page.
    I have 2 problems below:
    1.) This message "_*LIUNI, ANTONIO*_ has completed their appraisal of KERINS, ANNE MARY"
    Should change to "A multirater has completed their appraisal of KERINS, ANNE MARY"
    2.) Field From, must be blank: From: LIUNI, ANTONIO_ -> From: <Blank>
    It call standard workflow HRSSA.
    Please provide me coding in controller to set item attribute values in field "From" to blank and remove sender name in message+
    Below is the example notification:
    This notification does not require a response.
    LIUNI, ANTONIO_ has completed their appraisal of KERINS, ANNE MARY.
    Personalize "Notification Details Function"
    Personalize "Notification Details Attributes"
    Personalize Table Layout: (leftTable)
    From LIUNI, ANTONIO_
    To BILLOUD, CLAIRE
    Sent 26-Apr-2010 09:53:06
    ID 66666475
    Personalize Stack Layout: (rightStack)
    Personalize Table Layout: (rightTable)
    Personalize Stack Layout
    Personalize Stack Layout
    Personalize "Summary"
    Edited by: jamras on Apr 26, 2010 1:34 AM

    Thank you for your reply.
    Do you mean region in notification page?
    Below is region in notification page.
    Field From is in Region: /oracle/apps/fnd/wf/worklist/webui/NtfDetailsAttr.leftTable
    Document Name /oracle/apps/fnd/wf/worklist/webui/NtfDetailsAttr
    Message is in Region: Notification Details Function
    Document Name /oracle/apps/fnd/wf/worklist/webui/NotifDetailsRG
    Now I'm working on extension controller in the page below (I'm submit button in this page).
    /oracle/apps/per/selfservice/appraisals/webui/PartCompletePG
    My controller -> fao.oracle.apps.per.selfservice.appraisals.webui.FaoPartCompleteCO
    I put the following coding in this controller. It removed value in workflow attribute, but it didn't remove value from notification page.
    SSHRParams sshrparams = new SSHRParams(oapagecontext.getRootApplicationModule());
    String wfItemType = sshrparams.getItemType();
    String wfItemKey = sshrparams.getItemKey();
    // String wfProcess = "HR_APPRAISAL_DETAILS_JSP_PRC"; ///sshrparams.getProcesName().toString();
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "HR_APPRAISAL_FROM_USER_ATTR", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_USERNAME", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_DISPLAY_NAME", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_PERSON_ID", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "HR_APPRAISAL_FROM_NAME_ATTR", "");
    Thank you for your help.

  • Re-send a shared document - e-mail notification doesn't arrive

    Hi
    Great and stylish application this sharing prog. A question though :
    I uploaded a pdf-file and shared it with a friend via an e-mail notification (and link); I also sent the link to myself.
    Between the sending and the opening of the file by my friend (he has no account at the service) I changed the rights from open to restricted not knowing only users/members could open the link to a restricted file.
    He mailed me he could not open the file so I reset it to open and sent him the link again (with myself as cc). I don't know about him but I dit not get the second notification (the first link now worked without singing in).
    When I tested the sending of the same pdf to another mailbox of mine and myself in cc I got the link in the other mailbox but not in the cc-mailbox (same as the first link).
    So, once you have sent a file to a certain e-mailadress, it is impossible tot send it again ?
    thx
    Luc

    Hi Michelle
    - Put a "V" : I meant "check the box" in front of the e-mail address.
    - When I speak about "cc" I mean adding my own e-mail address after
    the one of the person with whom I want to share (to check whether the
    e-mail had been sent). This only works the first time. If I want to
    share the document again with someone else and put my e-mail address
    behind his/her address, the mail to myself never arrives (but the
    other person receives the mail).
    - I don't send from the desktop.
    grtz
    Luc
    2009/5/5 mcacbat <[email protected]>:
    Hi Luc,
    >
    Thank you for your update. I have a few questions.
    >
    I'm not sure what it means to put a "V" in front of your email address on the list? Do you mind explaining this to me?
    >
    Also, the Share UI doesn't have an "CC" option, which makes me wonder if you are sending out the files directly from the desktop version of Acrobat? I've been doing my testing using Acrobat.com exclusively...
    >
    Thanks for you help!
    >
    Michelle
    >

  • How to send an URL with arguments in a mailto: link ?

    Hello,
    I need to build simple mailto links to send urls in the body of the message.
    Unfortunately there are arguments in this url : like http://host/SearchServlet?toSearch=foo";
    When I click on the link the body is truncated before the ?
    even when I replace ? with %3F or &#63; !!!
    How can I pass this URL ?
    Regards
    PS : Below is sample javascript
    <html>
    <body>
    <script language="javascript">
    function mailpage()
    mail_str = "mailto:?";
    mail_str += "body= Link to http://host/SearchServlet?toSearch=foo";
    mail_str += "&subject=Search";
    location.href = mail_str;
    </script>
    <A HREF = "javascript:mailpage()">E-mail This Page</A> E-mail This Page
    </body>
    </html>

    Try to replace the ? and the =.
    Somewhat like:
    function mailpage() {
      mail_str = "mailto:?";
      mail_str += "body=Link to http://host/SearchServletQuestionMarktoSearchEqualsfoo";
      mail_str += "&subject=Search";
      location.href = mail_str;
    }Happy Coding! :-)

Maybe you are looking for

  • OS X 10.8.3 says it brings redeeming gift cards with webcam on mac app store, doesnt seem to work for me?

    Updated to OS X 10.8.3, While updating i read the notes about how you can now redeem gift cards with the built in webcam on the Mac App Store, Opened it up and Clicked Redeem > signed in la di da, and it doesnt seem to work for me. Specs: MBP 13 inch

  • Hello

    I have prepared a report regarding the TDS details . I have used the tables BSIS and BSAS. But when I am executing the report I am facing runtime error (TIMEOUT ERROR) . can any body suggest me what I have to do for its batter performance???? Moderat

  • ZIP problem - please help

    Below there is a program which updates an OpenOffice file, in fact a zip file. It works fine on window but on Netware I receive an exception java.util.zip.ZipException: invalid entry CRC-32 (expected oxffffffffc0f3d518 but got 0xc0f3d518) Any ideas i

  • How to encrypt data using DES in ABAP?

    Hi Experts, I need to do encryption/decryption between ABAP and JAVA. Is there any function in ABAP world can do the DES or any other well known symmetrical encryption? Thank you so much! Best Regards, Guo Guo Qing

  • US W2 OFX Question

    I have a requirement to allow ESS users to download their previous year's W2 in OFX format. I will appreciate any ideas about how best this can be achieved. My thoughts: Solution 1: Step 1: Create a web dynpro application and deply it on the Portal E