Email  Collaberation Task to   Receiver

Hi Experts ,
I have follwoing requirement .We are using UWL
1. When ever  a Task though AdHoc reuqest in   (collaberation task)  UWL   is created  then the reeciver should get an email notification in OutLook  or Lostus Notes or any other email id   
2. Email should contain a link to that workitem .
Thanks

Hi Martin
Thanks for your reply .I found one link on help.sap.com
http://help.sap.com/saphelp_nw04s/helpdata/en/b3/8850cf40544be1a940b179f03cdbc3/frameset.htm
Presently wotking on it meantime gimme your inputs on it
Thanks
Prasad

Similar Messages

  • Unable to receive an email by task scheduler on audit failure in windows server 2008 r2 security log

    Deal All,
    I am sorry in advance if i would be on wrong forum, i have created a task on Server 2008 r2 Domain controller that when an audit failure event triggered in windows security log then an email should reach on my email ID, but unfortunately, nothing happen
    on audit failure.i receive no email from task scheduler.
    kindly suggest me to resolve the issue. I have created Email task on  event ID 4771.
    Thanks.
    Zeeshan Ibrahim Network Administrator

    Hi Zeeshan,
    I have found a hotfix against the same error messages, though it applies to Windows Vista and Windows Server 2008, I am not sure if it will work on your machine.
    Please refer to this KB article below:
    Duplicate triggers are generated incorrectly in scheduled tasks in Windows Vista or in Windows Server 2008
    http://support.microsoft.com/kb/2617046
    Please feel free to let us know if this hotfix couldn’t help you fix this issue.
    Best Regards,
    Amy Wang

  • Problem with sending email calendar task

    I am generating an email calendar task that works fine. Now my users want the organizer to receive an email back when user accepts/declines task. I must be missing something. Can anyone tell me how to turn on the "Request responses" ? Thank you. Below is my code:
    PROCEDURE ical_run (
       v_email varchar2,
       v_msg_subject varchar2,
       v_msg_text varchar2,
       v_rev_due_date varchar2
       )  IS
       l_ical_event VARCHAR2(32767); 
       messagE_no varchar2(5);
       v_from varchar2(80) := 'myemailaddress'; 
    BEGIN 
       l_ical_event := ical_event(  
          p_start_date      => TO_DATE(v_rev_due_date || '12:01AM','DD-MON-YYYYHH:MIAM')  
        , p_end_date        => TO_DATE(v_rev_due_date || '11:59PM','DD-MON-YYYYHH:MIPM')  
        , p_summary         => 'summary' 
        , p_organizer_name  => 'organizer_email' 
        , p_organizer_email => 'organizer_email'   
       send_ical_email(   
          p_to        => v_email  
        , p_from      => v_from 
        , p_subj      => v_msg_subject
        , p_body_html => v_msg_text
        , p_body_ical => l_ical_event  
    END;
    CREATE OR REPLACE FUNCTION TADDS.ical_event ( 
       p_start_date      IN DATE,
       p_end_date        IN DATE,
       p_summary         IN VARCHAR2,  
       p_organizer_name  IN VARCHAR2,  
       p_organizer_email IN VARCHAR2,   
       p_version         IN VARCHAR2 := NULL, 
       p_prodid          IN VARCHAR2 := NULL, 
       p_calscale        IN VARCHAR2 := NULL, 
       p_method          IN VARCHAR2 := NULL 
       RETURN VARCHAR2   
    AS    
       l_retval VARCHAR2(32767);  
       l_lf     CHAR(1) := CHR(10);  
    BEGIN 
       l_retval := '' 
          || 'BEGIN:VCALENDAR' || l_lf  
          || 'VERSION:' || NVL(p_version,'2.0') || l_lf  
          || 'PRODID:' || NVL(p_prodid,'-//Your company name//NONSGML ICAL_EVENT//EN') || l_lf  
          || 'CALSCALE:' || NVL(p_calscale,'GREGORIAN') || l_lf  
          || 'METHOD:' || NVL(p_method,'REQUEST') || l_lf  
          || 'BEGIN:VEVENT' || l_lf  
          || 'SUMMARY:' || p_summary || l_lf  
          || 'ORGANIZER;CN="' || p_organizer_name || '":MAILTO:' || p_organizer_email || l_lf  
          || 'DTSTART:' || TO_CHAR(p_start_date,'YYYYMMDD') || 'T' || TO_CHAR(p_start_date,'HH24MISS') || l_lf  
          || 'DTEND:' || TO_CHAR(p_end_date,'YYYYMMDD') || 'T' || TO_CHAR(p_end_date,'HH24MISS') || l_lf  
          || 'DTSTAMP:' || TO_CHAR(SYSDATE,'YYYYMMDD') || 'T' || TO_CHAR(SYSDATE,'HH24MISS') || l_lf  
          || 'UID:' || RAWTOHEX(SYS_GUID()) || '@yoururl.com' || l_lf  
          || 'STATUS:NEEDS-ACTION' ||  l_lf  
          || 'END:VEVENT' || l_lf  
          || 'END:VCALENDAR';  
       RETURN l_retval;  
    END ical_event;
    PROCEDURE send_ical_email (  
       p_from      IN VARCHAR2  
    , p_to        IN VARCHAR2  
    , p_subj      IN VARCHAR2  
    , p_body_html IN VARCHAR2  
    , p_body_ical IN VARCHAR2  
    AS 
       l_connection UTL_SMTP.CONNECTION;  
       l_mail_serv  VARCHAR2(50) := 'nwo22';  
       l_mail_port  PLS_INTEGER := '25';  
       l_lf         CHAR(1) := CHR(10);  
       l_msg_body   VARCHAR2(32767);  
    BEGIN 
       l_msg_body :=  
             'Content-class: urn:content-classes:calendarmessage' || l_lf  
          || 'MIME-Version: 1.0' || l_lf  
          || 'Content-Type: multipart/alternative;' || l_lf  
          || '  boundary="----_=_NextPart"' || l_lf  
          || 'Subject: ' || p_subj || l_lf   
          || 'Date: ' || TO_CHAR(SYSDATE,'DAY, DD-MON-RR HH24:MI') || l_lf  
          || 'From: <' || p_from || '> ' || l_lf   
          || 'To: ' || p_to || l_lf   
          || '------_=_NextPart' || l_lf  
          || 'Content-Type: text/plain;' || l_lf  
          || '  charset="iso-8859-1"' || l_lf  
          || 'Content-Transfer-Encoding: quoted-printable' || l_lf  
          || l_lf  
          || 'You must have an HTML enabled client to view this message.' || l_lf  
          || l_lf  
          || '------_=_NextPart' || l_lf  
          || 'Content-Type: text/html;' || l_lf  
          || '  charset="iso-8859-1"' || l_lf  
          || 'Content-Transfer-Encoding: quoted-printable' || l_lf  
          || l_lf  
          || p_body_html || l_lf
          || l_lf  
          || '------_=_NextPart' || l_lf  
          || 'Content-class: urn:content-classes:calendarmessage' || l_lf  
          || 'Content-Type: text/calendar;' || l_lf  
          || '  method=REQUEST;' || l_lf  
          || '  name="meeting.ics"' || l_lf  
          || 'Content-Transfer-Encoding: 8bit' || l_lf  
          || l_lf  
          || p_body_ical || l_lf  
          || l_lf  
          || '------_=_NextPart--';  
       l_connection := utl_smtp.open_connection(l_mail_serv, l_mail_port);  
       utl_smtp.helo(l_connection, l_mail_serv);  
       utl_smtp.mail(l_connection, p_from);  
       utl_smtp.rcpt(l_connection, p_to);  
       utl_smtp.data(l_connection, l_msg_body);  
       utl_smtp.quit(l_connection);  
    END send_ical_email;Edited by: user8116955 on Jul 28, 2009 11:02 AM

    In article <[email protected]>, Scarab wrote:
    > For example I`ve got [email protected], [email protected],
    > [email protected] accounts in my GW system. I`ve got [email protected]
    > account on non-GroupWise system. I`d like to have group alias to send
    > emails simulateusly to [email protected], [email protected],
    > [email protected] and [email protected] and group alias must be in
    > example.com domain. That`s why I configured [email protected] alias in
    > non-GroupWise system but it doesn`t work with GroupWise IMAP.
    >
    Now we are even more confused
    - system GW knows itself and answers for example.com
    - system other knows itself and answers for __________?
    You used example2.com in your above which is different from what you
    started out with. And now you are mentioning IMAP that you haven't
    mentioned at all before. Perhaps you are writing faster than you are
    thinking and missing getting the key data into here, and that makes it
    difficult for us to constructively help you.
    Andy Konecny
    Knowledge Partner (voluntary SysOp)
    KonecnyConsulting.ca in Toronto
    Andy's Profile: http://forums.novell.com/member.php?userid=75037

  • My Apple store ID password is not working, so I tried to send a message to my Yahoo email (ID) the new password, so when it said that a massage was send to my email, but when I login to my yahoo email, I didn't receive any email from apple

    My  other apple store ID ([email protected]) password is not working, so I tried to send a message to my Yahoo email (ID) the new password, so when it said that a massage was send to my email, but when I login to my yahoo email, I didn’t receive any email from apple

    You can send over WiFi, but it sounds as if you need to setup your Gmail account, or did you do this already?

  • Email notifications not being received

    Email notifications are not being received every time a customers submits data. We stopped receiving notifications after the email came about shutting down the service. We have a half dozen forms live on the web and none of them are sending out notifications. One example is located at Online Complaint | ORCAA. Nothing has changed from the backend and both email addresses that should receive notifications are verified.
    I submitted data to the form and received a notification, but not the 2 email addresses that are listed on the FormsCentral backend. The Adobe domain is whitelisted with GApps.
    Thoughts?

    I've tested your form a bit and it seems that email receipts are working. For me to test email notifications I would need to be a co-author. If you can add me to one of the problem forms I will investigate further and let you know what I find.
    Andrew Yarborough
    [email protected]

  • My usual iCloud account has been locked out.  I tried the email link - didn't receive an email.   So I created a new Apple ID with another email but now I can't access my other Apple ID Mail, etc..

    My usual Apple ID/iCloud account has been locked out.  I tried the email link - didn't receive an email.   So I created a new Apple ID with another email but now I can't access my other Apple ID Mail, etc..  How do I get the Apple ID I want to use working again?   Help. 

    Hi JkeeneSoldano,
    Thank you for visiting Apple Support Communities.
    To regain access to your Apple ID, try to reset your password using one of these methods:
    Answer your security questions. Use these steps if you know the answers to your security questions.
    Use email authentication. We'll send you an email that you can use to change your password.
    Use two-step verification. If you set up two-step verification, you can use it to change your password. You just need your recovery key and a trusted device.
    From:
    If you forgot your Apple ID password - Apple Support
    If you need to use the email verification method but don't receive the reset email, see this link for more help:
    If you didn't receive your verification or reset email - Apple Support
    Best Regards,
    Jeremy

  • How do I add multiple email addresses i have received (900) to my address book instead of doing it one by one?

    how do I add multiple email addresses i have received (+ -900) to my address book instead of having to do it one by one?

    Grab them all and drag them to the Address Book.
    Roger

  • I can no longer attach files to my outgoing Hotmail emails.  I only receive a message that an  error has occurred. Help appreciated.

    I can no longer attach files to my outgoing Hotmail emails.  I only receive a message where I would expect the Upload to appear that an  error has occurred.
    I am using a MacBook Pro with Retina, 2 Ghz Intel Core i7, OS X 10.9.4
    I have no difficulty attaching files to the outgoing Hotmails on the same account using my iPhone.
    Help appreciated.

    Thanks for this - not an immediate solution I fear but will keep unplugging stuff and restarting stuff.
    To try and be clearer about the problem - I have in the last managed to send attachments successfully.  Now  I can send and receive plain email messages but get the error message when I try to attach an existing file to an email - not just a particular file but it would appear all files are being treated in the same way. 
    An experiment to send a mail to which an attachment has failed to upload got the following message alongside the SEND button
    Files with errors will be removed from the email and not sent.
    - but the mail alone was sent and received successfully.  Thanks for any pointers you can give me. 

  • My Mac is not receiving emails, but my iPhone receives emails. How can I fix this?

    I have a MacBook Pro Retina with OS X Yosemite 10.10.2. I recently tried to send a large file through the iCloud email drop. The email stayed in my outbox for a day and made my email app extremely slow. The email never sent, so I deleted the email from my outbox and restarted the program. Now, my email is no longer receiving any emails. The same email account on my iPhone receives emails, but my Mac email program will not receive emails. I've restarted the program and the Mac, but nothing has resolved the problem. Any suggestions???

    Mail (Yosemite): If you can’t receive messages

  • After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    My gmail, which is correctly configured for Mail with gmail SMTP and Google IMAP, works for awhile on Mail, which I leave open while working on other applications. But several times a day I get msg from Google: "We recently blocked a sign-in attempt to your Google Account" . . . and requiring me to verify my account details, re-enter passwords, confirm security settings (or change them from "disable" to "enable less secure methods" and so on). In Mail I also have tried "taking all accounts online", and re-entering my gmail password inside Mail account settings. These steps successfully re-set comms between gmail and Mail ... for awhile, then it happens again. Enough occurrences over a work day that I just quit Mail and revert to accessing gmail directly. Apple Care advisor and an Apple knowledge base article say that Apple can't deal with this, as gmail is third-party app, and they refer me to gmail, and so far I've found nothing helpful there.
    From today I also have several instances of a window saying "Mail has unexpectedly closed" and asking me to Re-open it.
    I also use Yahoo mail, which stops working with Mac Mail at the same time as gmail, but I do not receive notices to re-verify from Yahoo.
    I recently upgraded from Mavericks to Yosemite. The Mail problem happened occasionally with Mavericks but is far more frequent with Yosemite.

  • I cannot send or forward email but I do receive mail OK. All of the same settings work on my wife's IPhone and our Ipad. All are running on IOS 5.0.1. I get a message of your email has been put in your outbox because the receipent "%@" does not allow rela

    I cannot send or forward email but I do receive mail OK. All of the same settings work on my wife's IPhone and our Ipad. All are running on IOS 5.0.1. I get a message of your email has been put in your outbox because the receipent "%@" does not allow relaying.

    Try deleting the mail account and setting it back up again.

  • How do I set up a POP account that links to my business email account for both receiving and sending

    How do I set up a POP account that links my icloud email to my business email account for both receiving and sending?

    Can you post your Troubleshooting Information?
    Help (Alt-H) - Troubleshooting Information

  • Moved to a new house and now i can't send emails but i can receive them

    I just moved to a new house and now i can not send emails but i can receive them...

    New houses can do that. 
    We need more info - what email service is this issue about.  Do you use several (gmail, yahoo, icloud,...) and is this issue the same for all?  If you also use a computer or other device, is this issue common to them all?

  • Sharing photos by email - Emails are not being received

    My photos which I have shared by email are not being received, even though I have a confirmation that they have been sent (one photo has been sent).
    I am using a @me.com email address and I have tried to send a photo to myself and this has still not been come through.

    Do you have iPhoto setup to email the photos itself or use Mail to email the photos?
    Happy Holidays

  • When I forward or reply to the email from Mail, the receiver gets it as multiple attachments with no content in the mail., When I forward or reply to the email from Mail, the receiver gets it as multiple attachments with no content in the mail.

    When I forward or reply to the email from Mail, the receiver gets it as multiple attachments with no content in the mail., When I forward or reply to the email from Mail, the receiver gets it as multiple attachments with no content in the mail.

    That's probably because the message is in HTML format. Send the reply as plain text.

Maybe you are looking for

  • Can no longer read DVDs or CDs--DESPERATE

    I am running OSX 10.7.3. Yesterday all my thousands of fonts completely disappeared from Suitcase Fusion 2. I was told by Extensis that I could not get them back, but that I needed to upgrade to Fusion 3 which would be compatible with Lion. I did tha

  • Acrobat 8 Standard download available?

    I purchased a download for Acrobat 8 Standard a while back,and just lost it in a computer crash. I see that I could download Acrobat 8 Professional. Is there any way of getting my Acrobat 8 Standard download back?

  • Selected Lov Value as Parameter to Concurrent Program in oaf

    Hi, iam new to OAF ,Can any one please help me how to pass selected lov value as a parameter to the Concurrent program in oaf. i created one lov in oaf page after selecting value in lov i want that value to be passed as parameter to concurrent progra

  • Adobe Captivate 4 errors out on recording

    Hi, I am a long time user of Captivate and have been using Captivate 4 since it came out.  I am running a Dell Precision Workstation M6400 with 3GB RAM, Windows XP Pro with SP 3, Intel 2.6 gHz processor.  I also have the latest patches for Windows an

  • Architectural Issues with AIA Asynchronous MEP

    Hi, We are implementing an AIA service which should follow an Asynchronous (request/delayed-response) MEP. I need some advice from people who have implemented this pattern. The rough requirements are that we have two ABCS Requesters for two different