PO Create - Workflow - Mail Problem

Hi experts,
I have an workflow that trigers after PO creation.(BUS2012). Then it sends a mail. But, mail does not work correctly. In SBWP , if i run the workflow, mail comes to inbox. I want it works directly.
Waiting for helps.
Regards,
Orhan

Hi,
Can I know which event and method you are using to send mail after the PO creation.
Is the workflow instance is created or not on the PO creation.
Regards,
Aditya

Similar Messages

  • ICal "created by Mail" problem

    After updating to OS 10.6.6 iCal became unusable on my main Mac Pro. All events and To Dos are properly displayed, but when trying to add a new calendar event by double-clicking on a date the following dialog box appears:
    "This calendar was created by Mail" (not true). "You can't add events to a Mail calendar. Mail calendars only contain to do items created in Mail" (also not true, all calendar events are properly displayed).
    Doing the usual maintenance steps (restart, fix permissions, reload the iCal application) did not solve the issue.
    Any advice would be greatly appreciated - too much of my life is in there to have to recreate it all.
    Message was edited by: Rysz

    Look at the sidebar when ical is open. At the top you'll see a "to do" calendar, it may be under a heading - mine says Personal - this was created when a to do item was created in Mail. If the "to do" is under a heading as mine is click the arrow so the folder closes and only the heading not the "to do" is showing. By default ical will open up with that item highlighted, if the arrow is closed ical will open with one of your normal Mobile Me calendars highlighted.
    Whichever one is highlighted in the sidebar is the one you create an event on when you click on a date in the calendar window. If that "to do" one is highlighted it won't let you create an event since it's managed by to dos created in Mail. Once you make sure that one of the other calendars is highlighted you can then click on a date and create the event.

  • Workflow Mailer Problem

    Hi all,
    I am with a problem in a certain server that happens when the process flow gets at a notification stage, the other things of the flow, like the functions called before the notification functions perfectly, but when the flow follow to the notification stage, an exception is raised.
    The following message is shown with its stacktrace:
    Erro '-20002 - ORA-20002: 3805: The event does not exist.' found execution of ''
    to the event 'oracle.apps.wf.notification.send'.
    ERROR_STACK=Wf_Mailer_Parameters.GetValueForCorr(er:NODENAME)
    Wf_Mailer_Parameters.GetValueForCorr(CorrId:APROVRP, parameter:NODENAME)
    WF_XML.GenerateDoc(oracle.apps.wf.notification.send, 2840)
    WF_XML.Generate(oracle.apps.wf.notification.send, 2840)
    WF_XML.Generate(oracle.apps.wf.notification.send, 2840)
    Wf_Event.setMessage(oracle.apps.wf.notification.send, 2840)
    Wf_Event.dispatch_internal()
    May anyone help me?
    Thanks in advance.

    Vinicius,
    Did you follow all of the steps in the Oracle B12169-01 document?
    If you still have not fix your problem, replay to me.
    Regards,
    Gustavo.

  • STRANGE PROBLEM with "Create New Mail Account.scpt" when creating POP acct.

    I am using "Create New Mail Account.scpt" to create a POP account. It creates the account successfully. It fetches the mails successfully. Now the problem begins. After fetching all the mails once if u click "Get Mail" in mac mail, it fetches all the emails again and has now 1 original and 1 copy of the email set which is on the server. I just need 1 copy of the mail set not multiple. Please give me a solution or direct me to a help.
    Thanks
    SCRIPT
    global theUsername
    global thePassword
    set success to 1
    set theResult to true
    if theResult is not equal to false
    #set theAccountName to getAccountName()
    #set theUsername to getUsername()
    #set thePassword to getPassword()
    #set theEmailAddresses to getEmailAddress()
    #set theFullName to getFullName()
    -- POP Account
    if accountTypeString is equal to "POP" or accountTypeString is equal to "IMAP" then
    set theHostname to "THE HOST NAME"
    -- POP specific options
    if accountTypeString is equal to "POP" then
    set deletionPolicy to my getDeletionPolicy()
    if deletionPolicy is not equal to false then
    set deletionPolicy to item 1 of deletionPolicy
    set theNewAccount to my createAccount(accountTypeString, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    if theNewAccount is not equal to false then
    setDeletionPolicy(theNewAccount, deletionPolicy)
    getAndSetAuthenticationScheme(accountTypeString, theNewAccount)
    getAndSetSMTPServer(theNewAccount)
    else
    set success to 0
    end if
    end if
    -- IMAP specific options
    else if accountTypeString is equal to "IMAP" then
    set theNewAccount to my createAccount(accountTypeString, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    if theNewAccount is not equal to false then
    getAndSetCachingSettings(theNewAccount)
    getAndSetAuthenticationScheme(accountTypeString, theNewAccount)
    getAndSetSMTPServer(theNewAccount)
    else
    set success to 0
    end if
    end if
    end if
    if success is equal to 1 then
    display dialog "Account created!"
    else
    display dialog "Account creation failed!"
    end if
    end if
    -- Convenience handler for creating accounts
    on createAccount(theAccountType, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    tell application "Mail"
    try
    if theAccountType is equal to ".Mac" then
    set theNewAccount to make new Mac account with properties {name:theAccountName, user name:theUsername, server name:theHostname, password:thePassword, full name:theFullName, email addresses:{theEmailAddresses}}
    else if theAccountType is equal to "IMAP" then
    set theNewAccount to make new imap account with properties {name:theAccountName, user name:theUsername, server name:theHostname, password:thePassword, uses ssl:true, full name:theFullName, email addresses:{theEmailAddresses}}
    else if theAccountType is equal to "POP" then
    set theNewAccount to make new pop account with properties {name:theAccountName, user name:theUsername, server name:theHostname, include when getting new mail:true, password:thePassword, uses ssl:true, full name:theFullName, email addresses:{theEmailAddresses}}
    end if
    on error
    set theNewAccount to false
    end try
    end tell
    return theNewAccount
    end createAccount
    -- Ask the user what they would like to name the account
    on getAccountName()
    repeat
    set theResult to display dialog "What would you like this account to be named?" default answer "Example: My Home Account"
    set theAccountName to text returned of theResult
    if theAccountName does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theAccountName
    end getAccountName
    -- Ask the user for the user name for their email account
    on getUsername()
    repeat
    set theResult to display dialog "What is your email user name?" default answer "Example: janedoe"
    set theUsername to text returned of the theResult
    if theUsername does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theUsername
    end getUsername
    -- Ask the user for the password for their email account
    on getPassword()
    set theResult to display dialog "What is the password for this account?" default answer ""
    set thePassword to text returned of theResult
    return thePassword
    end getPassword
    -- Ask the user for the email addresses for their email account
    on getEmailAddress()
    repeat
    set theResult to display dialog "What email address would you like to use for this account?" default answer "Example: [email protected]"
    set theEmailAddress to text returned of theResult
    if theEmailAddress does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theEmailAddress
    end getEmailAddress
    -- Ask the user for the full name for their email account
    on getFullName()
    repeat
    set theResult to display dialog "What is the full name for this account?" default answer "Example: Steve Smith"
    set theFullName to text returned of theResult
    if (theFullName does not start with "Example:") then
    exit repeat
    end if
    end repeat
    return theFullName
    end getFullName
    -- Convenience handler for asking the user what settings they would
    -- like to have for their special mailboxes. This handler also sets these
    -- values in Mail.
    on getAndSetSpecialMailboxes(theAccount)
    -- Sent messages default to storing locally
    set theResult to display dialog "Would you like to store Sent Messages on the IMAP server?" buttons {"Yes", "No"} default button 2
    log theAccount
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store sent messages on server to true
    else if button returned of theResult is equal to "No" then
    set store sent messages on server to false
    end if
    end tell
    end tell
    -- Drafts default to storing locally
    set theResult to display dialog "Would you like to store Drafts on the IMAP server?" buttons {"Yes", "No"} default button 2
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store drafts on server to true
    else if button returned of theResult is equal to "No" then
    set store drafts on server to false
    end if
    end tell
    end tell
    -- Trash defaults to storing on the IMAP server
    set theResult to display dialog "Would you like to store Deleted Messages on the IMAP server?" buttons {"Yes", "No"} default button 1
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store deleted messages on server to true
    else if button returned of theResult is equal to "No" then
    set store deleted messages on server to false
    end if
    end tell
    end tell
    end getAndSetSpecialMailboxes
    -- Convenience handler for asking the user what IMAP
    -- caching setting they would like to use and configuring
    -- it in Mail.
    on getAndSetCachingSettings(theAccount)
    set theResult to choose from list {"Cache everything", "Cache everything but attachments", "Cache when read", "Don't cache"} ¬
    with prompt "Choose a message caching setting for this account:" default items {"Cache everything"} without multiple selections allowed
    if theResult is not equal to false then
    tell application "Mail"
    tell theAccount
    if (item 1 of theResult is equal to "Cache everything") then
    set message caching to all messages and their attachments
    else if (item 1 of theResult is equal to "Cache everything but attachments") then
    set message caching to all messages but omit attachments
    else if (item 1 of theResult is equal to "Cache when read") then
    set message caching to only messages I have read
    else if (item 1 of theResult is equal to "Don't cache") then
    set message caching to do not keep copies of any messages
    end if
    end tell
    end tell
    end if
    end getAndSetCachingSettings
    -- Convenience handler for asking the user whether they want to use
    -- an already defined SMTP server (if any) or whether they want to
    -- define a new one.
    on getAndSetSMTPServer(theAccount)
    tell application "Mail" to set everySMTPServer to every smtp server
    if ((count of everySMTPServer) > 0) then
    set listOfSMTPServers to {}
    repeat with eachServer in everySMTPServer
    try
    set listOfSMTPServers to listOfSMTPServers & name of eachServer
    end try
    end repeat
    createNewSMTPServer(theAccount)
    else
    createNewSMTPServer(theAccount)
    end if
    end getAndSetSMTPServer
    -- Handler for creating a new SMTP server, if the user has none set up
    -- already or if they choose not to use one of their existing servers.
    on createNewSMTPServer(theAccount)
    set theServerName to "THE SERVER NAME"
    tell application "Mail"
    set theSMTPServer to make new smtp server with properties {server name:theServerName, port:25, uses ssl:true}
    set smtp server of theAccount to theSMTPServer
    end tell
    getAndSetAuthenticationScheme("SMTP", theSMTPServer)
    end createNewSMTPServer
    -- Handler for asking the user what authentication scheme their server supports.
    -- The options are different for POP, IMAP, and SMTP. Unless you are told otherwise,
    -- it's best to leave these at their default settings.
    on getAndSetAuthenticationScheme(accountType, theAccount)
    if accountType is equal to "POP" then
    set theChoices to {"Password", "Kerberos 4", "Kerberos 5", "KPOP", "MD5"}
    set theDefault to {"Password"}
    else if accountType is equal to "IMAP" then
    set theChoices to {"Password", "Kerberos 4", "Kerberos 5", "MD5"}
    set theDefault to {"Password"}
    else if accountType is equal to "SMTP" then
    set theChoices to {"None", "Password", "Kerberos 4", "Kerberos 5", "MD5"}
    set theDefault to {"Password"}
    end if
    set theResult to choose from list theChoices ¬
    with prompt ¬
    "Choose an authentication scheme for this " & accountType & " server. Most servers support 'Password' authentication." default items theDefault without multiple selections allowed
    if theResult is not equal to false then
    tell application "Mail"
    set theScheme to item 1 of theResult
    tell theAccount
    if theScheme is equal to "Password" then
    set authentication to password
    else if theScheme is equal to "Kerberos 4" then
    set authentication to «constant exutaxk4»
    else if theScheme is equal to "Kerberos 5" then
    set authentication to kerberos 5
    else if theScheme is equal to "MD5" then
    set authentication to md5
    else if theScheme is equal to "None" then
    set authentication to none
    else if theScheme is equal to "KPOP" then
    set authentication to «constant exutakpo»
    end if
    end tell
    end tell
    if accountType is equal to "SMTP" then
    set theSMTPLogin to theUsername
    set theSMTPPassword to thePassword
    tell application "Mail"
    tell theAccount
    set user name to theSMTPLogin
    set password to theSMTPPassword
    set uses ssl to true
    set port to 25
    end tell
    end tell
    end if
    end if
    end getAndSetAuthenticationScheme
    -- Handler for asking the user what POP deletion policy
    -- they would like to use for their account.
    on getDeletionPolicy()
    set theResult to choose from list {"Immediately after being downloaded", "After a specified number of days", ¬
    "When I remove them from the inbox", "Always leave them on the server"} ¬
    with prompt ¬
    "Choose a POP message deletion option:" default items {"Always leave them on the server"} without multiple selections allowed
    return theResult
    end getDeletionPolicy
    -- Handler for setting the deletion policy established in getDeletionPolicy()
    on setDeletionPolicy(theAccount, thePolicy)
    tell application "Mail"
    tell theAccount
    if thePolicy is equal to "Immediately after being downloaded" then
    set delete mail on server to true
    set delayed message deletion interval to 0
    else if thePolicy is equal to "After a specified number of days" then
    set numberOfDays to my getDeletionInterval()
    set delete mail on server to true
    set delayed message deletion interval to numberOfDays
    else if thePolicy is equal to "When I remove them from the inbox" then
    set delete mail on server to true
    set delete messages when moved from inbox to true
    else if thePolicy is equal to "Always leave them on the server" then
    set delete mail on server to false
    end if
    end tell
    end tell
    end setDeletionPolicy
    -- Handler for asking the user what deletion interval they
    -- would like to use, if they are setting up a POP account
    on getDeletionInterval()
    set theResult to display dialog "After how many days would you like POP messages to be deleted from the server?" default answer "30"
    set numberOfDays to text returned of theResult as integer
    return numberOfDays
    end getDeletionInterval

    Hi amiaba, and a warm welcome to the forums!
    I can't quite tell what it's doing, but open Keychain Access in Applications>Utilities, click on your Keychain on the left, put .mac in the search bar, once you find it, double click on it and click show password.
    If you have no mail in there try this with Mail quit.
    Drag this file to the Desktop...
    /Users/YourUserName/Library/Preferences/com.apple.mail.plist
    Start Mail & see if it steps you through it.
    Not sure on the .uk thing, but is Date & Time>Time Zone set to the UK?

  • Have Operating System 10.6.8, Mail Program 4.6.  How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to m

    Have Operating System 10.6.8, Mail Program 4.6.
    How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to manually opening every few month with no ? action from me.
    Help

    Have Operating System 10.6.8, Mail Program 4.6.
    How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to manually opening every few month with no ? action from me.
    Help

  • Problems in starting up the Workflow Mailer

    Hi,
    I am pretty new to the Oracle Workflow.
    I have recently installed Workflow 2.6, and when i try to start the workflow mailer wfmlr.exe, i am getting the following error :
    wferr 2009 : Fatal error, mailer is exiting.
    wferr 2102 : Could not connect to mail service using account 'my_email_user/password'.
    wferr 2202 : Could not establish mail service connection.
    wferr 2201 : Mail service connection refused. Error code 8.
    The Environment is Windows 2003 Server, and Microsoft Outlook 2003.
    Can anyone please let me know whether Workflow 2.6 is certified for use on Outlook 2003, and if not, is there any other way in which this issue can be resolved by making it run on Outlook 2003.
    Your comments would be highly appreciated.

    At install time there is a question that asked if you would like to configure adminstration now. (Something like that). By default this is not checked. If you did not check it you cannot access enterprise manager.
    The is probably a way to configure it, but it might be faster reinstalling.
    There is a simple way to de install by going to the ORACLE_HOME/bin and run the deinstall script.
    cheers
    James

  • Additional workflow Mailer setup on Purchase Order

    Dear All,
    We are running on R12 on 11.0.1.7 database. We have configured Workflow mailer notification and it seems to be running properly.. And the approver/approvee gets appropriate mails on appropriate time.
    But our management requires additional customization on how this function should work, The requirement is as follows:
    Problem Description: When a PO is raised it goes to his immediate superior who can approve the PO for less than Rs.100,000 and if it is above the stated amount, the respective PO requires further approval from the next superior in the hierarchy.
    The workflow standard setup is such a way so that the user who has raised the PO gets a mail notification alerting that the PO has been approved if so.
    Could you guide me a way in Oracle Ebiz R12 so that not only user who has raised the PO is alerted through mail if the PO is approved but also the immediate approver is also notified via mail for POs which is above Rs.100,000.
    Note: PO above Rs.100,000 goes through immediate approver and then to the next approver in the hierarchy.
    Thanks in advance for all ur support
    and Regards,
    Asif

    Please see if (How to create a custom copy of the seeded Purchasing PO Approval Workflow POAPPRV [ID 1270010.1]) helps.
    Thanks,
    Hussein

  • Many syncing and e-mail problems.

    Hi folks, lots of syncing and e-mail problems here:
    Syncing: My phone won't sync iCal (it tells me my phone is disconnected), my safari bookmarks or my email accounts. I've been through the threads here, tried resetting iSync, tried deleting calendars and resetting to 10 days instead of 30 -- still no luck. For e-mail, initially iTunes saw the e-mail accounts but did not sync theml. I tried the one-time advance settings and now it's not even seeing the accounts and still not syncing them. and for Safari, no luck with the bookmarks at all even thought the check-box is checked.
    Also, the iPhone won't receive e-mail from any of my POP accounts, even the one I set by hand (because none of the settings synced.) I used the same settings that I have on my desktop, but no luck. I use RoadRunner, so I know I can't send off it. But I went to the genius bar today and they told me to just leave the SMTP server field blank and I should be able to receive, but all I get on wi-fi and edge is a message that says, "Cannot Get Mail, the connection to the server "pop-xxxxxx etc" failed." even on my home netowrk, with five bars, it can't seem to connect. (btw, it does seem to be working properly on my .Mac account, but I don't use that account for most of my correspondence.)
    As far as the sync problems, the genius bar told me to reinstall iTunes, which I did with the new update that just came out this evening. Still no luck.
    any thoughts? bum phone? some setting I'm not catching? any help would be appreciated.
    Dave
    Quad G5   Mac OS X (10.4.2)  

    You will find the iPhone will freak out over any kind of perceived data corruption. Calendars seem to the worst for this (windows or mac)
    Test in a new user and try sending info in each direction. If it works - then your phone works fine.
    Other users have reported having to basically copy the contents of their calendars into a sticky or text edit window. delete the calendars and create brand new ones. they then just transfer the data back.

  • How to configure oracle alerts to use Workflow mailer?

    Hello Guys:
    We were trying to setup oracle alerts using workflow mailer. I have created a dedicated mailer for handling oracle alerts related mail.
    Here is what I need to clarify:
    1. Having setup a new mailer for Oracle alert do I have to still configure the Options in Oracle Alerts. This is where you choose which type of mail u want to use ( like Unix mail,Windows NT mail )
    2.How do I tell oracle alert to use the new mailer that I created exclusively for this? While creating the mailer at some point I remember putting ALR in configuration form.
    I am on 11.5.10 CU2. I am on 11i.ATG_PF.H
    Regards,
    Bala

    Hi Hussain:
    Based on the note I realised that my oracle alerts will user unix sendmail. But then If u go to " Oracle Alert Options "
    -- > Mail systems -- I check Unix send mail
    -- > Mail server options ( Do I have to fill this section? )
    My guess is that the send mail will post the email to a IMAP account ( I created oraclealert account ) and IMAP account will push the alert email to Recipient
    Mail Database/Server Name --- imap.mydomain.com
    Mail Priority --- Normal
    Accounts
    Application Installation username Password
    Blank ** Blank ** oraclealert pwd
    Blank ** Blank ** oraclealert pwd
    ** - It wont allow me to choose an application.
    Is there a simple test to make sure that my oracle alert is working or not? I appreciate your help.
    Regards,
    Bala

  • Error Mail Merge Aborted due to error in creating the Mail Merge DataSource

    Dear All,
    please help me with this problem (Oracle release 12.0.4.)
    1. PROBLEM:
    When attempting to extract data, using Web ADI in HRMS, Word is selected as the viewer, but an Excel spreadsheet is generated rather than a MS Word document containing the data. Also error "Mail Merge Aborted due to error in creating the Mail Merge Data Source." appears on screen.
    We are using MS Office 2003.
    2. PROBLEM:
    Unable to create data source from HR form PAYWSLEE.
    We are using custom integrator. This integrator is attached to form function. Form function is attached to responsibility. We also created the layout.
    The next step would be to create data source from form PAYWSLEE, but we are not able to perform this...
    In release 11i we used this form (PAYWSLEE) to create datasource (for mailmerge), but in R12 this is not working... Something is missing here and I need your help to determine what. I checked the most documents on Oracle Support and didn't find solution for this problem...
    Please advise.
    Kind Regards,
    Andreja

    Hi all,
    Thanks for visiting our forum and sharing your experience here. It'll be benefited to our communicator.
    Have a good time.
    Regards,
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Workflow mail shows junk character in outlook where arabic

    Hi all
    We have EBS R12 12.0.4. I am facing the problem with workflow mails.
    whenever the workflow mails comes in outlook it show junk characters instead of arabic letters.
    regards
    Musaddaq

    I have done following steps but no changes have the same issue.
    1. Navigate to OAM->Workflow Manager->Notification Mailer->View details in this page
    2. Look for parameter called RESET_NLS change this value from 'YES' to 'NO'.
    3. Bounce Notification Mailer.
    Regards
    Musaddak.

  • Workflow Mailer setup

    Hi Guys,
    Im busy setting up a workflow mailer thru a metalink note guide but I'm a bit confused..
    I've run the following scripts
    SQL> select target_node
    from fnd_concurrent_queues where concurrent_queue_name like 'WFMLRSVC%';
    2
    TARGET_NODE
    CIBPRD01
    SQL> SELECT b.component_name,
    2 c.parameter_name,
    3 a.parameter_value
    4 FROM fnd_svc_comp_param_vals a,
    5 fnd_svc_components b,
    6 fnd_svc_comp_params_b c
    7 WHERE b.component_id = a.component_id
    8 AND b.component_type = c.component_type
    9 AND c.parameter_id = a.parameter_id
    10 AND c.encrypted_flag = 'N'
    11 AND b.component_name like '%Mailer%'
    12 AND c.parameter_name in ('OUTBOUND_SERVER', 'REPLYTO')
    13 ORDER BY c.parameter_name;
    COMPONENT_NAME
    PARAMETER_NAME
    PARAMETER_VALUE
    Workflow Notification Mailer
    OUTBOUND_SERVER
    mailhost
    Workflow Notification Mailer
    REPLYTO
    [email protected]
    COMPONENT_NAME
    PARAMETER_NAME
    PARAMETER_VALUE
    The problem is the OUT_BOUND_SEVER is set to mailhost.
    where do I get the right name for the out_buond_server??
    Thanks
    Sibusiso

    Hi Sibusiso;
    Pelase check below notes which could you helpful for your issue:
    How to Troubleshoot 'Validation failed' Errors when Starting the Mailer [ID 463354.1] *<< part 1) Regarding OUTBOUND_SERVER related error:*
    PS: If you dont your SMTP Ip connect wiht your local system admin
    Regard
    Helios

  • Edit Workflow Mailer - Purchase Order Email Subject

    Hi,
    We have configured the workflow mailer to enable reminders to be sent out to approvers which relate to Purchase Order approvals that have not been responded to.
    However, as well as a reminder email being sent, there is also an email telling the approver that the previous email has been canceled. This has a the email subject prefixed with "Canceled:"
    Our problem is that users are seeing this and thinking that the Purchase Order has been cancelled. We therefore want to either edit the subject of this email, or stop it being sent.
    Any help/advice would be appreciated.
    Thanks,
    John

    JOhn
    I think this mail is sent by the workflow mailer using the item type System Mailer. This is auto generated notification when the notification itself is canceled or retired. You can customize the subject there based on the source.
    Thanks
    Nagamohan

  • More and more mail problems

    What a disaster. I've written about my mail problems before with mail before and I know what I managed to do this time is my fault, its something "I" don't understand about mail. But man am I screwed.
    I use my imac 98% of the time and I get 100% of my email on it (mobileme, concast, gmail). All works fine.
    A week ago I have an emergency appendix surgery and am doing rather poorly so I'm in bed on my macbook air. I need to get my email on that computer. I enable the email accounts so I can get all my "new" mail. Ugh, it starts syncing and bingo 2 weeks worth of mail on my imac is gone. No where to be found. Tons of work mail, important mail, lordy this is a mess.
    I know it had something to do with syncing.. the only account that is imap is my mobileme but I lost a ton of mail in that and its not on either computer or on the mobile me page either. It's just gone. And so is the gmail on the imac and again that isn't imap its a pop account and it was mail that was not in my inbox, I had received it weeks ago and put it in other mail boxes I created (like the work folder). And it just is all gone.
    IF anyone can shed some light on what I did and how to avoid this, I'd love that. Should I have just gone to the websites to check the mail (gmail site, comcast.net, mobileme site?)
    I am really in trouble with this email thing I lost stuff that I can't recreate. What a huge huge mess.
    thanks for any insight,
    Susan

    The issue....just resolved itself! I have not a clue how this happened...

  • Jhe - java mail problem

    Hi Jhe,
    Hope you are fine.
    I tried to create a mail session using the j2eetutorial14 examples.I did all the necessary settings like giving the mailhost name,defining JNDI name etc as per specification.But its throwing the following error please help me to solve this problem.
    Feb 15, 2007 12:28:16 PM com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl <init>
    WARNING: "IOP00410201: (COMM_FAILURE) Connection failure: socketType: IIOP_CLEAR_TEXT; hostname: development3.s4indsoft.com; p
    ort: 3700"
    org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2257)
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2278)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:208)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:221)
    at com.sun.corba.ee.impl.transport.SocketOrChannelContactInfoImpl.createConnection(SocketOrChannelContactInfoImpl.java
    :104)
    at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.beginRequest(CorbaClientRequestDispatcherImpl.java:
    152)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.request(CorbaClientDelegateImpl.java:146)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClientDelegateImpl.java:286)
    at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
    at org.omg.CosNaming.NamingContextHelper.narrow(NamingContextHelper.java:69)
    at com.sun.enterprise.naming.SerialContext.narrowProvider(SerialContext.java:89)
    at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:128)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:288)
    at com.sun.enterprise.naming.NamingManagerImpl.lookup(NamingManagerImpl.java:725)
    at com.sun.enterprise.naming.java.javaURLContext.lookup(javaURLContext.java:132)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:286)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at ConfirmerClient.main(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.util.Utility.invokeApplicationMain(Utility.java:237)
    at com.sun.enterprise.appclient.Main.<init>(Main.java:430)
    at com.sun.enterprise.appclient.Main.main(Main.java:99)
    Caused by: java.lang.RuntimeException: java.nio.channels.UnresolvedAddressException
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:336)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:191)
    ... 22 more
    Caused by: java.nio.channels.UnresolvedAddressException
    at sun.nio.ch.Net.checkAddress(Net.java:30)
    at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:451)
    at java.nio.channels.SocketChannel.open(SocketChannel.java:146)
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:320)
    ... 23 more
    Thanks & Regards,
    R.Ramesh.

    This says it all.
    Feb 15, 2007 12:28:16 PM com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl <init>
    WARNING: "IOP00410201: (COMM_FAILURE) Connection failure: socketType: IIOP_CLEAR_TEXT; hostname: development3.s4indsoft.com; p
    ort: 3700"
    MeTitus

