Problem in mail sending (ERRor message  XS829)

*******************my issue is "have to send a mail to external mail id " but i am getting error as below.........
Internal error: CL SMTP RESPONSE ESMTP error code is not known._554_554 Service una
Message no. XS829
Diagnosis
An error occurred in program CL
Error text: SMTP
Additional information:
RESPONSE
ESMTP error code is not known._554_554 Service una
System Response
Message processing terminated.
***********************the above error i am getting in SBWP outbox
here error is in CODE or any configuration settings need....?
can any body help me please*
thaks for reading...

Hi Anil,
There are several OSS Notes that relate to CL SMTP RESPONSE ESMTP, as well as several that appear to be related to XS829.  You should try looking at those first - or if they don't apply, please let us know.
Regards,
Sue

Similar Messages

  • Trying to send e-mail and error message " a copy has been placed in your outbox. the sender address was rejected by the server"

    trying to send e-mail and error message " a copy has been placed in your outbox. the sender address was rejected by the server"

    i have the same problem with my 3gs and tried to add my email acc+pass in the outgoing server but it got rejected.
    just bin on the phone(45min) with my carrier support about this issue they are pretty much scratching there head, the settings i should use gets verified with no problems when i add the outgoung server, but still cant send mails.

  • Mail gave error message, failure to move e-mail to trash can.  Mail has frozen and will not quit and is stopping a machine shutdown.  Problem persisted even after power was trend off for a minute.

    Mail gave error message, failure to move e-mail to trash can.  Mail has frozen and will not quit and is stopping a machine shutdown.  Problem persisted even after power was trend off for a minute.Iideas please

    OS X: How to quit an unresponsive application using Force Quit
    Back up all data. Rebuild the mailbox. Try to delete the message again.

  • My iphone suddenly crashed and asked for restoration, however itunes sends error message of host not available, what should I do?

    My iphone suddenly crashed and asked for restoration, however itunes sends error message of host not available (3014), what should I do?

    Try -
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.
    The "device may need service" means a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar
    Also see:
    3014
    Restoration of code 3014 will not work?: Apple Support Communities

  • TS2634 My problem - when syncing and error messages  comes up:  iTunes could not sync calendars to the iPhone because an error occurred while margin data."  I've tried turning the phone off and back on, & tried both USB ports but get the same thing.  What

    My problem - when syncing and error messages  comes up:  iTunes could not sync calendars to the iPhone because an error occurred while margin data."  I've tried turning the phone off and back on, & tried both USB ports but get the same thing.  What can I do next since it doesn't give me even one clue as to what the error would be?

    Before I started to resync calendars one by one as suggested in the troubleshooting article, I remembered something that came up in a sync when I first attempted :  a 'which one do you want to keep' message about a repeating calendar event, which came up with three options, one from Calendar, and two from iCal on the phone.  I deleted that event, then went through the calendar resync one by one, and all seems OK now.
    In Music there is a way to find 'ghost' items that show up as grayed-out on the menus, so that you can try to reassociate or delete them.  It would be nice to have a similar way to work with Calendar!
    Thanks for pointing me to the right article.

  • When i do initial set up w creative cloud set uo wont run send error message"installer failed to initialize" why and how can i get pass this

    When I do initial set up with creative cloud set up it wont run a send error message "installer failed to initialize" comes up. Why and how can I get passed this?

    Error "Installer Failed to Initialize" | Install desktop application | Windows

  • Best Practices Question: How to send error message to SSHR web page.

    Best Practices Question: How to send error message to SSHR web page from custom PL\SQL procedure called by SSHR workflow.
    For the Manager Self-Service application we’ve copied various workflows which were modified to meet business needs. Part of this exercise was creating custom PL\SQL Package Procedures that would gather details on the WF using them on custom notification sent by the WF.
    What I’m looking for is if/when the PL\SQL procedure errors, how does one send an failure message back and display it on the SS Page?
    Writing information into a log or table at the database level works for trouble-shooting, but we’re looking for something that will provide the end-user with an intelligent message that the workflow has failed.
    Thanks ahead of time for your responses.
    Rich

    We have implemented the same kind of requirement long back.
    We have defined our PL/SQL procedures with two OUT parameters
    1) Result Type (S:Success, E:Error)
    2) Result Message
    In the PL/SQL procedure we always use below construct when we want to raise any message
    hr_utility.set_message(APPL_NO, 'FND_MESSAGE_NAME');
    hr_utility.raise_error;
    In Exception block we write below( in successful case we just set the p_result_flag := 'S';)
    EXCEPTION
    WHEN APP_EXCEPTION.APPLICATION_EXCEPTION THEN
    p_result_flag := 'E';
    p_result_message := hr_utility.get_message;
    WHEN OTHERS THEN
    p_result_flag := 'E';
    p_result_message := hr_utility.get_message;
    fnd_message.set_name('PER','FFU10_GENERAL_ORACLE_ERROR');
    fnd_message.set_token('2',substr(sqlerrm,1,200));
    fnd_msg_pub.add;
    p_result_message := fnd_msg_pub.get_detail;
    After executing the PL/SQL in java
    We have written some thing similar to
    orclStmt.execute();
    OAExceptionUtils.checkErrors (txn);
    String resultFlag = orclStmt.getString(provide the resultflag bind no);
    if ("E".equalsIgnoreCase(resultFlag)){
    String resultMessage = orclStmt.getString(provide the resultMessage bind no);
    orclStmt.close();
    throw new OAException(resultMessage, OAException.ERROR);
    It safely shows the message to the user with all the data in the page.
    We have been using this construct for a long time for all our projects. They are all working as expected.
    Regards,
    Peddi.

  • How to send error message to forms from Database Trigger

    Hi, Please help me to send error message to forms from Database Trigger?
    RgDs,
    Madesh.R.M

    You are correct, the On-Error trigger is a Forms trigger. However, if your Form is going to display the error generated by the database stored procedure or trigger - you might not see the database error in your Form unless you check the DBMS_ERROR_CODE in the On-Error trigger and manually display the Error Code and associated Text. I've see this happen with a co-worker. The Form she was working on was based on a table with an Before-Insert trigger. Because she was not explicitely handling the error from the Before-Insert trigger in the Forms On-Error trigger, her Form appeared to halt for no reason at all. Once she added code to the On-Error trigger in the Form to handle the DBMS_ERROR_CODE, she discovered the trigger was producing an error and was able to show the error to the user in the On-Error trigger.
    I understand the desire to keep as much as possbile in the database, but with that comes some extra coding in your Forms to handle this. This extra coding could easily be placed in a Forms Library, attached to a Form and called in the On-Error trigger. Your code could look like this:
    DECLARE
       /*This example assumes you have an Alert defined
          in your Form called: 'ERROR' */  
       al_id    ALERT;
       al_text  VARCHAR2(200);  /* Max text of a Forms Alert message*/
       al_btn   NUMBER;
    BEGIN
    IF DBMS_ERROR_CODE != 0 THEN
       /* Error code is ORA-00000 Normal Successful completion
           So only handle non-zero errors  */
       al_text := DBMS_ERROR_CODE||':'||DBMS_ERROR_TEXT;
       al_id := Find_Alert('ERROR');
       set_alert_property(al_id, alert_message_text, al_text);
       al_btn := show_alert(al_id);
    END IF;
    END;Your original question was "How to send error message to forms from Database Trigger?" The answer is you don't because Forms already gets the database error code and database message through the Forms DBMS_ERROR_CODE and DBMS_ERROR_TEXT functions. Look these up in the Forms help and it should clear things up for you.
    Craig...
    Edited by: CraigB on Jun 14, 2010 4:49 PM
    Edited by: CraigB on Jun 14, 2010 4:49 PM
    Edited by: CraigB on Jun 14, 2010 4:50 PM
    Edited by: CraigB on Jun 14, 2010 4:51 PM
    Edited by: CraigB on Jun 14, 2010 4:51 PM

  • Sending error messages

    When I send error messages it disables the back, exit and cancel button.
    How can I enable them?

    Use popup window to notify errors...
    CALL SCREEN '1100' AS WINDOW STARTING AT 10 10.
    <i>OR</i>
    CALL FUNCTION 'POPUP_TO_CONFIRM'
      EXPORTING
       TITLEBAR                    = 'Test '
        text_question               = 'Error message'
       DISPLAY_CANCEL_BUTTON       = ' '
    Regards
    ramana

  • What do I need to do to fix a problem such as an error message stating "iTunes has stopped working"?

    What do I need to do to fix a problem such as an error message stating "iTunes has stopped working"?

    Hello westerboy,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes for Windows XP: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/ts1421
    Best of luck,
    Mario

  • Problem installing i tunes Error message in Dialoque Box

    Problem installing i tunes Error message  in a Error Box "Installation source for this product not available, verify source exisits , - The feature you are trying to use is on a network resourse that is unavaialble
    Also message reads  Installation source for this product is not available, verify source exists
    I have tried to unistall I tunes using Revo Uninstaller, and get the same message box as when I'mtrying to install I tunes
    I have downloaded the latest version, but cannot install it, I have tried to re -install from my computer an old version, but a message come back stating a newer version is already installed, have selected the two boxes in the Dialoque box and the same message comes back
    Please help

    "Installation source for this product not available, verify source exisits , - The feature you are trying to use is on a network resourse that is unavaialble
    Which particular .msi file (or files) does the message (or messages) go on to say cannot be found? (Several different .msi files might be mentioned in this context: itunes.msi, bonjour.msi, AppleSoftwareUpdate.msi, etc.)

  • Is it possible to send error message from Adapter Module to CCMS?

    Hi
    Is it possible to send error message from Adapter Module  to CCMS...?I have written on adatper module from there i have to send error message to CCMS or SXMB_MONI. Is it possible if yes please send me the related documents
    Best Regards
    Ravi Shankar B

    Hi
    I have written following User Defined Exeption in my Module program
    class DuplicateFileException extends ModuleException{
              DuplicateFileException(String message){
                   super(message);
    I am throwing my Exception like this
    try{
         throw new DuplicateFileException("Duplicate File");
    }catch(DuplicateFileException e){
         throw e;
    But i am not getting this exception in SXMB_MONI. In adpater monitoring i am getting the following exceptions
    <b>
    2007-05-16 15:51:30 GMT+05:30: Retry interval started. Length: 5.000 s
    - 2007-05-16 15:51:30 GMT+05:30: Error: java.lang.NullPointerException
    - 2007-05-16 15:51:30 GMT+05:30: An unknown error occured.
    - 2007-05-16 15:51:30 GMT+05:30: Processing started
    - 2007-05-16 15:51:25 GMT+05:30: Error: java.lang.NullPointerException</b>
    can any one give me the idea how to send error from module program to SXMB_MONI
    Thanks & Regards
    Ravi Shankar B

  • HT1933 Tried iTunes Store directive for reporting a problem. Got an ERROR message every time. Stuck with a NY Times app that won't recognize my subscription.

    Tried iTunes Store directive for reporting a problem. Got an ERROR message every time. Stuck with a NY Times app that won't recognize my subscription.called Apple and was told by an automated message to...use the ITunes Store directive.
    Can someone point me in the right direction.

    Hello atransient,
    Thanks for the question, that definitely sounds frustrating to encounter errors at the most important times.
    Let's see if the online Report a Problem works any better for you:
    http://reportaproblem.apple.com
    Thanks,
    Matt M.

  • How ro send error message from BADI to BAPI

    i have a BADI which is triggered from a BAPI.This BADI has only importing and changing parameters.How can i send error message to BAPI.Please reply at the earliest.
    High points can be expected.

    Hi Arshi,
         Please check whether the following link is of any use to you,
    how to capture the error message from bapi
    Best Regards.
    Reward points if it is helpful.

  • Mac Mail & POP Error Message - Unable to receive, Able to send

    I am in a bind -- our company (okay, me) had gotten fed up using Yahoo Small Business email (multiple problems with customer service, they deleted my email, their tech fixes take weeks, I could go on and on...), so we switched to Network Solutions, a company I've used personally and been pretty happy with. HOWEVER, we've switched over and a remote party who uses Mac Mail to access his email set up using the exact settings suggested by Network Solutions and is unable to receive email. He's able to send it (using Earthlink as the outgoing mail server), but he's unable to receive it, and it's becoming a BIG pain.
    He's running:
    Mac OS 10.4.6
    Mac Mail 2.0.7
    He receives the error message:
    "The server error encountered was: The server "mail.latitude-entertainment.com" cannot be contacted on port 110."
    He operates wirelessly using a home router for multiple computers and has Earthlink DSL.
    One bizarre twist: He's even not able to access the webpage for webmail (http://mail.latitude-entertainment.com)
    At first I thought it was a firewall issue, but he doesn't believe he has any firewall software installed.
    Needless to say, I'm an admin here looking like a fool in front of the big wigs. Not a good position. Network Solutions runs me down their usual list of things to look for, but not looking at the computer, I'm running blind (and he's not in a position to contact tech support himself).
    Any help out there?
    Any help would be appreciated.
    Laptop, not sure what type   Mac OS X (10.4.6)   Mac Mail 2.0.7

    Hello, and welcome to the Discussions.
    Probably the number one thing check and/or experiement with, is the form of the Username entered in the Mail Preferences when setting up the account. Mail is very precise about whether the form is the portion of the email address in front of the "@domain", or the entire email address. The standard will be set by the server, of course, Mail will not take Username from any place, other than the Username entry box in the preference, and not from the email address entry box.
    Have him try it each way. Do you access this server with Mail 2.0, or otherwise?
    Ernie

Maybe you are looking for