Mail Notification Subject

Hi all,
We want to change the Notification of completition  subject  in workflow  task .This comes as Notif of Completition : Workitem text .
                  Workitem text is something we write , but notif. of completition comes by default in every notification mail .
                  How can we change this subject text ?
Thanks,
Sahiba

No, you can't change the subject as standard but you can change the body of the message from Trx PFTC under Decription tab.
Regards, IA

Similar Messages

  • Issues in Swedish mail notification subject line

    Hi team,
    I have created one concurrent program which run on daily basis to send notification about employee contract expiration to their manager before 30 days.
    I should send mail into swedish language. I am facing one issue into this.
    I have compiled program correctly with Swedish as machine langage and i am able to see appropriate mail format in my package body.
    But i receive mail notification, the mail body is in swedish language but mail subject removed the swedish characters.
    Please check below details:
    Apps : 12.1.3
    Database : 11g
    Responsiblity Name: HR Professional
    Swedish Subject line in Code : HRMS System Varning: Anställningskontrakt löper ut om 28 dagar
    Swedish Subject line in mail notification : HRMS System Varning: Anstallningskontrakt loper ut om 28 dagar
    Sweidish Mail body in code : Observera att gällande anställningskontrakt för löper ut den
    Swedish Subject in mail notification : Observera att gällande anställningskontrakt för löper ut den
    I tried following approch:
    1. I passed direct subject line to P_Subject parameter.
    2. I assigned subject line to l_subject and then passed value l_subject to P_subject .
    in both cases, i am getting wrong output. Kindly check and let me know if anything is required from my side.
    Thanks in advance.
    Regards,
    Basaw

    Hi Friend,
    Thanks for quick reply.
    It is not showing any garbage value or squares anything.
    It is just removing swedish characters. Please check below:
    Sweidish Mail body in code : HRMS System Varning: Anställningskontrakt löper ut om 28 dagar
    Swedish Subject in mail notification : HRMS System Varning: Anstallningskontrakt loper ut om 28 dagar
    If you see closely, in word Anställningskontrak and löpe, it is removied a and o which are special values in swedish characters.

  • RE: Mail notification on changing the status of the spport desk messages

    Hi,
    I am facing problem with the automatic mail notification in service desk configuration.
    When i create a support desk message in the satellite system, the message appears in crn_dno_monitor in solution manager. When i change the status of the message from new to in process, i get a mail only with the subject line "MESSAGE IN PROCESS STATUS' and the pdf attachement (sapscript) is missing. I have checked all the configurations in SPPFCADM but i am not able to figure out the problem. Please help me out of this problem.
    Regards,
    Sowmya

    Hi,
    there is a SAP Note with a tutor for send_mail via action. See Note 691303 and the attached .zip-file.
    It shows step by step how to set it up and is a very good tutorial. You'll need additional (free) software to let it run.
    Regards,
    Dirk
    @Sowmya: what content does the mail have? None? There is a possibility in SolMan where you can choose whether you want the content as a .PDF-Attachment (which, in my eyes, isn't that sparkling) or as regular mail text.
    It is located in TA SCOT. Double klick on "SMTP", then klick on "Internet" and there choose in the Drop Down Menu of Sapscript. When you have trouble, look at my [screenshot|http://home.arcor.de/dirk.malas/solman/Mail_TXT_PDF.JPG].

  • E-mail Notification of Work Status Change

    Hi Experts, I configured and triggered a BPC e-mail notification for Work Status change. However, there are few areas I would like to improve on. Please help. A sample notification message is attached below. Areas highlighted in red are the areas I would like to improve on.
    Subject: You have received an automated message from %PRODUCT2%
    The work status code of Entity has been changed by RCHU:
    This is to inform you that RCHU has updated the work status to Submitted on 01/09/2012 16:21 UTC.
    Category:C_Actual
    Entity:E_1211
    Time:2007.FEB
    New Status:Submitted
    Date/Time:01/09/2012 16:21 UTC
    Here are my questions.
    1. Subject line - Where do I configure the variable %PRODUCT2% ?
    2. Entity - How can I display the description of the Entity?
    3. Date/Time - How can I display local time instead of UTC?
    Thank you in advance for your help. We are running the Microsoft version of BPC.
    Edited by: Raymond Chu on Jan 12, 2012 8:17 AM
    Edited by: Raymond Chu on Jan 12, 2012 8:18 AM

    The periodic scripts or launchd would have to send the email. I don't think you have to do anything to send mail, just receive it, you can check that from the command line:
    mail [email protected]
    When you finish your message put a period on a blank line and hit return, that indiecates the end of the message.
    The one butt biter is that Apple puts a .forward file in all home directories that says to direct all mail to /dev/null , essentially it sends it to a black hole. You'll need to edit this file and put in your email address (if you want the email to go there) or the mails (should) wait for the user to run the mail command to read their messages.
    The mail command has a fairly extensive man page:
    man mail
    Roger

  • 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

  • No e-mail notifications

    Hi My settings in CP are as follows
    Watch the thread I create -> yes
    Watch the threads I reply -> yes
    e-mail notification -> Immediate
    but I have never received any e-mial notifications
    Thanks In Advance.

    Hi,
    I've just reset my password, and change it again in my account profile.
    So I think my e-mail address IS valid and working fine, but still I dont receive notifications
    e-mail sample:
    Date:     Fri, 26 Aug 2005 01:04:24 -0700
    From:     "Oracle Account" <[email protected]> Add to Address BookA
    To:     [email protected]
    Subject:     password
    Thank you for requesting your account information.
    Please use the following Password to access the following services:
    Oracle.com... http://www.oracle.com
    Oracle Technology Network... http://technet.oracle.com
    Thanks in advance
    Tony G.

  • Mail notifications in 10.9.2 open message window not Mail

    With yesterdays 10.9.2 update clicking on Mail notifications now opens new messege window with that email, instead of just highlighting it in main Mail wondow. This is amazingly annoying and nonproductive. Is there a way to switch it back?

    I found an other thread on the same subject:
    https://discussions.apple.com/message/24987456
    No solution for the moment :-(

  • Rule containing "Mark as Read" and "Move to Folder" does not remove New Mail Notification

    I asked this question in another forum here (sorry for not linking, but the forum would not let me because my account is not yet verified):
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-outlook/rule-containing-mark-as-read-and-move-to-folder/061a8009-dd98-4304-81b0-6c4c8a5a6205
    They passed the buck to this forum.  Can anyone help?  Here is my original post:
    I have set up a rule so that emails from a certain sender should be marked as 'read' and routed to a certain folder.  The rule works just fine except for the fact that it does not remove the new mail notification from the taskbar icon
    or the system tray.  The rule reads as follows:
    Apply this rule after the message arrives
    with New Home Sale in the subject
    move it to the _New Home Sales folder
      and mark it read
    Once I open the _New Home Sales folder, all messages are marked as read, as they should be.  When I open any of the emails in this folder, the notification goes away.  It does not even have to be the most recent email or the same folder
    - opening any email from any folder clears the notification, even if the same email was used to clear it before.  Previewing does not remove the notification.  
    I have a similar rule set up for another folder:
    Apply this rule after the message arrives
    with New Home Final Sale in the subject
    move it to the _New Home Final Sales folder
      and mark it as read
    The same thing happens here with the unread notification.
    This is very annoying, as I want to receive these emails but I do not need to know every time one comes in.
    Does anyone have any advice on this?  I have read a few threads about an unread email bug, but I'm hoping I'm just missing a setting somewhere. I find it hard to believe such a bug would persist this long.

    Hi,
    From your description, I would like to verify the Exchange version and Outlook version at first. Since I have a test in my environment using Exchange 2010 with Outlook 2010. I create a same inbox rule, it works and there is no new mail notification from
    the taskbar.
    What's more, I recommend you use Outlook safe mode to determine whether the problem is caused by add-ins.
    If the issue persists, please install the Outlook latest Service Packs and check the result.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Daily e-mail notification

    Hi.
    I was asked from several SDN members if there is any way to get a daily e-mail including all new postings to a forum or at least the subject lines of all new threads. As far as I can see this is not possible at the moment but it would be an nice feature for all users that don't want to get e-mail notifications all day long.
    Best regrads,
    Jan

    Hi, actually this is possible
    While in the forums in the top right there is an option for "Control Panel" this will take you into an area for your "watches" and there you can check "Email update" to have all updates to that thread or forum to be emailed to you.
    To easily select a watch on a thread or forum - when oyu are in you can click the option (along the top) "Watch Forum" or "Watch Thread"

  • IPhone mail notification delay (not iCloud mail, though)

    Hello.
    Probably an old subject. Couldn't resolve the problem though, browsing through the old discussions.
    My mail notification sound is delayed by about one minute from when I receive my mail.
    This happens only on my imap-account, which isn't iCloud - the mail notification comes right on time when I get mail to my me.com account.
    Has anyone resolved this issue? I believe it's an issue with mail providers which don't support push. Mine doesn't.
    Regards,
    Mathias

    Claptrack wrote:
    My mail notification sound is delayed by about one minute from when I receive my mail.
    It takes a bit for the Mail app to launch, downloadt he email process and pass to iOS Notifications.
    I believe it's an issue with mail providers which don't support push. Mine doesn't.
    Since your mail provider does not support Push, it is not an issue with Push.

  • I Have No Voice Mail Notifications In Z10 Hub

    I have seen issues with Voice Mail Notifications in various threads, but I didn't see one having No Voice Mail Notifications In the Z10 Hub at all. Sorry if I missed a thread that applies.
    From what I was told by Blackberry Technical Support, at the bottom of the BB Hub next to "Calls", "Emergency Alerts" and "PIN", should be "Voice Mail" (or something similar). I have none and therefore do not get any notifications when I receive a Voice Message. I thought this was odd, and figured I had some settings incorrect, but that is not the case. It's just not there.
    I am in the USA on Verizon's network with the latest updated OS 10.1.0.2039 that they offered on a STL100-4, Z10.
    Anyone else have this issue?

    My wife had the same issue on her Z10.
    A quick call to customer service at AT&T and they set it up.
    Rebooted her phone, and all was well.
    I'm sure Verizon customer service can do this for you as well.
    Hope this helps.
    Sincerely -

  • IPhone 4s Voice mail notification not working after switching from Verizon to PagePlus.

    iPhone 4s Voice mail notification not working after switching from Verizon to PagePlus.  How can I get the notifications working?

    Contact your carrier - voicemail, and visual voicemail, is a carrier feature.

  • Syncing Mail Notifications Between Mac and iPhone

    Hi
    I been having this problem with the mail notifications not syncing between the Mail.app on my MacBook Pro and iPhone. Let me explain:
    When I get a new email, I hear the sound and see the red notification icon appear on both the MacBook and the iphone. When it comes to checking the new email, here are the two possible scenarios:
    a) If I check the new email on my phone, the red notification icon disappears from BOTH the iphone and the MacBook.
    b) If I check the new email on my MacBook, the red notification disappears from the MacBook but DOESN'T disappears from the iPhone (that is until I open the app). This happens with both cases, when the app is "running" in the background or when it is complety closed.
    I don't know if I am crazy but I am pretty sure that both of the notifications used to disappear before, no matter where I checked the mail.
    I tried deleting and creating the email again on my phone, and it didn't work.
    Here some info that could help find a solution:
    - I'm using icloud email (@me.com)
    MacBook
    -Mountain Lion
    iPhone:
    - iOS 6 (this problem started before the upgrade)
    - Push is on.
    - Fetch (that suppodselly would be used only if push is off) is set to Manually.
    - On the "Advanced" sub-menu inside the Mail settings, Push is also selected.
    Hopefully this can actually be fix and I can prove myself that I was not crazy!!
    Thanks in advance for the help!!

    Anyone find a fix for this problem? I've been waiting for this since notification syncing was announced a couple years ago with iOS 6. I use iCloud for my email and find it very frustrating that when I read an email on my Mac or on iCoud.com that it doesn't automatically dismiss the notifications for those emails on my iOS devices until I open the mail app on each iOS device. Notification syncing works great with other apps. With iMessages, for example, when I read a message on my Mac running Yosemite, the notifications disappear on my iOS devices without opening the messages app (badge app icon, home screen notifications and notification center). Why can't they figure this out with email? I remember at my old job, I had an exchange account that properly synced mail notifications between devices, but it has never worked with my iCloud email. I wonder if I am just missing a particular setting or if Apple just blew it here. Any info would be greatly appreciated.

  • ICloud ical e-mail notifications

    My wife and I both have separate iCloud accounts. Then she subscribed to my calendar, so she can see my schedule. This works in both Lion and iOS properly, and has been working for a few months now, ever since we made the iCloud transition.
    Two days ago, she started getting individual e-mail notifications about every single event I create, change, or delete in my iCloud calendar. The e-mails don't include any unsubscribe info.
    Where is the preference to turn this off?

    So i have question, it is possible to switch to Open directory master and current users will be OK
    I would suggest you ask that question in the open directory group as they will have more practical experience in doing this. You must ensure that your forward and reverse IP address of the serve is set up correctly before doing this.
    And could i use Local user database and LDAP in the same time?
    Yes that us normal operation - there will always be some accounts in the local directory, but you should not put users in there.

  • HT201342 How do I change the default e-mail in ical for e-mail notifications?

    My ical e-mail notifications are set up to my .mac account, but I need to change it to icloud address, as I'm getting errors when it tries to send e-mail notifications to the @mac.com address. But I can't figure out how to change the e-mail address. I've added the icloud.com address in accounts, but it doesn't offer me the choice of that e-mail in the drop-down menu in ical when I choose e-mail notification.

    Try to delete the file mimeTypes.rdf in the Firefox Profile Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    See "Reset Download Actions"
    * http://kb.mozillazine.org/File_types_and_download_actions

Maybe you are looking for

  • Static NAT pass-through; can not get to work

    I am not having any luck getting a static NAT pass-through to work. BM3.8/NW6.5 all patched to the latest patches (no betas). IPFLT is NOT loaded. My internal network on one LAN all have 10.100.xxx.xxx private addresses. Dynamic NAT works great. I ha

  • How to view Retrieved file in DMS Archiving.

    Dear All, My client is specific about DIR Archiving. Now the scenario is DIR has been marked for Deletion and archived and Stored in a repository successfully. After Archiving DIR has been deleted from the Database. Now using SARA Transaction using "

  • Connecting sony camcorder to macbook

    how do i connect my sony handycam HDR-HC5 to my macbook? i purchased a firewire cable, and thought i plugged it in correctly, but nothing is happening. thanks

  • WebRowSet properties for Oracle 10g XML

    //I am writing data into a database //Clob field then useing a WebRowSet writing //it as XML to the clob ResultSet rs = statement.executeQuery(); WebRowSet webRowSet = new WebRowSetImpl(); webRowSet.setCommand(sql); webRowSet.populate(rs); // First a

  • Assign keywords from excel

    Hi there, I was wondering if anyone might have a suggestion for me: All our product images are named with a 9-digit ID number. All the item numbers and product information (name, color, gender, category, view, etc.) are stored in an Excel workbook fo