Problem in Sending email from Reports Queue Manager

Hi
I am getting problem in sending email from reports queue manager.
It says that error in logging to mail server.
If any body knows the sol then pl help me out.
thanks

Hi
I am getting problem in sending email from reports queue manager.
It says that error in logging to mail server.
If any body knows the sol then pl help me out.
thanks

Similar Messages

  • Problems with send emails from 2nd account

    Hi,
    I have problems to  sent from a 2nd account. Sending emial via my icloud account works excellent. But if I want to sent emails via my 2nd account I got the message     
    " Can't sent emails - Adresse [email protected] was declied from server, because  forward is not allowed"
    I heard that the server has to setup to allow forwrding emails from a 2nd account. Where could I find this?
    Thnaks
    Michael

    I believe CF5 had an issue with 0 byte mails in the spool.
    Test your mail to confirm that you do not attempt to send a 0 byte
    mail.

  • Problem in sending emails from SAP

    Hi All,
    We have recently upgraded our system from 4.6C to ECC6. A background job that is supposed to send emails is not sending the mail to the users. When I check in the batch user's outbox, I can find the email sitting in the outbox. The mails were sent successfully prior to upgrade.
    I'm using SO_OBJECT_SEND to send the mail. Can any one please suggest what I need to do to send the emails.
    Thanking you in anticipation.
    Regards,
    Rajani

    Hi Rajani,
    Please check these thread
    ALV reports emailed in background job
    Mail report spool as an attachment in a background job :)
    Sending mail in PDF format in background
    A nice code sample is here
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8cd6adbb-0301-0010-39ba-938c601d5db9
    All the Best !! Award points if useful

  • Problem in sending mail from REPORT BUILDER...HELP ...PLS ....URGENT

    Hi All,
    I added the mailserver part in the rwbuilder.conf file.This is how it looks
    <pluginParam name="mailServer">smtp.xxx.com</pluginParam>
    The smtp server of our company is working fine.
    Now when i am sending mail frm report builder i am getting the error.
    Pls tell me .....
    Do i have to configure any other file?
    Should the smtp server be running in my local machine?WHAT IS THE SOLUTION ...FOR THIS PROBLEM?
    Please someone give me some guidance..
    regards,
    ashok

    Hi,
    Pls give some idea ......
    your reply will be greatly appreciated.
    regards,
    ashok

  • Problems with sending emails from my Blackberry BIS account - all on one line

    I am using a BB Storm 9500 and have been trying to use the BIS email account.
    However, whenever I reply or forward emails from my device, the email comes out all on one line regardless of the punctuation I put in.
    My signature also appears on one line despite having formatted it differently.
    I've seen some post on this problem before but I wondered whether anyone has resolved it now. It's a pain because when responding to work emails it looks completely unprofessional.
    Cheers
    TJE

    anyone try it? any use?
    dc

  • Problem with sending email from 4.6C to MS-outlook / Exchange

    Hello,
    I'm trying to send an email with a pdf-attachment from my 46C system. In trans SOST everything looks fine. There is a document with an attachment. When I send it to my email-client there's no attachment. And the following message is given in my email:
    This message is in MIME format. Your mail reader does not support MIME. Please read the first section, which is plain text, and ignore the rest. Better yet, get a MIME-capable mail reader.
    Does anybody recognise this message ???
    Regards,
    GJ van Holland

    Hai G.J.Van
    Check the following Code
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
      DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
      DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
      DATA: DOC_CHNG  LIKE SODOCCHGI1.
      DATA: TAB_LINES LIKE SY-TABIX.
      DATA L_NUM(3).
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Delivered Mail'.
    Mail Contents
      OBJTXT = 'Object text'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
      LOOP AT ITAB_DATA.
        CONCATENATE ITAB_DATA-PRODUCTOR
                    ITAB_DATA-VBELN
                    ITAB_DATA-POSNR
                    ITAB_DATA-MATNR INTO OBJBIN.
        APPEND OBJBIN.
      ENDLOOP.
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'ORDERS'.
      APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'TXT'.
      OBJPACK-OBJ_NAME   = 'WEBSITE'.
      OBJPACK-OBJ_DESCR  = 'ORDERS.TXT'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
    target recipent
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
    copy recipents
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      RECLIST-COPY     = 'X'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = DOC_CHNG
           TABLES
                PACKING_LIST               = OBJPACK
                OBJECT_HEADER              = OBJHEAD
                CONTENTS_BIN               = OBJBIN
                CONTENTS_TXT               = OBJTXT
                RECEIVERS                  = RECLIST
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
    Thanks & regards
    Sreenivasulu P

  • Problem in sending email from oracle

    Hi,
    I am using UTL_SMTP.write_data to build the email structure. And all the emails are going properly. But the problem is if i add more reciepants in the CC list then the emails are going properly. But it is not shoing all the reciepants list in the CC list after it reaches to the reciepants.
    Please help on this..
    Regards,
    Bond....

    I am not getting this "But i am combining CC list and i am sending only once for CC."..
    As, I said earlier, you have to add UTL_RCPT for each recepient. For example, if you have CC list into some variable p_cc as comma separated list, then you can do something like this:
    ll_cc := '[email protected],[email protected],[email protected]';
       loop
           exit when l_to is null;
           n := instr( l_cc, ',' );
           IF n =0 THEN exit; end if;
           l_tmp := substr( l_cc, 1, n-1 );
           l_cc := substr( l_cc, n+1 );
           utl_smtp.rcpt( l_tmp );
       end loop;
       end;PS: Not tested.

  • Problem with sending email from Acrobat Reader X Version 10

    Hello all
    I recently purchased a new Dell laptop with Windows 8 as its OS. I had two email clients installed, one is outlook 2007, that has no contacts and then purchased outlook 2014 which I am using. When I installed Acrobat and tried to send a PDF file as an email attachment, it took me first to Outlook 2007. I closed the program, deleted Microsoft office 2007 and tried to send the email again. Now it is telling me that there is no email association with Acrobat . Please help. Thank you.

    Try setting those preferences in Edit>Preferences>Email Accounts>Add account

  • Unable to send emails from any Apple devices

    Since BT made the changes to Yahoo mail i have had problems with sending emails from my ipad and iphone (IOS8). The only way that i can successfully send an email is to log onto my laptop and send from a windows platform. I have checked all of the settings which are correct and im stumped. I am continuing to receive mail so why cant i send mail? I have contacted the BT customer support to be told that they are not trained on ios platforms so they cant help! pretty gobsmacked with that reposnse tbh, anyone have any ideas?

    You may want to delete the email account and try setting it up again. Once you have deleted it, re-start your phone.
    Set it up manually and do not use the wizard.
    It is best to go through settings >mail contacts, calendars > add account… > don’t choose the BT or BTYahoo option, tap the ‘other’ option from the bottom of the list > Add Mail Account and enter the following details:
    Name – it can be anything you want, but usually your real name is preferable
    Address – your full BT Internet email address
    Password – your email account password
    Description – this can be used if you have more than one email account on the device but put something like ‘work’ or  ‘BT Internet
    Press “Next” and allow the verification (this may take a few minutes)
    On the next screen it will want you to input incoming and outgoing mail server details:
    Tap ‘IMAP’ at the top,
    Incoming mail server settings:
    Host name: mail.btinternet.com
    Username: your full  BT Internet email address
    Password: your email account password
    Outgoing mail server settings:
    Host name: mail.btinternet.com
    Username: your full BT Internet email address
    Password: your email account password
    Press ‘next’
    Slide the notes and mail to be ‘on’ and press ‘save’ in the top-right
    Check your email on the device and see if it is working. Try sending yourself a message and see if it arrives. If messages are not able to send do the following:
    Additional setting changes
    Go to Settings > Mail, Contacts, Calendars > tap your BT email account > a window will appear, tap on your email address > scroll down to the bottom of the window and tap where it says ‘SMTP’ > tap the primary server (which should be mail.btinternet.com) >make sure the following is on or enabled:
    ‘Use SSL’ should be ‘ON’
    Authentication should be ‘password’
    Server port should be ‘465’
    Press ‘done’ in the top-right

  • Send Email from my Ipod

    I have problem to send emails from my Ipod. I dont know, am i st...., But there is always message" Can not send email the connection to the outgoing server"null" failed.
    How can i fix this, please....

    I am now getting this "null" message when trying to send mails using my yahoo account. incoming mails still ok and have previously sent via touch on this account. have tried deleting and then reinstalling but no joy

  • I'm having with sending emails from my macbookpro

    I'm having problem with sending email from MacBook pro

    This also happened to me after update to IOS 6. So probably it is cause your email outgoing stopped to work.
    So check your outgoing settings and you probably will solve the issue.
    Hope it will be helpful

  • Problem with sending mail from SAP (ECC6.0)

    Hi guys!!
    I am facing problem in sending email from SAP to outlook.
    I've checked SICF and SCOT configuration and they are same as my other server thorugh which i am able to send the mail.
    I use SBWP to send the mail. after i send i do not get any error message, and when i check it in outbox, there is a yellow triangle in the status which means "send process still running" . so the sending mail is taking hours. i've set the frequesncy of my B/G job RSCONN01 to 10 minutes. i checked and this job is running successfully every 10 minutes.
    Please suggest what could be the possible reason and what can i do to solve this issue.
    Thanks,
    Sheetal Sharma

    Hi,
    First of all ask your IT (Exhchange) guy to check port number 25 is open or not for communincation, if not open ask him to open.
    you can check this yourself by doing TELNET
    steps to do telnet :
    logon to your application server,
    go to command prompt
    and type  TELNET <IP address of email server> 25
    If it prompts some message like this
    "exhange.domain.com Microsoft ESMTP MAIL Service, Version: 6.0.3790.18 30 ready at  Mon, 16 Jun 2008 16:25:41 +0300. "
    then it means your port 25 is open for communication.
    Regards,
    Abuzar.

  • TS4002 As of 4pm PDT, I cannot send email from Outlook via iCloud; my wife has the same problem.  Where/how do I report this problem?  Apple support seems to be available only if one is using a Mac product.

    Originating discussion

    Same problem with sending mail from Outlook 2010 (Win7 64 bit - started yesterday) and Windows Live Mail 2011 (Win7 32-bit).
    Server Error 334
    Server Response 334
    Server: smtp.mail.me.com
    Error code 0x80004005
    Protocol smtp
    Port 587
    SSL
    No issues sending iCloud email from the browser / web iCloud interface or from my Android phone.
    Not finding any of this in Google searches yet.

  • How to send emails from of pdf's generated by oracle reports

    I have several pdf documents , I want to email those pdf's . Please let me know how to send emails from oracle reports .
    Thanks,
    Previn

    I have integrated Oracle Reports with Oracle Portal and used the scheduling feature via portlets. We have reports that run every monday morning for management. For more info go to:
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
    OR
    I think if you set destype=mail, desformat=PDF, and desname=[email protected] that should also do the trick.
    Just be sure that you have put your mail server's IP address in the rep_<machine_name>.conf file located in your <oracle_home>/reports/conf directory. If this is not set up, the mail feature won't work.
    Martin

  • An advanced solution for sending email from Solution Manager (or CRM)

    Hi all,
    did anyone use blog "An advanced solution for sending email from Solution Manager (or CRM)"
    <a href="/people/emmanuele.prudenzano/blog/2006/08/03/an-advanced-solution-for-sending-email-from-solution-manager-or-crm:///people/emmanuele.prudenzano/blog/2006/08/03/an-advanced-solution-for-sending-email-from-solution-manager-or-crm
    I´ve got some problems:
    I tried to implement your solution in our SAP system. I´m new to ABAP and so it´s a little bit try and error for me.
    I´ve got some errors:
    In method EXEC_SMART_FORM_WITH_TEXT (from note 935670) :
    - method string_to_soli does not exist. There is a method xstring_to_solix.
    When I change to method xstring_to_solix
    - "L_STRING" is not type-compatibly to "IP_XSTRING".
    In method ZSM_ATTACH_PHIO_DOCU:
    - field DOCUMENT is unknown
    Regadrs
    Andy

    Hi all,
    did anyone use blog "An advanced solution for sending email from Solution Manager (or CRM)"
    <a href="/people/emmanuele.prudenzano/blog/2006/08/03/an-advanced-solution-for-sending-email-from-solution-manager-or-crm:///people/emmanuele.prudenzano/blog/2006/08/03/an-advanced-solution-for-sending-email-from-solution-manager-or-crm
    I´ve got some problems:
    I tried to implement your solution in our SAP system. I´m new to ABAP and so it´s a little bit try and error for me.
    I´ve got some errors:
    In method EXEC_SMART_FORM_WITH_TEXT (from note 935670) :
    - method string_to_soli does not exist. There is a method xstring_to_solix.
    When I change to method xstring_to_solix
    - "L_STRING" is not type-compatibly to "IP_XSTRING".
    In method ZSM_ATTACH_PHIO_DOCU:
    - field DOCUMENT is unknown
    Regadrs
    Andy

