Trigger mail(sending mail to respective person)when budget is release in PS

Dear Sir,
I want to trigger mail ( sending mail to respective person ) when budget is release in PS.
Please help for following :
Option 1 : User exit
Option 2: Workflow.
Regards
Vinu

Hi Vinod,
You can acheive this using a Workflow. What you need to do is set an user status as Rbud-release budget, and when ever you project is set to this status a workflow will trigger to the concerned aggest assigned to workflow task. Here you can provide a user decision as 1. Approve 2. Reject. When ever workflow triggers, approver can see in his inbox the project budget in Cj30 by clicking object link to cj30 and if he feels it is ok then he can click Approve button this will take him to CJ32 screen where he can release the budget. IF the user feels Budget need to be revised then he will click reject this will send an email to the person responsible to revise the budget and at the same time user status will be reset back to previous user status.
The above  method we have adapted for one of our client. This is done by a workflow consultant.
Thanks
regards
kishore

Similar Messages

  • Why is Apple Mail sending in plain text even when rich text is set as preference?

    I have Verdana selected as my Message Font and the Composing Message Format preference set as Rich Text, yet Apple Mail sends new messages in plain text (Monaco). When I type the message it shows in Verdana. When I check it in Sent Mail, it is in Monaco. When I choose Send Again, the new massage appears in Verdana again, but after sending it is in Monaco. Also, The received message in in Monaco. I've tested this with other fonts and font sizes and the same thing happens.
    How do I fix this?
    Note: Mail correctly replies in the same format as received messages. Only new mail has the plain text problem.

    I suspect that for each one you need to go to Format > Make Plain Text

  • When opening Mail, sending mail won't stop searching?

    When I open mail App. On my MBP, running Lion mail loads all my accounts fine, but sending mail doesn't stop searching for sbcglobal.net account. Therefor can't send any mail from any accounts.

    Maintenance you do before you need it! I do it at least once a month, sometimes more often. The free application Onyx is a great application for this.
    It could also be that you don't have enough working RAM. Pages can have problem with memory use when the documents are large in Mb.

  • Mail sends 2 emails  at once when I only have one address for receiver??

    Why does mail send to my friends old address even though I deleted it from the address book and it is not in the to fioelr of the email??
    This is crazy!
    Mark

    You can keep the original ID for iTunes, iTunes in the Cloud and iTunes Match, and use a different ID for iCloud for email, calendar, contacts and bookmarks syncing and PhotoStream.
    In iTunesStore>Account you can change the email address associated with the login ID if you with - the actual login doesn't have to be a functioning email address.
    This means that iTunes will have a different login to iCloud, but Keychain will take care of this anyway so your won't need to remember which one to use. It's better security to have your iTunes login different from your easily discoverable email address, given the number of complaints about iTunes accounts being hacked.

  • Mail sends mail prematurely

    Since the last iPhone OS update (Oct 09) my 3G sometimes acts as if I've hit SEND in the middle of typing an email message. The SEND key is way up on top right when keyboard is in use but it must come from accidentally touching return or backspace keys I guess. Only way to avoid this intermittent problem is to not put addressees into message until the body is finished so it can't accidentally send itself.
    Has anyone seen this premature email sending problem? Could it be some sort of static issue causing lower keyboard touch to trigger the send key at top of screen?
    It only happens in the mail app. Not when texting or entering text into web apps.
    Thanks.
    S

    briantitus wrote:
    I wonder if there is any recourse if it cannot be reproduced.
    Pretty unlikely if one cannot demonstrate an actual fault - 'trust me guv' doesn't somehow seem credible.
    Do you have any Apps loaded which interact in ANY way with email or text manipulation ? Any signature modifiers, custom cut & paste Apps which could be causing it ?

  • Mail : "Send mail as" option

    Hello,
    Is there any way to get "send mail as" parameters from gmail in Mail ?
    How to configure Mail to work as the "send mail as" gmail option ?
    Regards,
    Guillaume

    Hello guillaumefrom31,
    It sounds like you have an email alias that you would like to use.  In Mail, you will have a "From:" field appear when you have an alias or additional email addresses.  You can setup your email alias and send from the alias using these steps:
    Set up an alias
    Choose Mail > Preferences, then click Accounts.
    Select an account, then click Account Information.
    Set up the aliases.
    For an iCloud account:
    Choose Edit Aliases from the Alias pop-up menu to create the aliases in iCloud.
    For other accounts:
    In the Email Address field, enter the aliases, separated by commas (for example, [email protected], [email protected], [email protected]).
    Send a message from an alias
    In the New Message window, click the From pop-up menu and choose the email alias you want to use to send the message.
    You may need to customize the header area to display the pop-up menu
    Mail (Mavericks): Use email aliases
    http://support.apple.com/kb/PH14950
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Mail:send mail:attachment. Is there a simplest way to send a file as an email attachment ? or more correct ?

    <satellite:form  method="post" id="contact-form" enctype="multipart/form-data">
         <input type="file" name="adjunto" />
    </satellite:form>
    FTValList ftListaFichero = new FTValList(1);
    ftListaFichero.setValBLOB(ics.GetVar("adjunto_file"), ics.GetBin("adjunto"));
      <mail:send
           to="<%=to_emailaddress %>"
           from="<%=from_emailaddress%>"
           subject="Subject"
           body="<%=body %>" >
        <mail:attachment value='<%=ftListaFichero.getVal(ics.GetVar("adjunto_file"))%>'/>
      </mail:send>
    http://docs.oracle.com/cd/E29542_01/apirefs.1111/e39371/JSP/mail-attachment.html
    http://docs.oracle.com/cd/E29542_01/apirefs.1111/e39371/JSP/mail-send.html
    Regards,

    Simplest might well be to use javamail API instead of the two tags that Sites provides, e.g. see email - Sending mail attachment using Java - Stack Overflow for a full example.
    Phil

  • Need help with mail sending mails..

    Can anybody help me with a code that works perfectly for sending mails.. since i used many codes which are not working, so please help me with the code to send mails please or else with an example.

    Hi kirupa_sankar,
    To send mails to others you have to use javax.mail.jar file and sample code is
    import javax.mail.*;
    import javax.mail.internet.*; // important
    import javax.mail.event.*; // important
    import java.net.*;
    import java.util.*;
    public class Mail {
    Properties props;
    Session session1;
    Message message;
    boolean flag=false;
    public boolean sendMail()
    props=new Properties();
    props.put("mail.smtp.host","mail.website.com"); // 'localhost' for testing
    session1 = Session.getDefaultInstance(props,null);
    String from= "[email protected]" ;
    String subject = "testing mail(subjective matter)";
    message =new MimeMessage(session1);
    message.setFrom(new InternetAddress(from));
    message.setRecipients(Message.RecipientType.TO,InternetAddress.parse("toaddress",false));
    message.setSubject(subject);
    message.setContent("content of the message");
    Transport.send(message);
    return true;
    try this one you will get success....

  • Mail Sends Mail does not receive!!!

    If I send mail there is no problem but if I try and receive I just get a little plink noise and nothing comes in.
    I have followed recent topics on this and tried the following:
    1 Connection Doctor shows all connections etc in good working order
    2 There was a thread about keychain passwords affecting mail, so I re set all keychain passwords to do with mail
    3 I have followed BDAqua advice on the safe re boot then repair disk permissions etc
    4 I have removed all of my messages from my webmail account including the trash and sent items to remove any message that might be affecting my Mail.
    I am truly exasperated, webmail works but I just want my Mail back
    To replace Mail with Eudora etc is only an option if I use the free to use version as I have no Credit Card and the nearest Mac shop is in Johannesburg 2,500kms away!
    I am currently downloading update 2009-001, maybe this will unlock what is happening....

    Hi ManinMalawi, and a warm welcome to the forums!
    3 I have followed BDAqua advice on the safe re boot then repair disk permissions etc
    Did it include this?
    First, Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move the following folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    To replace Mail with Eudora etc is only an option if I use the free to use version as..
    All there is is the Free Version anymore, Quaalcom released it to Open Source, and though it hasn't been updated since 6.2, it works just fine/great on the latest OSX.

  • Mail sending email to wrong person

    I am using MacMail 2.1 and have had 2 instances where it has automatically sent very private emails to the very wrong person. I have looked back in my sent history and the only adress that appears is the adress I intended to send the email to and yet, in both instances, somehow the email ended up in an unintended persons inbox. It is also important to note that it was sent to the same person both times, and this person was someone that I used to send very regular emails to(1 or more a day) but no longer do.
    I have absolutely no idea why this is happening but really need to figure out how to fix it.
    Thanks.
    Powerbook G4   Mac OS X (10.4.8)  

    If it looks lke a forwarded message, it probably is, and then would have nothing to do with mail. If you can access the email that went to the wrong person's inbox, look at the long headers for that email to identify the sender. One possibility - (I'm assuming that the email went to the correct address and the wrong address) if the correct address is a PC user they may have a virus that wold account for the forwarding. Again, looking at the header of the mail after it arrived at the wrong destination would be helpful.
    Have you checked with your ISP?

  • Mail sends before I finish editing when I hit spacebar

    Hello
    Something odd has happened to my mail.
    I have spell check on and when i click 'send' spell check gives me spelling options, I used to be able to go into the body of the email and edit it and now when I do that and I hit the spacebar it sends automatically,
    I have not changed any settings or upgraded software or anything like that, anyone have any idea why it would suddenly change?
    Its very annoying, I keep sending unfinished emails
    thanks

    From the Mail menu bar, select
    Mail ▹ Preferences... ▹ Accounts
    Select one of your IMAP accounts in the list on the left, then open the Mailbox Behaviors tab, Uncheck the box marked
    Store draft messages on the server
    Do the same in your other IMAP accounts. Save the changes when prompted.

  • Javax.mail Send mail vwith Israelian text

    Hi, sorry for my english but i don't speak it very well....i have a problem with my class that send email....
    When i send email with normal text (e.g in English) there's no problem and everything works fine....but tha problem is that i need to send email with a subject and a body in Israelian language...but when i send the email the text automatically is translated with our ASCII table (Israelian ASCII table is different)....so i think that the only way to send the text so that it remains in israelian, is to send the text in binary text (like the ftp that you can send in ASCII o BINARY.....i need to send in binary mode like the ftp)....
    If someone knows how to resolve this problem please help me....i have no more idea!!!!
    Thanks bye

    Assuming the default language/charset on the machine you're using is set to
    "Israelian", this should "just work". If it's not working, you might want to override
    the default by setting the System property "mail.mime.charset" to the charset to
    use. Sorry, you're going to need to know the correct charset name; I certainly don't.
    You can try sending email using another mailer like Thunderbird or Outlook and see
    what charset it is using.

  • MAC Mail - Sends Mail but mail never arrives at destination

    Hi,
    I have Leopard installed and am using MAC Mail for email. I connect to Virgin email servers for mail. Mostly this works fine, however I have found that sometimes I send email to contacts and it never arrives and never bounces back. I think it only happens when I click 'Reply' on emails. The addresses are correct and I never get a bounce back. Anyone had this problem?

    Hmm…I see two problems here: one is that your profile says you're running 10.4.10; if that's true, then you should update to 10.4.11 immediately, and you're in the wrong forum. If that's not the case, you need to update your profile so it accurately reflects the specific version of OS X you're running. And FYI: there is no MAC Mail; it's Mac. MAC is an acronym for something completely different.
    As for your problem, as long as the mail is sent, what happens to it after that is out of your control. It's possible that Virgin is experiencing problems with their mail servers to that some of these emails are deleted before they ever reach their destination, and it's also possible that the recipients' ISP is experiencing that kind of problem, but it would be rare. It's more likely that something in the subject or the body of the email you're sending is being flagged as spam and that the recipient or their ISP puts them into a Spam type folder or just deletes them before they ever reach the recipient. Since I don't know what kind of emails you send or to whom, I can't be sure, but I'd ask my recipients about this first, then my ISP.
    Mulder

  • Mail sending mail out on its on., Mail sending mail out on its on.

    Hi I was receiving my mail through Apple's Mail program this morning and noticed 7 messges being sent out that I never wrote. I tried to stop and couldn't stop them. Any suggestions or ideas?

    This is normal behavior (albeit confusing terminology) on the Activity thing for an IMAP email account.  It does not mean you are actually sending messages.  See, e.g.,
    Strange happenings with the OS X mail... | Apple Support Communities

  • Mail -- Send Mail Broken

    FYI
    Anyone else cursed out there?

    Yep, all updates are installed.
    It works on my two Tiger (client) machines, but not on my server machine.

Maybe you are looking for