Maybe you are looking for

  • Can you change the units used for size and position in layout editor?

    Hello, In Aperture 3.4, does anyone know if you can change the units used for size and position in layout editor?  The page is set in inches, but the image size and position are given in centimetres and I would prefer to work all in inches to create

  • Can't get sound despite all settings correct

    My iPad2 used to make a sound when I received an incoming email.  It no longer does that, despite all my sound settings showing it as working properly.  What am I doing wrong?  Does the sound go out on these iPads?

  • PDF Form

    I'm having a problem with securing specific fields. Not sure if that can be done. I have a form that I created in LiveCycle Designer and the forms contains fields that create a basic calculation for example (Qty+Price=Total). I want those fields to b

  • SAP Note #723909 Clarification needed: 2G heap for server nodes

    We mare upgrading from Enterprise 4.7 to ERP 6.0 SP12. For our ESS/MSS we will use standalone Java NW 7.0 SP14 with XSS SP12. Our portal servers and ERP ABAP are Unix Solaris 9 or 10 64-bit. The portal servers are 4CPU x 16G. We use three server node

  • Cisco NCS and ACS 4.2

    I've been playing with this all morning and can't seem to make it work. I have the new NCS1.0.2 and older ACS 3.2 and 4.2...I want to be to login to NCS using Tacacs vice local logins is this possible with the older ACS or do I need to upgrade ?