Maybe you are looking for

  • HT1933 hi team, i did paid for the app, but it doesnt work!

    Hi, could you guy instruct me how to know the transaction is succeed? I'm from Vietnam, i bought the plug-in in an application PS Express, itunes has charged for it , but i could not get it till now.

  • Game Center games reset after restore

    Okay, so after i have restored my iPhone 4 in iTunes(because my phone was lagging) everything was back to normal when i realized something was not right, my Game Center account was perfectly fine until i played Zombie Cafe and was shocked to see my c

  • Timeout during allocate / CPIC-CALL: ThSAPCMRCV

    We have the error: "timeout during allocate / CPIC-CALL: ThSAPCMRCV" when test our RFC "MDX PARSER". Windows 2003 x64 Server, SAP NetWeaver 7.0 Unicode. We read notes about this error (for example 1032461) but we have another problem. Our problem con

  • AC power adaptor - loose connection to pc?

     I have a Pavillion G7 notebook (model G7-1150US).  The connection of the AC adaptor (power cord) to PC appears faulty.  Initially wiggling cord in socket  where it connects to PC fixed  the problem and connection was made,  but eventually this did n

  • Cannot open Time Machine restore screen (Star Wars)

    I've got a Late 2006 iMac (amongst others) running Lion 10.7.5 which I backup to a NAS drive and for some reason I can't get into the Star Wars restore screen to access the backed up files. When I select Enter Time Machine it connects to the NAS whic