Send the same   message to two receivers with some  time difference..

Hi
  I want to send the same message to Two receivers  with the slight time difference.. becuase  but not at the same time.. if the same time means.. just we can  specify the two receivers in the one receiver determination..
   but  if i want to send the   same message to Two  reveivers with the time difference means..(after sending the  message to first receiver.. after  some time gap.. i need to send the  message to second receiver..
  this type of scenarios how can we do.. is it possible to do with out BPM...  please suggest me the solution..
Thanks
Jain .P

Hi Jain,
With BPM you can easily do it.
i am giving you the steps:
1)first add a receive strep to get your message
2)then, put a receiver determination step with a multiline receiver container element assigned to its Receivers property.
3)then, put a block in dynamic mode(ie. ForEach/ParForEach mode) and assign the multiline receiver container element to its multiline element and assign a simple(single line) receiver container element to its current line property.
4) add a send step within the block, choose Receivers List in its Receiver From property and choose the current line receiver element in its Receivers property.
5) then add a wait step in the BPM, in its type select Wait Specified Time Period and then mention the duration in your desired time unit.
**Reward points if helpful...
--Sankar Choudhury

Similar Messages

  • How to send the same message to two SMTP servers

    hi,
    I need to send a message to two different SMTP servers.
    I want to avoid the creation of new MimeMessage with a new Session.
    the only way I've found was to keep a reference to the Properties instance that was used in the Session creation, and modify its "mail.smtp.host" property.
    Is there another way? I must be missing something.
    thanks,
    ofer

    hi,
    I've already found the solution, so I'll post it here.
    first I'll explain the purpose:
    I needed to send the same message to a normal email server, and (for some of the recipients) to a special SMTP server that is on a different machine.
    the following code demonstrate the solution.
    thanks for your help.
    ofer
    ----------code---------------
    public class MultipleSendTest {
    private final static Session server1 = createSession("somesmtp_server.com");
    private final static Session _server2 = createSession("another_smtp_server.com");
    public static void main(String args[]) throws Exception {
    //create the message
    MimeMessage m = new MimeMessage(_server1);
    m.setText("body text");
    m.addRecipients(Message.RecipientType.TO, "[email protected]");
    m.setFrom(new InternetAddress("[email protected]"));
    //send
    send(m, _server1);
    send(m, _server2);
    private static void send(MimeMessage message, Session session) {
    //for logging only
    String host = session.getProperty("mail.smtp.host");
    try {
    Transport transport = session.getTransport("smtp");
    transport.connect();
    transport.sendMessage(message, message.getAllRecipients());
    System.out.println("sent to " + host);
    transport.close();
    } catch (MessagingException e) {
    System.out.println("failed to send to " + host);
    private static Session createSession(String host) {
    Properties properties = new Properties();
    properties.setProperty("mail.smtp.host", host);
    return Session.getInstance(properties);
    ----------code---------------

  • Using an IDOC sending the same message in two different format

    i have a message which i have to be sending from one SAP system to another, but the message should be split into 2 different formats using mapping and send to one receiver where the 2 messages are segregated using some ID number. here we will be using IDOC for sender.
    kalyan.

    Hi,
    I think you can go for the  multimapping(1:2) and not exactly splitting the message but mapping it one source to two different targets that need to be sent to one receiver...
    Just see these blogs on that..
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    /people/venkataramanan.parameswaran/blog/2006/03/17/illustration-of-enhanced-receiver-determination--sp16
    You need to go for enhanced interface determination.
    Thanks,
    Vijaya.

  • Can we send the same message two different recievers with sequence

    Hi,
    i am sending the same message to two different receviers without using BPM.
    now i require to send with sequence.is it possible without BPM?

    Hey
    There are two options for this
    First one is to use Wait step in BPM as other experts suggested.
    Second one is a dirty way around,what you can do is send the second message to a dummy receiver first(may be a file on your XI server),then design one bypass scenario which will pick up the file after a specified time interval(give the poling interval you want).
    i would go for BPM coz its pretty straight forward,but in case you want to avoid BPM then u can use the second approach
    for bypass scenario,have a look at the following
    How to send any data (even binary) through XI, without using the Integration Repository

  • My mac mail on just keeps sending the same messages even after deleted and shows thousands of emails supposed to be coming in

    My mac mail on just keeps sending the same messages even after deleted and shows thousands of emails supposed to be coming in

    If you have a backup, you can restore the e-mails. Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder. Library/Mail/V2.
    Thanks to leonie for some information contained in this.

  • [svn:fx-trunk] 13501: Bug: BLZ447 - AMF3 Deserialization: Wrongly counted reference ID of duplicated String when in the same message there are Strings with only wildcards

    Revision: 13501
    Revision: 13501
    Author:   [email protected]
    Date:     2010-01-14 06:01:23 -0800 (Thu, 14 Jan 2010)
    Log Message:
    Bug: BLZ447 - AMF3 Deserialization: Wrongly counted reference ID of duplicated String when in the same message there are Strings with only wildcards
    QA: Yes - please keep an eye on AMFX (HTTPChannel) tests.
    Doc: No
    Checkintests: Pass - except the usual 4-5 tests that time out on my machine.
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/amfx/AMFXDecoder.as

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • HT4059 I cant download a previously purchased book ...yes I tried tapping the cloud. It just send the same message.

    I purchased a book from itunes. I downloaded the preview book but it wont let me dounload the whole book. I keeps telling me I have already purchased and to go to purchases and tap download. I did, and taped the cloud. It keeps sending me back to the same message. What can I try now???

    Welcome to the Apple Community.
    You'll need to delete the partial book first.

  • Sending the same data to multiple receivers.

    Hi,
    In 7.1, I did a simple file-to-file scenario with mulitple receivers.I used only 1 Rcvr Det.(included multiple business components) and 1 Interface Det. without BPM and it works.I would like to know if there's any other way to send same data to multiple receivers without BPM and/or the approach used by me.
    Thanks,
    Vishal

    Thanks all for your replies. I did multimapping as suggested by couple of you and it works. Since it is required to send to 7 or more systems and the no. of fields to be mapped is huge, multimapping is time-consuming. So I would like to know if there's any other approach.
    @Ravi: can you please explain with more details regarding the approach suggested by you?
    Can someone explain why and/or how a mapping executes multiple times if we have multiple receivers getting the same data?
    And if there's any way to check(For Ex: Moni) if the mapping executed multiple times?
    Thanks in adavnce,
    Vishal

  • Every time I send a text, it sends the same message twice

    I have had my phone for about a week now and every time I send a text to someone it sends the message twice.
    I have no idea why this is happening. What can I do to stop it from sending the message twice?

        Hi samglow!
    Let's take a look into this, we want your messages sent only once. Let me ask...are you using a 3rd party application for messaging, or the app that came with the phone? Are you receiving messages just once, or more than once? What's the software version of your device?
    To troubleshoot, please remove the SIM from the device, and power off/on. Then, test again.
    Thanks!
    Christina_VZW
    Please follow us on twitter @VZWSupport

  • N96 repeatedly sending the same message

    My N96 clearly has a serious issue, well its serious to me given the huge amount of money it is costing me to send a text message right now. When I send  a message, it continues to keep sending it over and over and over and over again, every few minutes, despite the recipient getting the first message and replying.
    I've taken the battery out and left it out for a day, put it back and it does it all over again.
    Can anyone offer a solution to this insane problem?
    thanks in advance

    Its neither in the Outbox or the Sent box. Turning the phone off stops the sending, turning it back on restarts the sending.
    I've tried a *#7370# reset but do not know yet if the problem persists. I am kind of reluctant to put my contract SIM back in as it was repeatedly sending the SMS to an international number (every 3 minutes precisely according to my provider billing account) and its cost a lot of money so far. But when I replaced that SIM with another PAYG SIM the sending did not continue even before the reset. So, its doubly confusing.
    What are the codes for the various resets?
    Many thanks for your reply, hope you had a great christmas so far

  • Why does itunes separate the songs in the same album into two albums with the exact same info?

    i have this album in my itunes thats shown as two, they both have the exact same info, artwork, and the files are even in the same album folder, but they just appear as two albulms. the first one has only track8 and the second one has all the other tracks? how can i fix this plz?

    Sometimes iTunes does that. What I find often works is to add an "x" onto the end of all the artist and album names for the problem album, save it, then remove it again.  If that doesn't work, try setting an album artist.  I have also toggled problem albums as compilations even though they aren't, but some don't like using compilation.

  • My iPhone 4 keeps on sending the same message

    Last summer I exchanged sms with a contact of mine who has a Blackberry. What happened since then is that she receives one of the messages I sent to her then once a month. I canceled from the conversation that message, but it didn't help. I changed my carrier in January, and also that had no effect.
    Can someone help me (or, better, her)?

    Basics from the User Guide are restart, reset, restore from backup, restore as NEW.  Try each of these until your problem is resolved.

  • Using the same photos on two Macs with iPhoto'09

    Hi there,
    I took a few hundred of photos during my vacation and imported them into iPhoto on my MacBook Pro (10.6.1). Now I would like to have these pictures on my MacPro, too - but all the photoinfos, places etc. should be preserved. How can I do that? Does the "export"-command work? I took the photos in RAW and would like to export them in RAW.
    Thanks for any advice,
    Stefan

    The only way to do this is to link the two Macs together and use iPhoto Library Manager to move the files plus the associated metadata and versions between Libraries.
    If you want to export the Raw files then you will not get the Metadata You have added in iPhoto. To get to the Raw you'll need to export the Kind as Original, and this is not part of the Original file.
    Regards
    TD

  • HT201320 when i send an email using my hotmail address through outlook my contacts do not receive the mail. when i send the same mail through my iPad or iPhone no problem my contacts receive the mail. this only problem happens when i send mail with my mac

    I have a hotmail email address. I compose my mail useing MS outlook. when i send the mail to my contacts useing my macbook air,my contacts tell me there have not received the mail.
    when i send the same message with my ipad or iphone no problem my contacts receive the mail.
    what is the problem?

    Blair84 wrote:
    Double check your contacts email, and if its incorrect, go to their contact and change it and save it or you can delete the email you put in, and manually type it in.
    Hope this helps.
    How would that help the original poster?

  • I get the message Ipod detected but could not identify when i plugged in my new 7th gen Nano. Tried troubleshooting steps with no luck. Tried plugging in my old iPod and i get the same message.

    I get the message "Ipod detected but could not identify"when I plugged in my new 7th gen nano. Tried troubleshooting steps with no luck, Treid plugging in my old iPod that worked fine and I get the same message.

    Tried troubleshooting steps with no luck
    Doublechecking. Have you also tried a complete uninstall of both iTunes and all the other related software components and then a reinstall? If not, try the instructions from the following document:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8

Maybe you are looking for

  • Windows Vista reinstallation disks for my 7387 A11 whose hard drive died

    Thanks in advance for any help you can offer.  Just over three years ago I bought a Lenovo 3000 J Series, model 7387 A11.  Last weekend my hard drive began failing to the point that it wouldn't let the machine boot.  So I bought a new PC and hooked u

  • ITunes keeps asking for licensing agreement in windows 7

    After upgrading to iTunes 11 some months ago I have had to live with a really annoying 'feature'. iTunes keeps resetting itself, therefore I have to Accept the License Agreement window, then select the Menu Bar, then select Show Side Bar, the select

  • Commision Agent & separate report for that.

    Hi SD Gurus, My client have typical requirement. He had routed 30 of his customers through commission agent. In this scenario, he sell(dispatch) material directly to the customer & also get the payment from customer. Billing is done to the customer.

  • Upgrading Macbook 2008

    Hi, im looking to upgrade my macbook late 2008 aluminum edition. I want to add more memory and a new hard drive, i done some reserch to see what is compatitable so i know what to buy, but i just want to make sure the parts will work before i buy them

  • Asynchronous Web Service PI 7.1

    Hey guys, currently we are trying to configure and consume the enterprise services of SAP Transportation Management 7.0. These services use a asynchronous communication method and were created by SAP. I'm very new in this field, I couldn't find any g