Problem in delevering an email to the recipent inbox using BEx Broadcaster.

Hi Gurus,
I was trying to send an e-mail with output format(HTML,PDF,EXCEL etc)  using BEx Braodcaster wizard - Whenever I press execute in BI 7.0 BEx Broadcaster wizard after giving e-mail adress, contents, and subject the session is closing and it displays the message.. 'Started to send document Zxxx.hmt' .
But finally the recipent is not getting an e-mail in to his inbox. It shows the status as sent but no mail is delevered with the attachment. Receipent e-mial address is correct and sender settings in SU01 are (ex. E-mail adrress, username, and Communication method - E-mail ).
I dont understand why e-mails are not delivering to the recipent inbox. Could you please guide me in this regard with your inputs ?
Thanks a lot in advance.
Regards,
Sasi

Hi,
call transaction SCOT and see if you have error or in transit messages under the internet node;
You can start the send process manually from here and if it works (ask your basis if it doesn't)...
Please note that you need to schedule a job to be executed on regular basis to send the emails... (menu view / jobs)
hope this helps...
Olivier.

Similar Messages

  • Sendin Email to the recipent list -Need correct FM

    Hi Guys,
                 I am having recipent list , body text ,Subject text  etc in my internal table .Now by using this i need to send Email to the recipent list with all details.Can any one give me the right function module which will do it ?
    Regards,
    Veera

    Hi,
    You can use the FM - SO_NEW_DOCUMENT_SEND_API1
    For example -
    DATA: wa_maildata TYPE sodocchgi1,         " Mail Subject
          it_mailtxt TYPE TABLE OF solisti1,        " Mail Body
          it_mailrec TYPE TABLE OF somlreci1,   " Recepient List
    * Fill Subject details
                wa_maildata-obj_name = 'Object Name'.
                wa_maildata-obj_descr = 'Subject'.
                wa_maildata-priority = '1'.
                wa_maildata-obj_langu = sy-langu.
    * Fill recepient details
                wa_mailrec-receiver = <email address>.
                wa_mailrec-rec_type = 'U'.
                APPEND wa_mailrec TO it_mailrec.
    * Call FM to send mail
          CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
            EXPORTING
              document_data        = wa_maildata
              document_type        = 'EXT'
              commit_work           = 'X'
            TABLES
              object_content         = it_mailtxt
              receivers                  = it_mailrec
            EXCEPTIONS
              too_many_receivers             = 1
              document_not_sent             = 2
              document_type_not_exist    = 3
              operation_no_authorization   = 4
              parameter_error                   = 5
              x_error                                = 6
              enqueue_error                     = 7
              OTHERS                            = 8.
    Hope it helps.
    Regards,
    Himanshu

  • After upgrading to Mountain Lion, when I reply to an email from the Global Inbox it incorrectly selects the reply to address.

    Ok, since upgrading to Mountain Lion, when I reply to an email from the Global Inbox it incorrectly selects just my main business email account, even if the email was sent to a completely different persoanl address. This use to work without issue in Lion. I have at least a half dozen accounts that all come into the "Global Inbox" and I never worried about what account I was replying from as it always matched the account the email was originally sent to.
    Now in Mountain Lion, this is broken and no matter what email I select it defaults to my main account and I have to remember to manually select the proper reply address from the drop down menu. So far the only way to avoid this is the keep all the separate account Inboxes showing and then selecting the account that I want to view. Then when I repy it is to the correct address, but having to do this makes the "Global Inbox" view completely worthless! If I have to select teh correct Inbox to get the proper reply address every time then what is the point of having a Global View?
    Why did you break this Apple?

    Hello,
    When you compose a message right click on the attachement and choose "View as Icon".
    I know there was a Terminal command to set all attachements as icons by default but never tried it :
    - You can also use the Terminal (in your Applications folder > Utilities) quit Mail, and type in the Terminal :
    defaults write com.apple.mail DisableInlineAttachmentViewing -boolean yes
    - To restore the original settings type :
    defaults write com.apple.mail DisableInlineAttachmentViewing -boolean no
    (source)
    Hope this will help.

  • When Pages has to update it asks me for a different email than the one I use, What do I do?

    When Pages has to update it asks me for a different email than the one I use, What do I do?

    Update it from that Apple ID, or delete and redownload it.
    (111534)

  • I would like a refund now. I bought this service this morning and it does not work as advertised. Reliable is not what I would use to describe this product. Cancel my subscription/refund my money and send me an email to the address I used when I signed up

    I would like a refund now. I bought this service this morning and it does not work as advertised. Reliable is not what I would use to describe this product. Cancel my subscription/refund my money and send me an email to the address I used when I signed up.

    Hi,
    I just checked your account.
    Your Adobe Export pdf service has been cancelled & refunded.
    Regards,
    Florence

  • Can't send emails if the recipent doesn't use my email provider

    Hi, I used to send emails to anybody witout any problem. Since three days ago I can send emails only to those that use my own email provider. Otherwise I got this message: "Desktop email program unable to submit message"
    Any ideas? Thanks.

    Go online and search for your email providers outgoing and incoming mail settings.  if you have yahoo for example, you would search yahoo incoming and outgoing mail server settings.  it will tell you what you need to have in your mail settings in order to get it to work as it should.

  • I have an iPhone 4s. My problem is I get email, but the email has no body. It will give the preview fine, but when I open the message there's nothing there. Help...please.  :)

    I get email notifications, and the email shows the correct preview, but when I open the email, there is no body... Nothing.  Please help.  Thanks! :)

    One last thing, neither itunes or iphoto recognize the iphone, whenever the ipone is connceted to any device, it is not read, its like plugging it into a wall.

  • Hi, i have problem to acces my email cause the pass

    Hi I have problmes to acces my email, cause the pass

    joshua takumi wrote:
    When I try and go onto to websites i use on my iPhone, my login details are not saved
    You are more likely to get help if you start your own post rather than posting in a barely comprehensible 4 year old thread about email.
    Best of luck.

  • How to receive emails of the same inbox from in a Weblogic Server cluster

    Hi All,
    I have an application running on WebLogic Server with 6 instances. Many requests for the application come from Email. We already set up an email account that will be used by all clients to send email to. But the problem is that the email account inbox can only be opened for reading by a single connection, unlike a typical database. Currently I can only deploy the email reading service on a single server instance, this will effectively create a single point of failure and unbalanced load. What's the best way to read from the same inbox from multiple servers? I am thinking developing something using a database table, sort of leasing, whoever locked the table own the lease and can connect to the email server, but this is pretty hard to implement correctly in all circumstances.
    I did an intensive search on the internet, but couldn't find anything.
    I appreciate your help very much.
    Thanks
    Tao

    Hi Aditya
    By default, OPA 10.4 will collect the minimum amount of information needed to answer the goal of your interview and then display the answer and the reasons for the answer.You can change what appears on these screens within OPM itself (you don't need to change those settings).
    So I would:
    - add a Summary Screen to your project (if you haven't already)
    - add <your goal attribute> to your summary screen. This will display as a link if the goal is unknown and as a sentence showing the outcome and a Why? link when it is known. 
    - add a label to the summary screen, providing information about the outcome (eg "Congratulations you are eligible") or simply show the value of the outcome (eg Your total deduction is %deduction_amount%). 
    - use visibility rules to control which items to display at the start/end of your interview (in your case, maybe hide your goal once it is known and show your label once your goal is known). See OPA help topic "Tutorial: Hiding and displaying summary screen elements".
    The Inferred Brand Discount sample supplied in the OPM install provides an example of this (see Help topic Sample Rulebases for information on how to open this).
    Hope that helps,
    Fiona

  • Problem closing an ActiveX created with the bridge and used in a scada.

    Hi all,
    I cretaed an ActiveX (using the bridge) to be used in a scada software. I inserted the activex in a panel and it opens and work properly when the panel is open. The problem is that when I close the panel, the scada doesnt free the memory. Is it supposed to do free it or is it my bussines? Should or can I do it by calling any method, function? Any suggestion?
    Thanks!
    Bobby

    I guess that on exit scada does not release resources. Try the tool at
    http://www.simtel.net/product.php[id]60701[sekid]0[SiteID]simtel.net

  • How to keep the forwarded email in the hotmail inbox?

    After I received an email in the Hotmail.com, I selected the Forward under the Reply. After I forwarded the email, the original email was no longer in the inbox. I checked the Options before forwarding the email. There is no Mail option. Can you tell
    how to save the forwarded email in the Hotmail.com inbox? It does not make sense the IE9 has put the Forward under the Reply. Thank you for your answer.

    Hi,
    Do you use Outlook Client to setup the Hotmail Account? If no, I think it's purely a Hotmail issue, your inbox might be set to be viewed in a conversation threading manner. I would like you to follow the steps below to show your inbox messages individually:
    1. Sign in to your account.
    2. In the upper-right of the Outlook window, click the Options icon (gear icon).
    3. Click More mail settings.
    4. Under Reading email, click Group by conversation and pre-load messages.
    5. Select Show messages individually.
    6. Click Save.
    After doing the above steps, go back to your inbox to check the result.
    If you need more assistance on this issue, please refer to Outlook.com Forum:
    http://answers.microsoft.com/en-us/outlook_com
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Melon Chen
    TechNet Community Support

  • My phone does not recieve emails in the message inbox

    i have a BB pearl 9105 and I can not recieve emails in my message inbox.  My previous model this was set up automatically.  I have tried disabling my firewall and enabling all options I can find on the device can any one help?
    ROB

    Hi and Welcome to the Community!
    Well, are you receiving them at all? To some other folder? Or not at all? I hate to guess...but...if your device OS has the option, you can dictate what shows in Messages and what has separate icons:
    Homescreen > Messages > > Options > (Main Message List Settings) or (Inbox Settings) or (Inbox Management) > uncheck/check what you want to suppress/show in Messages
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • When i make search in my old email, when i want to open some of them for a lot i cant. For some no problem. There are emails from the same folder in same dates.

    I search in my email something. When want to open the content from the emails, for some i can but for other i cant.
    Same type of emails, same date, same attachments.

    If you think getting your web pages to appear OK in all the major browsers is tricky then dealing with email clients is way worse. There are so many of them.
    If you want to bulk email yourself, there are apps for it and their templates will work in most cases...
    http://www.iwebformusicians.com/Website-Email-Marketing/EBlast.html
    This one will create the form, database and send out the emails...
    http://www.iwebformusicians.com/Website-Email-Marketing/MailShoot.html
    The alternative is to use a marketing service if your business can justify the cost. Their templates are tested in all the common email clients...
    http://www.iwebformusicians.com/Website-Email-Marketing/Email-Marketing-Service. html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • Strange noise problem with music layer after replacing the music file using script in CS6

    Hey guys,
    I got a strange problem. Sometime when I import a music file, or replace a music footage with another music file using the "replace()" or "importFile()" method, the music layer added one second noise at the beginning. like this,
    Does anyone know what's going on here?
    I'm using After Effects CS6 windows Server 2008 64bit.
    Thanks in advance!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Hi Myleniu,
    Thanks for your replay. Actually, it doesn't matter what makes up my comp, this problem just randomly happen when I render any comp. For example, I have a comp named "noise", I run a script to replace the music then render it, I use a "for" loop to do this 5 times and the music noise problem just happen one time.
    I'm starting to think that win server might be the problem.

  • I need to provide staff with an editable document that can be filled in and emailed to the office and used over and over

    I have an iPad with version 7.1.1. I want an document/PDF of our supply formulary to keep on the iPad so that I can edit and email orders to my office. Inexpensive is good.

    Hi Suzette,
    Once the document is digitally signed it will not allow further changes.
    You might want to check the solution mentioned in the thread: Re: Convert editable PDF to read-only when sent in an email - JavaScript
    Regards,
    Rave

Maybe you are looking for

  • How to populate a table based on a row selection from another table.

    Hi, i just started to use ADF BC and Faces. Could some one help me or point me a solution on the following scenario . By using a search component , a table is being displayed as a search result. If i select any row in the resulted table , i need to p

  • Emailing PO script to both Purchasing Group and Vendor

    Hello All, Is there a way to email PO SAP script to both Purchasing Group and Vendor? i searched the form and endup with no luck. Regards, Sree

  • Discount/surcharge condition type

    Hello, would please advise me how to resolve the following situation. I have two condition type in pricing procedure. one of them is PR00 a quantity base cond. type. for base price calculation. and the second one is a discount. I would like to preven

  • ESS font issue

    hi One of the users complains that as soon as he logs on to Portal ESS/EBP, his font is so small that he cannot read.  It only happens to this single user.  Is it some user specific setting somewhere.  Can somebody help me. thanks K

  • IPhoto 9.1: Nothing Short of Perverse!

    Such an absolutely stupid set of options of mailing pics from within the new iPhoto '11! Anyway... Just one genuine problem (not just an annoyance): When I set up the iPhoto mail program to utilize my existing e-mail server... after clicking "Send",