EREC: Change the subject of rejection e-mail

Hi everyone,
I'd like to change the rejection e-mail's Subject, but I can't find the customizing, or the relevant part of the code, where the subject is created.
I checked the workflow log (transaction swell) and I think I found the part when the email is created there are two task:
There is to Activity "Create activity" and "Send document"
The first one is using the
ERC_ACTIV - CREATEACTFROMDATA method to create the activity
ERC_ACTIV - PROCESSDOCUMENT  is to send the document
It is using the cl_hrrcf_act_abstract_corr_rec:
* Document will be sent by the channel EMAIL.  
       CALL METHOD LO_ACT_CORR->PROCESS_DOCUMENT
         EXPORTING                              
           CHANNEL  = 'E_MAIL'                  
         IMPORTING                              
*    DOCUMENT =                                
            RETURN   = LT_RETURN                
The problem is that I debugged several times, but can't find the place, where the subject of the e-mail is created.
Do you have any idea, where can I change the subject of the rejection e-mail?
Thanks & Bye
N.

Hello,
The standard system uses the description of the smartform as the subject of the e-mail so you could copy the smartform and change the description to suit your requirement. If you wish to put your own logic for getting the subject at runtime I think it is done in class CL_HRRCF_CS_DOC_CAT_SF_SUPER. In there is method set_subject I think. You will then maybe copy this and make your own class with the required methods and use them while sending a smartform. Hope this helps.
Regards

