Sending to multiple recipients in bursting

hello,
i have a simple question, i use bi publisher 11.1.1.5.
I want to burst to multiple recipients,
it works for one recipient
i set PARAMETER1 in the burst definition to '[email protected],[email protected]'
i try also with a semicolon '[email protected];[email protected]'
i receive an error
[INSTANCE_ID=dev2008.1317907403748] [INSTANCE_JOB_ID=1340]::
Erreur lors de l'obtention des données de l'état
[INSTANCE_ID=dev2008.1317907403748] oracle.xdo.servlet.scheduler.ProcessingException:
Erreur lors de l'obtention des données de l'état
[INSTANCE_ID=dev2008.1317907403748]
at oracle.xdo.enterpriseScheduler.bursting.BurstingJobProcessor.getControlXML(BurstingJobProcessor.java:336)
at oracle.xdo.enterpriseScheduler.bursting.BurstingJobProcessor.execute(BurstingJobProcessor.java:206)
at oracle.xdo
what is the correct syntax for this ?
best regards
jean marc

Hi, you can't concate one with more e-mail....
use one query for one email, and union them.

Similar Messages

  • Message error when sending to multiple recipients/contacts

    Ever since 3.0 I can't send messages to multiple recipients. I'm on Optus in Australia using a 16gb 3G.
    Anyone else having this problem?
    Any fixes?

    Actually, just for an update, if I turn off MMS I can send to multiple contacts. But with MMS on, I can't. Am I the only person having this issue?
    I've tried a restore, and set-up as new phone. But still having no success.

  • Send to multiple recipients not in address book

    FAQs about sending an email to multiple recipients seem to talk about using names already in one's address book to create a group. I have a text file that contains about 1000 addresses and want to send a one-time message to all of them (with each designed as BCC). How can I move those addresses all together -- or a big batch at a time in several messages -- without involving my address book?

    My suggestion is take off your blinkers. DOC is not a text file. It is a Microsoft word document file. The only chance you have of that being understood by a mail program is if you buy Microsoft Outlook.
    Otherwise, become familiar with CSV files (Comma Separated Values) http://en.wikipedia.org/wiki/Comma-separated_values. CSV permeates the entire data interchange process, especially address books, but including database data and spreadsheets. CSV files are text files. Real ones! I talk about them a little here. http://thunderbirdtweaks.blogspot.com.au/2013/03/importing-csv-files.html
    If you have Excel installed and double click a CSV file Excel will open the file. I use LibreOffice, but that does not change the fundamentals of the CSV data format.
    So I suggest you save your file in Word as "Plain text" and open in in Excel and hope Excel can make heads or tails of it.

  • Email stuck in Outbox when sending to multiple recipients.

    I am using Outlook 2010.  When I forward an email to multiple recipients it gets stuck in the Outbox.  I have reduced the number of recipients and the same email will sale on through.  I am getting an error code 0X8DE00006 and MS disavows
    any knowledge of it.  Is there a cure or do I have to send the forward email several times to small groups?

    Hi,
    From your description, I recommend you check if you limit the number of recipients you can have on an email.
    If yes, please increase the value and check the result.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Mail stalls on sending to multiple recipients

    Hi All
    I'm having a problem sending mail messages to multiple recipients. When I try sending, the program shows "Sending..." with a spinning wheel, and the activity viewer shows "Delivering Message/Sending recipients.". However, nothing seems to happen. The message send isn't just very slow - I don't think it's making any progress.
    Anyone got any ideas?
    FWIW, my address book is rather large with 628 names and a dozen or so groups. Could this be part of the problem? It got worse today just after I created a new group with about 60 names in it.
    I've also done the usual things: run the maintenance scripts, etc, etc. I'm directly connected to the cable modem by a cable link with the firewall turned off - nothing helps.
    Thanks in advance
    Bob

    You may have already checked this, but whenever I cannot send a message to a large group, I often find an incorrect email address. Sometimes I get an error message stating that the server cannot be used. In order to trouble shoot, you may want to send the messages one at a time and see if they go that way.
    We have users with much larger address books, so I doubt that is the issue, but I have never tried to send to a group as large as 60 people.

  • Sending to Multiple recipients

    I heard that you can only send a certain number of emails a week. I would like to send the same message to 60 people and need to know if I do this will my outgoing mail still be sent. Thanks, JEan

    I regularly send single messages to >85 recipients so there should be no limitation in Mail to send to 60. If there is such a limitation it could be coming from your ISP - best check with them.

  • When sending an email how do I set the address when sending to multiple recipients so that each recipient only sees his or hers address and not everyone else

    I would like so send emails to multiple addresses yet I want each recipient to only see his or her address

    This question isn't related to Mozilla Firefox. However, I can still answer your question. In the 'to' field, put your own e-mail address and put each recipient's address in the BCC field. This way the only address seen is your own.
    Please try to post in the appropriate forum next time. (Thunderbird, Gmail, etc.)

  • Mail will not send to multiple recipients

    Today I imported email addresses from my Hotmail account to a CSV file then imported into my Contacts which has worked fine (it seems). Then I tried to write an email to all those contacts informing them that I was now using the .me email address. It will not do it - it comes up with the message that the address 'does not appear to be a valid email address' although it is (for each name, one by one). After that, it tells me that 'the stmp did not recognise the following recipients'. The weird thing is that the email will send when just sent to individual recipients. Even weirder still, at first it wouldn't send to more than one then gradually it let me send up to four recipients. It is also quite slow. Just to add to the confusion, I seem to be able to do it when logged into mobileme.
    I really want to use my .me account but not if it is going to be totally unstable. Any solutions? I'm going crazy.

    Thank you for coming to my rescue! I've checked the email addresses and they're fine... at least they are fine when I look in my contacts. It would appear that when I start writing the address in the 'to' space and it auto-completes then it works. However, if I click on the address book icon in mail then start double clicking on addresses in there, I come up with a problem. I think I might have come up with where the problem is - when the error message (address not valid) shows, it tells me which addresses are not recognised - I clicked on those addresses (in a saved draft) to check them out and when I do, they only show the recipient's name but not their email address - the ones not named as having a problem show the email address. I'm baffled as all the contacts were imported the same way and as when I go into my Contacts, the details of the problematic addresses look exactly the same as the ones without issues... so so strange!

  • Sending to multiple recipients with javamail

    Hi all,
    Having a problem sending an email to more than one recipient.
    My code section is as follows:
    while(st.hasMoreTokens())
    String nt = st.nextToken().trim();
    to = new InternetAddress(nt);
    message.setRecipient(Message.RecipientType.TO, to);
    message.setText(body);
    message.addHeaderLine("Content-Type: text/html; charset=\"iso-8859-1\"");
    Transport.send(message);
    It sends to the first email address but doesn't send to any of the others. Does anyone have any clues for me?
    cheers
    James

    Thanks for your reply trungdh but it was a domain
    problem that I was having after all. It actually
    works ok now. The problem with using the arrays is
    that the receiver gets all the other emails in their
    to box. I only want one email address in there and to
    do that you have to send to each in some form of
    loop.
    cheers, and have a good one!
    JamesHi,
    I am also looking for a something so that the receivers of my email should not be able to see the 0ther email addresses. Can you please guide me through that how should i do that.
    Thanks in Advance
    Hemant

  • Use ";" as email delimiter when sending to multiple recipients

    Hello out there. We currently have a Banner system in place that allows faculty to do a mass email to their classes. The only catch is that they use a semicolon as the delimiter between email addresses and Apple Mail doesn't seem to recognize this.
    Can anyone help me find a way to enable the use of the semi-colon as a delimiter?
    Thanks.

    Perhaps I could be barking up the wrong tree here,
    but I'm pretty sure that separating email addresses
    with a ";" has been a long supported feature in a lot
    of different Mail clients over the years. If
    anything, I've had nothing but trouble with using ","
    as a delimiter.
    Well, Mail won't do it obviously, and I tested a couple different web mail clients that also won't recognize a ';'. I also looked at the RFC that defines the format for e-mail, and although I'm not particularly good at reading those documents, it does seem to say that the ',' is the appropriate delimiter between recipients.
    However, they use a ";" delimiter
    as Outlook and Entourage do not respect "," correctly
    without tweaking.
    I find that surprising, as I've used all manner of methods for accessing e-mail over the years -- everything from extremely simple Unix mail readers to clients like PowerMail, MailSmith, Eudora and Mail to web mail interfaces -- and in all the interfaces that I have used, the comma is the appropriate delimiter. If Outlook and Entourage truly don't do the comma without extra work, I have only one explanation: Microsoft.
    So - is there some way to add another delimiter that
    Mail will recognize in email lists (in the To: Cc: or
    Bcc: box)?
    I assume this is something you want automated, and I also am assuming that Banner is producing the lists of addresses. How do they get from Banner to Mail? If you could insert an AppleScript in that process somehow for your Mac users, you could automatically replace all ';' characters with ','.

  • Sending PO as PDF to multiple recipients

    Hi,
    I have to out put the PO as pdf and send it to mulitple recipients.
    I am taking the standard program and copied to z program and i did some modifications in it.
    i am able to send the PDF as attachment in a mail and its working fine.
    Now requirement enhanced... they were asking to me to send it to multiple recipients in CC.
    Can anyone guide me how to do it... where should I pass these ID's so that the mail can send to multiple recipients.
    How to use the open form close form sequence. If I call the Open form 2 times does it work.. if so how to use the sequence can anyone guide me plz

    Sreejith,
    I really appreciate your valuable time first of all
    here i am posting piece of code... where exactly i am passing the email id to get the TO mail... where as CC how to write the same logic
    CALL FUNCTION 'Z_OPEN_FORM'
    EXPORTING
    APPLICATION = APPLICATION
    ARCHIVE_INDEX = ARCHIVE_INDEX
    ARCHIVE_PARAMS = ARCHIVE_PARAMS
    DEVICE = DEVICE
    DIALOG = DIALOG
    FORM = FORM
    LANGUAGE = LANGUAGE
    OPTIONS = OPTIONS
    MAIL_SENDER = MAIL_SENDER
    MAIL_RECIPIENT = MAIL_RECIPIENT    <------ <b>Single To ID 
                                               is passing here</b>
    MAIL_APPL_OBJECT = MAIL_APPL_OBJECT
    RAW_DATA_INTERFACE = RAW_DATA_INTERFACE
    FAX = ZALPHA-TELFX_1
    COMPANY = ZALPHA-NAME1_1
    CONTACT = ZALPHA-TEXT63
    COMMENT = NAST-TDCOVTITLE
    USER1 = ZALPHA-TEXT62
    USER2 = NAST-OBJKY
    *{ REPLACE SBXK901084 4
    OWNER = SY-UNAME
    OWNER = WRK-OWNER
    *} REPLACE
    EMAIL = ZALPHA-TEXT61
    COVER = ZALPHA-TEXT64
    USERID = ZALPHA-TEXT65
    IMPORTING
    LANGUAGE = LANGUAGE
    NEW_ARCHIVE_PARAMS = NEW_ARCHIVE_PARAMS
    RESULT = RESULT
    EXCEPTIONS
    CANCELED = 1
    DEVICE = 2
    FORM = 3
    OPTIONS = 4
    UNCLOSED = 5
    MAIL_OPTIONS = 6
    ARCHIVE_ERROR = 7
    INVALID_FAX_NUMBER = 8
    MORE_PARAMS_NEEDED_IN_BATCH = 9
    SPOOL_ERROR = 10
    OTHERS = 11.
    IF SY-SUBRC <> 0.
    Raise the corresponding exception
    CASE SY-SUBRC.
    WHEN 1. RAISE CANCELED.
    WHEN 2. RAISE DEVICE.
    WHEN 3. RAISE FORM.
    WHEN 4. RAISE OPTIONS.
    WHEN 5. RAISE UNCLOSED.
    WHEN 6. RAISE MAIL_OPTIONS.
    WHEN 7. RAISE ARCHIVE_ERROR.
    WHEN 8. RAISE INVALID_FAX_NUMBER.
    WHEN 9. RAISE MORE_PARAMS_NEEDED_IN_BATCH.
    WHEN 10. RAISE SPOOL_ERROR.
    WHEN OTHERS. RAISE OTHERS.
    ENDCASE .
    ENDIF.
    Any suggestions please

  • How to Improve Design for HTML, Plain Text and Multiple Recipients?

    Hello there,
    JavaMail programming is so fun! I first start off mixing the JavaMail code inside a servlet and then refactored it to two separate classes.
    Mailer is the independent class which uses JNDI to look up config parameters, sends e-mails, and then closes the connection with the protocol.
    public class Mailer {
         private Session mailSession;
         protected void sendMsg(String email, String subject, String body)
         throws MessagingException, NamingException {
              Properties props = new Properties();
              InitialContext ictx = new InitialContext(props);
              Session mailSession = (Session) ictx.lookup("java:/Mail");
              String username = (String) props.get("mail.smtps.user");
              String password = (String) props.get("mail.smtps.password");
              MimeMessage message = new MimeMessage(mailSession);
              message.setSubject(subject);
              message.setRecipients(javax.mail.Message.RecipientType.TO,
                        javax.mail.internet.InternetAddress.parse(email, false));
              message.setText(body);
              message.saveChanges();
              Transport transport = mailSession.getTransport("smtps");
              try {
                   transport.connect(username, password);
                   transport.sendMessage(message, message.getAllRecipients());
                   Logger.getLogger(this.getClass()).warn("Message sent");
              finally {
                   transport.close();
    }MailController is just a simple Java servlet where a Mailer object is instantiated and a String is passed inside the Mailer.sendMsg() method.
    public class MailController extends HttpServlet {
         /** static final HTML setting for content type */
         private static final String HTML = "text/html";
         myapp/** static final HTML setting for content type */
         private static final String PLAIN = "text/plain";
         public void doGet(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException {
              doPost(request, response);
         public void doPost(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException {
              response.setContentType(PLAIN);
              PrintWriter out = response.getWriter();
              String mailToken = TokenUtil.getEncryptedKey();
              String body = "Hello there, " + "\n\n"
                        + "Wanna play a game of golf?" + "\n\n"
                     + "Please confirm: https://localhost:8443/myapp/confirm?token="
                     + mailToken + "\n\n" + "-Golf USA";
              Mailer mailer = new Mailer();
              try {
                   mailer.sendMsg("[email protected]", "Golf Invitation!", body);
                   out.println("Message Sent");
              catch (MessagingException e) {
                   e.printStackTrace();
              catch (NamingException e) {
                   e.printStackTrace();
    }Have some design issues...
    If you can notice, I manually place the body of the e-mail (as a String) from inside the client (in this case, a Java Servlet). Also, I manually have to switch the content type inside the doPost().
    Question(s):
    (1) How can the Mailer class be set up, so it can send both HTML and plain text messages?
    (2) How can the Mailer class be structured to send e-mail to multiple recipients or one user?
    (3) Would both of these features / actions require writing two overloaded methods for sendMsg()?
    Would appreciate it if someone could help me...
    Happy programming,
    Michael

    Okay, I came up with this single method:
    Mailer.java:
    public class Mailer
         private Session mailSession;
         protected void sendMessage(String email, String recipient, String subject,
                   String plainText, String htmlText)
            throws MessagingException, NamingException
              Properties props = new Properties();
              InitialContext ictx = new InitialContext(props);
              Session mailSession = (Session) ictx.lookup("java:/Mail");
              String username = (String) props.get("mail.smtps.user");
              String password = (String) props.get("mail.smtps.password");
              MimeMessage message = new MimeMessage(mailSession);
              InternetAddress from = new InternetAddress(email);
              InternetAddress to = new InternetAddress(recipient);
              message.setSubject(subject);
              message.setFrom(from);
              message.addRecipient(Message.RecipientType.TO, to);
              Multipart multipart = new MimeMultipart();
              BodyPart messageBodyPart = new MimeBodyPart();
              messageBodyPart.setText(plainText);
              multipart.addBodyPart(messageBodyPart);
              messageBodyPart = new MimeBodyPart();
              messageBodyPart.setContent(htmlText, "text/html");
              multipart.addBodyPart(messageBodyPart);
              message.setContent(multipart);
              Transport transport = mailSession.getTransport("smtps");
              try {
                   transport.connect(username, password);
                   transport.sendMessage(message, message.getAllRecipients());
                   Logger.getLogger(this.getClass()).info("Message sent");
              catch (Throwable t) {
                   Logger.getLogger(this.getClass()).error("Unable to Send Message");
                   t.printStackTrace();
              finally {
                   transport.close();
    }Created a MailController class to instantiate and run the Mailer class.
    public class MailController extends HttpServlet {
         // doPost() method()
         public void doPost(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException {
              response.setContentType(PLAIN);
              PrintWriter out = response.getWriter();
              String mailToken = TokenUtil.getEncryptedKey();
              String plainText = "Hello there, " + "\n\n"
                        + "I wanna invite you to a game of golf!" + "\n\n"
         + "Please confirm: https://localhost:8443/myapp/confirm?token="
                        + mailToken + "\n\n" + "-Golf USA";
              String htmlText = "<H1>Golfer Challenge!</H1>";
              Mailer mailer = new Mailer();
              try {
                   String from = "[email protected]";
                   String recipient = "[email protected]";
                   String subject = "Golf Challenge";
                   mailer.sendMessage(from, recipient, subject, plainText, htmlText);
                   Logger.getLogger(
                               this.getClass()).info("Message Sent to: " + recipient
                                                              + " from: " + email);
                   out.println("Message Sent to: " +
                                             recipient + "\n" + " from: " + email);
              catch (MessagingException e) {
                   e.printStackTrace();
              catch (NamingException e) {
                   e.printStackTrace();
    }Question(s):
    (1) How come the Multipart Alternative only supports HTML for the second part? Can I specify it to send HTML first and plainText second?
    (2) How would I send in multiple recipients? Would I have to pass in an array reference (surrounded by a for loop) inside sendMessage() as follows:
    mailer.sendMessage(from, myArray, subject, plainText, htmlText);
    Thank you for all of your help!
    -Michael                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • SMTP Emai to multiple recipients

    I'm using the "SMTP Email Send Message (Small).vi" (Labview 7.1) to send alarm messages to my cell phone using my [email protected]  I'm using the verizon mail server "smtpsp.vtext.com".  I am having no trouble sending the message to one recipient, but cannot send to multiple recipients.  I've tried seperating the second email address with commas, semi-colons and even a space.  With the following in my recipient text input [email protected],[email protected] or [email protected];[email protected] I recieve the following error...
    SMTP:
    501 #5.5.2 syntax error 'RCPT TO:<[email protected],[email protected]>'
    If i seperate with a space or a return, i only send to the first recipient.
    In a previous post, i see that user_1 suggests the comma, but it's definately not working for me...
    http://forums.ni.com/ni/board/message?board.id=170&message.id=261961&query.id=48976#M261961
    any ideas?

    Hi andyh,
    did you read the context help?
    May be a solution for you could be to call this vi in a loop.
    Hope it helps.
    Mike
    Message Edited by MikeS81 on 05-23-2008 02:48 PM
    Attachments:
    Unbenannt1.PNG ‏8 KB

  • Can't send emails to multiple recipients any more?

    Yesterday I had to send an email to some 30 other people (I only do this occasionally).
    It refused to go and I received this error message:-
    I have several email accounts but each one was the same.
    At that time I could not even send single emails but incoming emails were unaffected.
    Later in the day I received this email from my ISP mail account.
    Your emails may be blocked – please confirm your alternate BT Yahoo! Mail addresses
    Dear Customer,
    You’ve received a ‘553’ error message because we’ve upgraded your BT Yahoo! Mail account security to help protect against ‘spoofing’ – when people use alternate email addresses to disguise the real sender, possibly to commit fraud.
    What you need to do
    We need you to take a few minutes to confirm each of the BT Yahoo! Mail alternate email addresses you use are genuine. If you don’t, you might get more ‘553’ error messages and have problems sending emails. Just log in and follow these simple steps. We don’t ask for any personal information.
    This is rubbish and I had a similar one last year which I ignored, as the simple steps were far from simple, and the following morning all was back to normal.
    So I ignored this email and tried again this morning.
    I was still unable to send emails to multiple recipients but now I can send single emails OK!
    Any ideas what is going on?
    Is it Mail's fault or my ISP's?

    From the error message, it looks like there was a problem with at least one of the addresses ("NONE"). It is possible that a bad address is in the list you tried to send to.
    I don't know anything about BT Internet, so I can't confirm the authenticity of the email you received.
    You should be able to log into your BT account directly from the web without using any links sent in the email.
    The email also seems to indicate you used an alias as the reply-to (from) email address.
    You didn't mask out the username for your smtp server and it is definitely different from the from account. This may all be normal, but it does tend to match what the email is telling you.

  • Sending Text Messages to Multiple Recipients

    Is there a way to send a text message to multiple recipients? I've been trying to figure it out for a while. I feel like this is a feature that apple couldn't have just forgotten! Anybody know?

    Not supported with the iPhone - at the present time anyway with no indication that it will be supported in the future.
    Apple is known for doing research so right, wrong or indifferent, I doubt this is something Apple forgot to include.
    The only thing you can do is provide Apple feedback via the iPhone feedback link.

Maybe you are looking for

  • Itunes 7 and USB port problems

    I recently upgraded to Itunes 7.0.2, and have been trying to get it to work with my 60GB Ipod Photo. With Itunes 6, I could connect my Ipod via USB with no problems. With Itunes 7, my Ipod will connect perfectly fine. When I attempt to update my Ipod

  • How to enable History changes in VL02N

    Hi I'm a bit confused for I feel like asking a basic question but I have'nt founf the answer after a lon search on ggogle ans SCN. The question is : how to enable histroy changes display on VL02N or VL03N ? I am sure that change log is on because som

  • Landed Costs and Warehouse Transfer Costs

    We have an issue that Iu2019m sure B1 can handle, but Iu2019m not sure how to go about it.  When we have a shipment of items come in from overseas, we enter in a landed costs document so that those shipping costs are appropriately distributed as prod

  • Line attributes "stick"

    hi - I'm another Freehand holdout. 'nuff said. I'm using Freehand MX 11.0.2 on an iMac running 10.5.7 4 GB RAM. Anyway... I've found that I can't change the attributes like reducing the width of a line or removing (previously assigned) arrow points o

  • WAAS reboot question

    Hi Team, I would like to ask you one question regarding WAAS boot procedure. /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:9