Mail subject header

Hi Guys,
Status change of a service message will trigger a mail notification, and the mail received is with subject "Reminder mail". Want to check with you guys on how to change the subject to a customize subject?
For eg: Status->In Process : Ticket 9999009999
Pls comment.
Thanks in advance.

Hi FSCHU,
I will take a look at your code. Thanks!
I think, i found another way. I´ve got a smartform "Z_CRM_SLFN_ORDER_SERVICE_02".
I changed the description of the form in the form attributes in the global settings folder.
The old description was: Support message
To get the number of the support message into the description field, I thought I could use the Object ID (&ORDERADM_H-OBJECT_ID&).
So that the description field looks like this: Support message: &ORDERADM_H-OBJECT_ID&
With this description I received a mail with the subject "Support message:9999002779ORDERADM_H-OBJECT_ID&"
So I changed the description in form attributes into: Support message : &
With this description I received a mail with the subject "Support message: 9999002779

Similar Messages

  • Multiple drag emails from Mail to a finder window and for it to name the files as the subject heading

    Hi
    I have been using Mac's now for about 10 years and this is my first problem.
    I have recently moved into an office that use PC's with a Windows server.
    I have set up the network to transfer files and view the windows server and it  works fine.
    I have a problem in that my colleagues on PC need to be able to view my emails which I send and receive using Mail. They therefore need to have logical title names and the date sent and ideally who to or from. I view them and archive them using Mail which is fine for me.
    I understand about the archiving and copying of mailboxes but this gives every email the un-fathomable title name 9944847 etc.
    I can get round the problem by dragging and dropping every email I send and receive individually and it will automatically give it a more logical title of the subject heading however the date is when it was dragged not when sent. This is a pain if I am away or forget to save an email for a day or two and then the date is inconsistent.
    Is there a way to batch copy emails from Mail to a finder window and for it to name the files as the subject heading or to archive the files in a similar way so they retain the detailed information my colleagues require.
    And no I can not get to all change to Mac and I don't really fancy using Outlook, Entourage or Parallels.
    Please help.
    Toby

    Quit Mail. Force quit if necessary.
    Back up all data. That means you know you can restore the Mail database, no matter what happens.
    Triple-click the text on the line below to select it:
    ~/Library/Mail/V2/MailData/Envelope Index
    Copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens (command-V), then press return.
    A Finder window will open with a file selected. Move the selected file to the Desktop, leaving the window open. Other files in the folder may have names that begin with "Envelope Index". Move those files, if any, to the Trash. Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is corrupt and that Mail has to quit. Click OK.
    Test. If Mail now works as expected, you can delete the file you moved to the Desktop. If you get a warning that the file is in use when you try to empty the Trash, log out and log back in.

  • Junk Mail: Now how do I deal with this one, 'No Subject' heading...

    Hello everyone.
    Well, they (Junk Mail) really keep "re-inventing" themselves...
    A while back I kept getting blank junk emails with no sender... so it was easy, someone from this Discussion thought me to create a rule whereby the 'Sender' field is lack of an "@", and that filters it to Junk.
    Now, I am getting junk mail with no subject heading...
    How can I filter this off directly as junk??
    Thanks and cheers

    Hi thanks for the reply. I have used SpamSieve before together with Entourage before I switched (back) to Mail; Then because Entourage has a "weaker ability" to do a better job in filtering Junk than Mail, which supposed to have a on-going learning experience in handling junk.
    I thought if properly "train" or configure, Mail will handle this on its own without "any external help", I hope this is still so, 'cause at this point I would not want to engage in another external spam filter.
    Thanks.

  • Need to add senders email address into the subject header of my PHP form (somehow)

    Hello one and all,
    I have a PHP form which is working fine and sends our support team an email with the subject header 'Support'.
    I have been asked to fix this form to include the senders email address into the Subject header so that the support team can filter them easier and reply quicker.
    Any help would be very much appreciated indeed. The form code is below, let me know if you need the whole page.
    Thanks in advance,
    Bradley
    My current form PHP part looks like this: (and the HTML part is below in blue)
    <?php
        if($_GET["action"] == "email")
            $msg = "The following person need support:\n\n";
            $msg = $msg . "First Name: " . $_POST["FirstName"] . " " . $_POST["LastName"] . "\n";
            $msg = $msg . "Tel: " . $_POST["Tel"] . "\n";
            $msg = $msg . "Email: " . $_POST["FROM"] . "\n";
            $msg = $msg . "Support: " . $_POST["Support"] . "\n";
            $msg = $msg . "Model: " . $_POST["Model"] . "\n";
            $msg = $msg . "Comments: " . $_POST["Comments"] . "\n";
            $to ="[email protected]";
            $subject = "Support";
            $from = "From: " . $_POST["FROM"];
            mail($to, $subject, $msg, $emailFrom, $from);
            header("Location:support2.php");
    ?>
    and the HTML part of the fom is like this:
    <form id="form1" name="form1" method="post" action="support.php?action=email">
      <table width="700" border="0" cellspacing="10" cellpadding="10">
        <tr>
          <td valign="middle" class="formtext">*First name:</td>
          <td width="455" valign="middle"><label>
            <input name="FirstName" type="text" class="form-textbox" id="FirstName" />
          </label></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Last name:</td>
          <td valign="middle"><input name="LastName" type="text" class="form-textbox" id="LastName" /></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Email:</td>
          <td valign="middle"><input name="FROM" type="text" class="form-textbox" id="FROM" /></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Telephone:</td>
          <td valign="middle"><input name="Tel" type="text" class="form-textbox" id="Tel" /></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext"> </td>
          <td valign="middle"> </td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Support required:</td>
          <td valign="middle"><label>
            <select name="Support" class="form-dropdown" id="Support">
              <option selected="selected">Please select...</option>
              <option value="Connection Issues">Connection Issues</option>
              <option value="Technical Issues">Technical Issues</option>
              <option value="Furniture Faults">Furniture Faults</option>
              <option value="Other">Other</option>
            </select>
          </label></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">Chair model:</td>
          <td valign="middle"><input name="Model" type="text" class="form-textbox" id="Model" /></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Please describe your issue:</td>
          <td valign="middle"><textarea name="Comments" rows="5" class="form-textarea" id="Comments"></textarea></td>
        </tr>
        <tr>
          <td valign="middle" class="maintext"> </td>
          <td valign="middle" class="maintext"></td>
        </tr>
        <tr>
          <td valign="middle"> </td>
          <td valign="middle"><label>
            <input name="Submit" type="submit" class="form-submit-button" value="Submit" />
          </label></td>
        </tr>
      </table>
      </form>

    MurraySummers you sir, are an absolute legend! This worked perfect straight off the bat!
    I really apreciate your lightning fast reply!
    Thanks again.
    Bradley

  • SO_NEW_DOCUMENT_ATT_SEND_API1 issue related to length of MAIL SUBJECT

    Hello Experts,
    when i am using 'SO_NEW_DOCUMENT_ATT_SEND_API1' FM to send an external mail in HTML format, i want the lengh of MAIL SUBJECT almost 70 character. But it is allowing me to display only
    50 characters ( lenght of field OBJ_DESCR ).Can i accomodate heading more than 70 characters.
    Regards,
    Rushikesh

    try
    Check this SAP note
    Note 698087 - User-defined mail title without length restriction
    CL_BCS->SET_MESSAGE_SUBJECT
    Bhanu

  • Changing Subject: Header for bounced messages

    Our current version:
    imsimta version
    Sun Java(tm) System Messaging Server 7.0-3.01 64bit (built Dec 9 2008)
    libimta.so 7.0-3.01 64bit (built 09:24:13, Dec 9 2008)
    Using /opt/sun/comms/messaging64/config/imta.cnf
    SunOS mmp-nhm1.its.utas.edu.au 5.10 Generic_138889-06 i86pc i386 i86pc
    I am trying to alter the Subject: header for bounced messages, especially mail bounced from our gateway servers for "User unknown" errors. The current Subject: header for such bounces reads:
    Delivery Notification: Delivery has failed
    I would like this altered to be, say:
    Delivery Notification: Remote SMTP server has rejected address
    or something similar. Now, I've read the documentation on managing status notification messages, but there seems to be no correlation between the files in ..../config/locale/C and the text being placed in deliery failure messages. For instance, the return_failed.txt file contains the text:'
    Your message cannot be delivered to the following recipients:
    %R
    Yet I can't see this anywhere in the bounced message. Nor any other text from any of these files.
    There also seems to be a lack of information on header manipulation in these files.
    Thanks for any help,
    Dave.

    brett_ac wrote:
    There also seems to be a lack of information on header manipulation in these files.The manipulation of the notification messages is documented here:
    http://docs.sun.com/app/docs/doc/819-4428/bgakm?a=view
    Unfortunately the use of the Subject override "$T" flag isn't documented for the NOTIFICATION_LANGUAGE mapping table (although it is for the DISPOSITION_LANGUAGE mapping table -- http://docs.sun.com/app/docs/doc/819-4428/bgalb?a=view).
    To replace the header for the "Delivery Notification: Delivery has failed" bounce messages I added the following to the top of the NOTIFICATION_LANGUAGE mapping table in mappings.locale:
    NOTIFICATION_LANGUAGE
    ! Change the subject for "Delivery Notification: Delivery has failed" messages
      failed|*|en*|*|*  $T$IIMTA_TABLE:locale/C/|Delivery$ Notification:$ Remote$ SMTP$ server$ has$ rejected$ address
      failed|*||*|*     $T$IIMTA_TABLE:locale/C/|Delivery$ Notification:$ Remote$ SMTP$ server$ has$ rejected$ addressSee how that goes (make sure to run ./imsimta cnbuild;./imsimta restart before testing).
    Regards,
    Shane.

  • Leopard 10.5.6 Mail subject column mysteriously moved

    Hi, I have been running Mail somewhat successfully since I switched to my new Macbook last August. I am running 10.5.6.
    Yet, two days ago, I opened Mail to find the columns moved around in each mailbox. I tried to resort them in View/column menu, and I was able to uncheck every column header and redo the columns in the order that I checked off each selected header, except for the SUBJECT header, which is not in the menu at all. So I can't move it where I want to now, like so: FROM | SUBJECT | etc. The 'subject' column insists on being first, like so: SUBJECT | FROM etc. What is going on here, anybody know? It's not a big deal really, except I would rather have it my way!
    (Only thing that happened recently was that when I scanned different folders on my hard drive with ClamXav, it told me I had two infected files in my /Library/Caches/Chache folder. I went in there and moved the two files to the trash. They are still in there. They referred to . . .Phishing . . .and were dated 2006, so they seem to have something to do with mail.)
    Thanks for help anybody!

    thank you, I am embarrassed as I was sure I tried that! I see that dragging the columns does work. Sorry to bother. . . with Macs the solution to a problem is usually the simplest, most obvious thing!

  • "Subject" Heading has dissappeared

    The "Subject" heading in the message viewer has disappeared from Mail 3.6 on the computer of someone here at work.
    I can't find any way of bringing it back.
    Control/click on the headings does not show "Subject" as an option.

    Could it be that the window is too narrow and Subject has disappeared on the right? Try widening the window, and removing or reducing the width of some of the other columns.
    Subject doesn't appear in the control-click list as it is always supposed to be there.
    AK

  • How to enlarge the text in the "email subject/header plane"

    in Thunderbird email, the subject of the email and the email message are in to different planes. No problem enlarging the "message text, words" in the "body" of the email. How to enlarge the "text, font or words" of the "subject" in the subject/header plane? Don't want to open email if I'm not sure of it, and can't be sure of opening emails if I can't SEE the subject of the email. Surely I'm not the only one with this problem.

    Thanks! Works great!

  • Mail Attachment with attachment name = mail subject name

    Hi,
    I am using the mail adapter and today I am using hard codes attachment names using the MessageTransformBean. I have read the blog /people/michal.krawczyk2/blog/2006/02/23/xi-dynamic-name-in-the-mail-attachment--pseudo-variable-substitution about dynamic filenames but how do I get the eMail subject as a viriable to create the attachment?
    Thanks
    Juergen

    Juergen my weblog was the simplest suggestion to your issue - you can put the mail subject anywhere in
    message get it (and remove) in the adapter module
    you can also try to get the
    Adapter-Specific Message Attributes from the adapter module 
    http://help.sap.com/saphelp_nw04/helpdata/en/43/09b16006526e72e10000000a422035/content.htm
    but I'm not sure it the second solution works with adapter modules - but you can do an easy check
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions">XI FAQ - Frequently Asked Questions</a>

  • Emails won't open on Mac but will on laptop and iPhone. On Mac can see the subject heading but the rest is blank in both preview pane and if I try to open the emai. Can anyone help me?

    emails won't open on Mac but will on laptop and iPhone. On Mac can see the subject heading but the rest is blank in both preview pane and if I try to open the emai. Can anyone help me?

    Back up all data. Rebuild the mailbox.

  • Purchase order by e-mail: changing the e-mail subject

    Hello all,
    We are sending are purchase orders to the vendors by e-mail.
    I would like to know how can I change the e-mail subject to a subject of my choice (for instance the PO number, etc.).
    Thanks for your help,
    Sivan

    Hi,
    You can  change the e-mail subject to a subject of your choice by following way.
    If you want to send a purchase order as (external) mail, for example, to a
    vendor, you have to maintain the mail title in the condition record for the
    output type (for example in Transaction MN05) on the 'Communication method' tab
    page. Enter the mail title in the 'Text for cover page' field. You cannot
    maintain an additional mail text.
    Hope this will help u,
    Deepak

  • Alert management with custom mail subject

    Hello,
    I defined a business process, with a control step that throws an alert with a specific message "Error in &MessageTypeFound& " ( &MessageTypeFound& being a container element filled in in a previous step ).
    When I look at the e-mail that the alert manager sent, I can see the alert, with the variable properly filled in, so the result in the mail-body is: "Error in WMMBXY".
    Now, as a mail subject, I want the same message. In the Alert Category Definitions, I need to fill in the title and this will be used as mail subject.
    To be able to use variables in this title, I need to define container elements in the alert category definition. How can I pass the Business Process variable ( &MessageTypeFound& ) to this container for the alert definition ? (So I can use this container element for my dynamic variable in the subject of the alert mail)
    Any ideas are welcome !
    Thanks

    Hi Frederik,
    Unfortunately the functionality you want is simply not available ... or well it is but its not implemented very good by SAP.
    The workflow step that generates an alert does has a container element 'SHORTTEXT' which can hold placeholders and which is translated into the title of the alert message/mail.
    However, the field is defaulted with the text 'Process &_WORKITEM.WORKITEMID&' when being executed via BPM ...
    I tried to overwrite it by setting my own 'SHORTTEXT'container element within the BPM but that does not work ...
    Regards,
    Steven
    ( Tried everything on SP14 ... maybe something changed in SP15 ... )

  • Mail subject modification for smart-form SMIV

    Hi Experts,
    We have implemented ServiceDesk in Solution Manager 7.1 SPS 08 & are using automatic notifications to be generated as alert emails to the customer key users / service desk support team / message processors etc.
    We are using Actions under transaction SPPFCADM, which is using smart-form AI_CRM_IM_SHORT_TEXT_LINK_FORM for the email content.
    We need to modify the notification mail subject as follows - 
    Current Mail Subject – 80000xxxxxx : <Incident Description>
    Required Mail Subject – 80000xxxxxx : <Incident Description> : <Incident Status>
    Can you please suggest, how this can be achieved? What modifications are needed in smart form for the same?
    Best Regards,
    Tanmeya

    Hi Tanmeya,
    Go through the following Links, here u can find example with step
    by step.
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Check these step-by-step links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    Check these links also.
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    https://scn.sap.com/thread/499311

  • Mail subject storage table

    Hi,
        In one program sending mail.When I run background job ,job will created.
        In another report I am displaying all background jobs in perticular date. Now I want that mail subject has to display correspong to perticular job.
       Please tell me any mail title storage table or FM.I checked SOOD,SOFD,SOFIND. No use.
    Thanks,
    Suma.

    Hi Suma,
    I dont think what you are doing is correct. There is no direct link between SOOD and TBTCP. So you cannot fetch the records with the way you are doing now. One possible way could be to find the program name which triggers the email and link it with the job name using the program name. Am still trying to figure how to link the email triggered with that of the program name. Lets wait and see if anyone else can suggest a better and alternative approach for this.
    Vikranth

Maybe you are looking for