Similar Messages

  • Mail changes itselve the subject of my inbox mails

    I do not know what, but the Mail changes the subject of my inbox some mail and notes.
    Is very random, so change the subject of any mail or not receive, and also during the day change the same mail several times... It happens in MobileMe, gmail, etc...
    It works like a virus, but maybe is my fault.
    The good thing is that nothing is changed in the cloud.
    I do not if anybody is going to answer, I am trying to find info since 4 of July 20011 but I have not find anything yet.
    Thank you so much

    This sounds like it may be an indexing problem.  Are these two account being accessed as IMAP?
    Have you ever forced a reindexing, and if so, did you remove the IMAP account folders prior to doing so?
    Ernie

  • Change the subject on a received e mail

    is it possible to change the subject of a received e mail in order to file it ?

    AFAIK, not with Apple's Mail app. That's doable with Eudora.

  • E-recruiting: Change of the sender in reject  e-mail for candidate

    Hello!!
    In e-recruiting 6.0 we needed modify the direction of the sender in reject  e-mail for candidate (activity u201Cnotification rejectu201D).
    At the moment, when a notification reject is sent, it appears the personal electronic direction of the recruiter who executes the activity (notification reject). The personal electronic direction (of recruiter) is registered in infotipo 105 subtype 0010.
    It is required that the sender direction is a generic direction (for example: work_with_us@example).
    ¿How I can realise this change?
    Thanks,
    Alicia

    Hi,
    in addition to the two solutions already mentioned I'd like to throw in the following two options:
    Instead of linking a workflow to every activity creation you could build an easy background job which runs once in a while sending the planned simple correspondences and invitations. The result would be the same as the workflow solution the sender is the user under which the job s planned.
    More flexible as not hard build in and development free would be a solution using the open correspondences function. You create a dummy user with the work_with_us@example e-mail using report RCF_CREATE_USER. This user is used to send all open correspondences and invitations manually. Of course this is more processing steps for the recruiters but if you need flexibility this is the price to pay.
    Kind Regards
    Roman

  • How do I change the subject of an inbox and outbox in order to organize them better

    I would like to change the Subject of received and sent mails in Thunderbird. I used to be able to do this with Eudora and it helped me to organize them better especially when the subject and content didn't match!

    They are designed for Thunderbird not Firefox.
    Current version of Thunderbird is 31.5.0 and they work with that version.
    Are you using a Thunderbird beta version?

  • How do I change the subject line on incoming email

    On my old PC I could easily start typing in the subject line of a received email.  This would allow me to search for a name later on when looking for an invoice.  I dont know how to change the subject line of an incoming email to my imac?

    This site tells you how to edit the subject of a message.  I just tested using OS X 10.8.5 and it worked, without altering the time & date stamp, or the original sender info. 
    http://email.about.com/od/macosxmailtips/qt/et_edit_receive.htm
    Steps copied below:
    Drag and drop the desired message out of Mac OS X Mail onto the Desktop.
    Ctrl-click on the message copy on the Desktop.
    Select Open With | TextEdit from the menu.
    Make the desired changes to the message source.To change a message's subject, look for "Subject:" at the beginning of a line starting from the top.  (hint, you can use 'Command-F' to bring up a search window to help you find the "Subject").
    Close TextEdit saving the document.
    Ctrl-click on the message on the Desktop again.
    Select Open With | Mail from the menu this time.
    Now select Message | Copy To followed by the message's original folder from the menu in Mac OS X Mail.
    Close the message window.
    Delete the message copy from your Desktop.
    Optionally, delete the original message in Mac OS X Mail.  (when I tested this, the original message was no longer there.  Not sure what happened to it, but the changes worked without editing the time, date, or original sender information.)

  • How to change the spelling correction language in Mail

    Hey!
    Often I have to write emails in different languages and I'm looking for a solution to change the spelling language by a click. My plan was to record the procedure of changing the language and then to add for every language one button to the mail tool bar. First I tried to record an AppleScript in Mail. Didn't work at all (actually the only app I found which records scripts is Finder). Then I recorded a similar task in Finder which works fine and tried to adopt it to Mail. It didn't work out. Has someone an idea how I can solve that problem.
    My simple training script what I tried to adopt for Mail (i just tried to change something in the Mail preferences, not the language):
    tell application "Finder" <--- replaced all "Finder" with "Mail"
    activate
    select Finder window 1
    open window of Finder preferences
    set folders open in new windows of Finder preferences to true
    close window of Finder preferences
    end tell
    Thanks
    Bastian

    Hi
    It's not that easy! Apart from the fact that Mail doesn't work the same way as Finder, it also doesn't have its own spell checker: it uses the system-wide AppleSpell service.
    The pane you see when you manually change the preferred spelling language in Mail (or TextEdit, or Safari) doesn't belong to Mail at all, and isn't directly accessible by AppleScript because AppleSpell is an invisible and unscriptable process.
    See this closed Apple Discussions thread for a brief indication of how you can change the preferred language using a shell script.
    And see this macoshints thread for an indication of the complexity of the issue.
    You need to know the "code" for each language used in the preferences file: "en_GB" for British English, "fr" for French etc etc. You would then need to wrap each shell script in an AppleScript "do shell script" command like this:
    do shell script "defaults write 'Apple Global Domain' 'NSPreferredSpellServerLanguage' \"fr\""
    to change the language to French.
    Unfortunately, I think you would also need to quit Mail and relaunch it before the change will take effect.
    HTH
    H

  • How can i change the font and color in mail 5?

    how can i change the font and color in mail 5?

    Mail -> Preferences -> Fonts & Colors
    If you want to change the font and color in a message you're composing, you can right-click on the message and use the Font/Show Fonts command to bring up the Font panel (among other ways).
    Regards.

  • I like the mail feature with one exception; I cannot figure out how to change the font size of incoming mail permanently.  And, when answering an email I have to highlight the first few words and zoom it so I can see what I am writing.  what am I missing?

    I like the mail feature with one exception; I cannot figure out how to change the font size of incoming mail permanently.  And, when answering an email I have to highlight the first few words and zoom it so I can see what I am writing.  what am I missing?

    You can type the email using what you set in preferences and then highlight the text and use command - minus sign (or command - + for larger) to reduce the size of the text.
    You can also type command - T and a window will appear allowing you to select fonts/sizes/color/ background highlight.
    The above works in Notes also. I haven't tried to do this in any other Apple application.
    For incoming emails, you can use the above to reduce font size, but I don't know of a way to permanently set the incoming font size to a default.

  • I set up an autoreply but i cannot work out how to change the subject line to the one I want

    I set up an automatic reply but the subject line come up as re: and what the other person wrote. I want to change the subject line to a set one to all emails. How can I do that?

    What email program are we referring to?

  • Can I change the time format of incoming mails, in Mail? Now I have AM/PM, but I live in Denmark where we don't use that format. We have a 24-hour clock format i.e. 14:52 instead of 2:52 PM.

    Can I change the time format of incoming mails, in Mail? Now I have AM/PM, but I live in Denmark where we don't use that format. We have a 24-hour clock format i.e. 14:52 instead of 2:52 PM.

    Is the time format of your Mac in 24 hour?

  • Can we change the subject area of an existing report

    Hi,
    Is it possible to change the subject area of an existing anlaysis?
    Thanks,
    KK

    @842704 - Yes, you can change. Go to the Advanced Tab of the report, in the Request XML find and replace the name of your old SA name with the new name. Once done hit the Set XML button to apply your changes and save your report. We had done this for few reports and observed that mainly there are two instances found in the XML where the name of SA appears.
    <saw:criteria subjectArea="SAName">
    <saw:filter subjectArea="SAName">
    @Deepak - Had a query regarding changing the name of Subject Area with the option you provided. When we had tried to use that option (which is simpler than what I mentioned above), we observed that it used to work fine. However, in the request XML we found that for saw:criteria tag the value was updated but not for saw:filter (it still used to hold the name of old SA). Although the report worked fine. Any thoughts regarding this behaviour?
    Thanks

  • Billing output by mail changing the subject line

    HI,
    i am sending the billing output by email, but the subject of the email getting changed regularly. my requirement is i have to set standard subject for all billing output by mail.
    Reagrds
    Muthuraman.D

    Go to Tcode - NACE - Choose V3 - Choose 'output types' on the application toolbar
    - select output type - 'double click on mail and texts' at left hand side. See if you can add anything there and checck the mail.

  • How to customize or change the subject of the mail send throu SM36

    HI,
    i m using SM36 to Schedule some of reports and send the output of those reports as an attachement to particular email ids.
    It is working fine people are receive mails with an output of the report as an attachement , but the subject is coming like this
    "Job PRODUCTION PLANING REPORT, Step 1"  where  "PRODUCTION PLANING REPORT" is the job name . What i want is the Subject should be only my Job Name "PRODUCTION PLANING REPORT"   the Prefix Iob and the Sufix Step 1, should not appear in the subject. How can i achive this ?
    Regards
    Edited by: nau on Jan 20, 2010 3:31 PM

    In SM36, under the 'General Data' area, the answer is right there. Click on the Spool list recepient button and place the e-mail recepient in the box. It looks like only one entry can be entered there so you may want to have a distribution group setup accordingly for multiple recepients
    My view is as per the line i can see only .html attachment  only you can send...
    See Mr NA. take intitiative and tell the clients....Clearly that if we schedule thtrough SM36 then we have limited funcitonalities like you can't attach the excel version's specially and Subject issue what you are discussing...
    So as of now my suggestion is Using the FM (if it is version 6.0 Ecc prefer using classes....) You can write extra funcitionality to report to send via Email
    Sas

  • Changing the Subject and Text of received mails?

    Before filing received important messages into folders, I would like to add the Sender's name into the Subject. Or I may want to add a comment to the received Text.
    Is it possible in Mail? (like in Entourage?)
    iMac G%   Mac OS X (10.4.3)  

    Forward the mail to yourself, and before sending alter the subject or add the comment. The problem with this is of course the waste of bandwidth, and the Sender is no longer your original correspondent but you.
    If you use "redirect" instead of "forward", the original sender and Date are preserved (and looking at the message headers will still make it clear that the message might have been altered).
    Andreas

Maybe you are looking for

  • Problems obtaining .rxe with labview 8.5 professional

    Hello everyone! I am starting with labview for nxt, and I have some problems during the compilation.  I have installed all what it is said in instructions for labview 8.5 professional, then I have  done the "mass compiled" but I have obtanied lots of

  • Records query

    i have a data date---------------------------------------------------------id----------------------------amount 7/23/2010 9:51:28 AM------------------------------2------------------------------ 0 7/23/2010 9:51:28 AM------------------------------1---

  • Advice needed on DB curriculum - Thanks

    Hi guys and gals! I'm a professor updating curriculum at the University of Louisiana @ Lafayette and needed advice on what to teach IS undergrads in a one or two semester DB sequence. I welcome all opinions, but am most interested in actual practitio

  • Copy workflow from 5.0 to 6.0

    Hi, My client is having two different systems ECC 5.0 and 6.0. Now workflow needs to be copied from 5.0 to 6.0. Please suggest what is the best way to do this task. I have tried with export and import to XML. It didn't work. I am missing many compone

  • My i pad as well as my wives are loading very slowly

    jusy of late my i pad 2 as well as my wifes is running and loading very slowly , it is not the internet connection as i have tried on different internet connections