530 authentication required, when send report as email thru Discoverer View

Hi,
I got the "530 authentication required" error message when I tried to use the "Send as Email" function to attach a report in the Discoverer Viewer.
Could anyone shade some light on this error?
Thanks
Kevin C

Hi,
You need to talk with your "system", it seems like you got to a closed port.
Also it may be that a firewall is blocking you.
Tamir

Similar Messages

  • Send report as email thru bursting

    I am trying to send report by email thru bursting. My query follows:
    SELECT CLIENT_ID AS KEY
    ,'afsrep' AS TEMPLATE
    ,'RTF' AS TEMPLATE_FORMAT
    ,'en-US' AS LOCALE
    ,'EXCEL' AS OUTPUT_FORMAT
    ,'FILE' AS DEL_CHANNEL
    '[email protected]' PARAMETER1, '[email protected]' PARAMETER2, '[email protected]' PARAMETER3, 'TEST' PARAMETER4,
    'BODY TESET' PARAMETER5, 'true' PARAMETER6, '[email protected]' PARAMETER7
    from Client_contacts
    When we burst the report is opening in the desktop but NOT SENDING EMAIL.
    Can someone help me.
    Edited by: user10711255 on Jun 11, 2009 3:36 AM

    have you configured the address for the email server you will be snding through. its in the delivery setup in administration.

  • Outlook cannot send e-mail. Error: 530 Authentication Required

    Hello everyone,
    I'm new at this so I'm confused.  E-mails are sitting in my out box but I'm not getting any error messages.  When i trouble shoot e-mail settings, I get this error message: "Cannot send the message.  530 Authentication Required."   I would appreciate any and all help.

    Hey, Community Girl!  I just spent 2 days ripping my hair out over this same issue...  The answer was maddeningly simple/stupid.  In Outlook...  they ASK for your "user name" and "Password" (on the More Settings Tab).  What they
    actually WANT is your "email address" NOT your "user name", followed by your password.  This is easy.. I hope it works the same for you.
    In Outlook, go to Tools, Email Accounts, View or Change, click Next.  Highlight account information and click change.  In the lower right of the page... Click More Settings.
    Click the Outgoing Server Tab.
    Check the My outgoing server SMTP requires authorization.
    Check Log on Using:
    User Name:  Do NOT type your user name here... type your email address!
    Password:  Type in your password.
    Check the Remember password box.  OK
    That one small change FIXED 2 days of hair pulling on my part... I hope that does it for you too.
    Let me know...  I'd be interested if you fixed it.  Wish they had actually asked for what they wanted... User Name or Email Address ARE two different things!  Good luck!
    South Texan, you're a genius!  This 530 Authentication error has plagued me for 3 years now; when I call my internet service, they say it's a router firewall issue; when I call them, they say it's not their issue.  Changing the User Name field to
    my email address instead of my user account name worked!!!!! Thank you!!

  • Authentication faild when sending email to yahoo mail

    I can not send email to yahoo mail address. The error message is:
    javax.mail.MessagingException: 530 authentication required - for help go to http://help.yahoo.com/help/us/mail/pop/pop-11.html
    I tried different ways to do the authentication:
    1. Create a passwordAuthenticator (extends Authenticator) and set my yahoo userName and yahoo password there.
    then use this authenticator to get session:
    Session session = Session.getDefaultInstance(props, auth);
    I also tried both props.put("mail.smtp.auth",new Boolean(true));
    and props.put("mail.smtp.auth",new Boolean(false));
    2. using
    session.setPasswordAuthentication(new URLName("smtp.mail.yahoo.com"), new
    PasswordAuthentication(myYahooUserId, myYahooPasswoed);
    3. using Transport instance:
    Transport transport = session.getTransport("smtp");
    transport.connect(host, myYahooUserName, myYahooPasswoed);
    msg.saveChanges();
    transport.send(msg);
    transport.close();
    None of the above approaches are working.
    Can any one hlep?
    Thanks

    I am looking at the last line in step 1 in the code,
    and am wondering why the auth is set to false? I am
    new to this area, so just curious, not trying to
    provide an answer :-)I just tried with Rogers SMTP server, it is OK .. here is my code
    Properties props = System.getProperties();
                   //Authenticator auth = new
                   // -- Attaching to default Session, or we could start a new one --
                   props.setProperty("mail.transport.protocol", "smtp");
                   props.setProperty("mail.host", smtpServer);
                   props.setProperty("mail.user", acctName);
                   props.setProperty("mail.password", password);
                   props.setProperty("mail.smtp.auth","true");
                   Session mailSession = Session.getDefaultInstance(props, null);
                   Transport transport = mailSession.getTransport();
                   MimeMessage message = new MimeMessage(mailSession);
                   message.setContent(subject, "text/plain");
                   message.addRecipient(Message.RecipientType.TO,
                        new InternetAddress(to));
                   Address replyList[] = { new InternetAddress(from) };
                   message.setReplyTo(replyList);
                   message.setFrom(new InternetAddress(from));
                   //transport.connect();
                   transport.connect(smtpServer, acctName, password);
                   transport.sendMessage(message,
                        message.getRecipients(Message.RecipientType.TO));
                   transport.close();

  • UTL_SMTP and SMTP-Error: 530 Authentication required

    Hi,
    I wanna use the utl_smtp-package and while testing the example of the 9i-documentation, I got the error:
    ORA-29279: Permanent SMTP-Error: 530 Authentication required
    The only help I found was the sentence in the docu:
    530: Must issue a STARTTLS command first. Encryption required for requested authentication mechanism.
    What does it mean and how can I avoid this error?
    It's true, that my smtp-account of my provider needs an authentication (pop3 before smtp!)
    Thanx a lot!
    Wolfgang

    Hey, Community Girl!  I just spent 2 days ripping my hair out over this same issue...  The answer was maddeningly simple/stupid.  In Outlook...  they ASK for your "user name" and "Password" (on the More Settings Tab).  What they
    actually WANT is your "email address" NOT your "user name", followed by your password.  This is easy.. I hope it works the same for you.
    In Outlook, go to Tools, Email Accounts, View or Change, click Next.  Highlight account information and click change.  In the lower right of the page... Click More Settings.
    Click the Outgoing Server Tab.
    Check the My outgoing server SMTP requires authorization.
    Check Log on Using:
    User Name:  Do NOT type your user name here... type your email address!
    Password:  Type in your password.
    Check the Remember password box.  OK
    That one small change FIXED 2 days of hair pulling on my part... I hope that does it for you too.
    Let me know...  I'd be interested if you fixed it.  Wish they had actually asked for what they wanted... User Name or Email Address ARE two different things!  Good luck!
    South Texan, you're a genius!  This 530 Authentication error has plagued me for 3 years now; when I call my internet service, they say it's a router firewall issue; when I call them, they say it's not their issue.  Changing the User Name field to
    my email address instead of my user account name worked!!!!! Thank you!!

  • Email address of a contact was changed or it deleted, but still pops up when sending a new email?

    How do I keep deleted or changed Contact's EMail address from popping up when sending a new email ti that contact?
    The old address keeps showing uo - even when deleted or changed in CONTACTs-I checked the contact file and the change was made and no longerin the  file?
    Must be a "BUG" in the Mail and/or Contact" Program with sharing of data not being updated immediately when changes are entered and saved?
    Any help would beappreciatd.
    BM2400

    Just remove the names from your "Previous Recipients" list:
    It's not a bug.
    This is many years old.

  • Compress the file in Background when sending as an email.

    Hi All,
    Is there any way to compress the file in Background when sending as an email.
    Thanks in advance

    I haven't been able to find a solution to this so I am either going to incorporate my data into the body of an email or look at an http post solution...

  • Smart forms print control pop box (no required) when run report

    Dear All Expert Guru,
             how to control printing pop box when execute transaction code ,Report are make in smart form format
             because while run our report then come printing pop box  select out put device the will come report
                                             . but our user required no should be come printing pop box they are required when run report direct come report
       Pls help me any one.
    Thanks & Regars.
    Sudhir Srivsatava

    Hi,
       Pass the parameter no_dialog = 'X' while calling the smartform.
    data: wa_ctrlop type ssfctrlop.
       wa_ctrlop-no_dialog = 'X'.
    CALL FUNCTION fm_name
      EXPORTING
    *   ARCHIVE_INDEX              = ARCHIVE_INDEX
    *   ARCHIVE_INDEX_TAB          = ARCHIVE_INDEX_TAB
    *   ARCHIVE_PARAMETERS         = ARCHIVE_PARAMETERS
        CONTROL_PARAMETERS         =  wa_ctrlop
    *   MAIL_APPL_OBJ              = MAIL_APPL_OBJ
    *   MAIL_RECIPIENT             = MAIL_RECIPIENT
    *   MAIL_SENDER                = MAIL_SENDER
    *    OUTPUT_OPTIONS             = OUTPUT_OPTIONS
    *    USER_SETTINGS              = 'X'
    * IMPORTING
    *   DOCUMENT_OUTPUT_INFO       = DOCUMENT_OUTPUT_INFO
    *   JOB_OUTPUT_INFO            = JOB_OUTPUT_INFO
    *   JOB_OUTPUT_OPTIONS         = JOB_OUTPUT_OPTIONS
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    Regards,
    Srini.

  • When sending attachment in email the image is so large it takes up the screen, how do i make it normal, when sending attachment in email the image is so large it takes up the screen, how do i make it normal

    when sending attachment in email the image is so large it takes up the screen, how do i make it normal, when sending attachment in email the image is so large it takes up the screen, how do i make it normal

    In the Mail app, open the help menu. You will find your answer under "add attachments"

  • Send reports by eMail without .BIAR

    Hi,
    Can i send reports by email for deployment on another CMC without using .BIAR file? The reports are created in Webi Rich client. The universe and associated DB already exist at the destination location. I am relatively new to BO.
    Thanks...

    Technicaly - yes you can, but in that destination environment you will have to open thise reports using Webi Rich Client, re-point them to the proper universes and then export them to repository.
    The Proper , Recomended and Supported method is to use Life Cycle Manager or BIAR file funxctionality for this operation.

  • When sending report to Adobe PDF via Visual FoxPro application programmatically, I need to suppress

    When sending report to Adobe PDF via Visual FoxPro, SAS or other development system, programmatically, I need to suppress the dialog box and send report directly to AdobePDF, create the file. I will choose directory programmatically.
    Are there options available that will suppess the dialog box, which stops the application.
    Thanks.
    Edward

    Post your query in the forum for Acrobat SDK.

  • After updating to the new ios5 with my 4S , no wifi connection (at home), problem when sending or receiving email

    After updating to the new ios5 with my 4S, no wifi connection and problem when sending or receiving email. I had no issue before the update... I am very disappointed

    Did you already try to reset your network settings in Settings/General/Reset?

  • E-Mail authentication error when sending emails.  Droid X

    Problem:  On one email account I was unable to send e-mail messages.
    Desciption:  Get an authentication error after sending attempts
    Cause:  Unable to access the advanced setting menu for outgoing server
    Reason:  System software version 2.3.340.MB810 does not have the advanced menus.
    Solution: Update Droid X software to version 4.5.596.en.us
    Procedure:
    1.  Go to Settings icon
    2.  Select About Phone (last choice)
    3.  Select System Updates
    4.  Update the software - takes quite a while to download.
    5.  Install software when prompted.
    6.  Go to My Accounts
    7.  Select the problematic E-mail account
    8.  Go to Outgoing Sever
    9.  Go to advance settings   (NEW)
    10.  Select the correct authentication settting per your ISP instructions for the outgoing server.
    PROBLEM SOLVED!

    good post

  • Webi Publication - Do not send report by email when zero records

    Hello,
    I have a report that I am scheduling.  It is using dynamic recipients and personalization based on the recipients.  Some of the recipients will have zero records for the report and I do not wish to send the report by email to them.  I have searched and found a "workaround" of adding a conditioned error in the footer to get a division by zero error if there are no records.  However, the report still runs and gets sent to the recipient with no data.  Any way to accomplish what I want to do?
    I am using SAP BusinessObjects BI Platform 4.1 Support Pack 2 Version: 14.1.2.1121
    My data sources are Excel, so I am not using a Universe for this particular application.
    Thank You in advance.

    I have been trying different options and the most promising one would be to generate a list of dynamic recipients that have data and output it to Excel file.  I can use that Excel file as data source for a Webi Document that is going to be used as the dynamic recipient document in a publication.
    One problem is I cannot automate the creation and replacement of an Excel file in InfoView folders.  This means I would have to update the Excel file manually.  Also it seems like the Webi document used for dynamic recipients must be refreshed and saved, otherwise the old list of recipients is used by the publication.

  • Send report via email as xls file.

    Hello from Spain,
    Sorry if this is not the correct forum. It's both a forms and reports question, but I think it fits better in the reports forum. I have queried into the forums for similar questions and found some threads without any replies around this same issue. I wish I am lucky today.
    I have developed some web forms which generate pdf and txt reports. The latter ones make use of desformat=delimiteddata when calling the reports. They run fine. I have also developed one form which suscribes those reports to email addresses. To do so, I am setting those email addresses in the DESNAME reports parameter and setting DESTYPE parameter as MAIL. They arrive as an attachment with pdf or txt extensions.
    Now, I am required to deliver those reports as xls files. I have been reading that desformat=spreadsheet would allow me to do so (as well as formatting the reports and make them look "cuter" than by using just delimiteddata), but have been unable to do it so far. When setting desformat=spreadsheet, reports are sent via email as html attachments, and when they are opened they look awful. Is there any way I can do this? It shouldn't be a too big deal, but I feel completely unable.
    Thank you,
    Fernando G.

    Hi,
    Please check the following forum thread that may help --> Re: Generate report in Excel and send to user via email.
    Thanks, RZ

Maybe you are looking for