Please confirm whether its (a) or not?

Send message within an integration process to 8 receivers at the same time, how can I do this?
a) Create a FORK statement with 8 branches
b) Create 8 interfaces
c) Create a loop with 8 interfaces
d) Create 8 branches

Muhammad,
Using the one interface, you can configure multiple receiver steps in your Receiver Determination (Integration Directory)
Taking this further, you also have the option to add conditions to control when a receiver receives a particular message
I hope that this answers your initial question Send message within an integration process to 8 receivers at the same time, how can I do this?
As you have a duplicate thread, I am now confused as to which thread you are following.  So I have provided the answer in in each thread
Could you please keep your thread to a specific issue to make it easier for both yourself and fellow Forum users to follow the topic
If you have other questions relating to a different topic then please create a new thread
Regards,
Mike

Similar Messages

  • Please confirm whether a Lightning to 30-pin Adapter will work with Apple 30-pin Digital AV Adapter?

    Please confirm whether a Lightning to 30-pin Adapter is suppose to work with Apple 30-pin Digital AV Adapter?
    The Packaging of Lightning to 30-pin Adapter suggests it does.
    But I have tried this today and my IPad just stated Unsupported accessory.

    Expect Lightning extention cables in black shortly. Since extention need no special circuitry 3rd party's are already working on then.

  • HT3529 Please confirm iMessages in blue are not charged or recorded as SMS's

    Please confirm iMessages in blue are not recorded or charged as SMS's

    Auchtermuchty wrote:
    Please confirm iMessages in blue are not ... charged as SMS's
    Correct.
    Blue = iMessage...
    Green = Text message... SMS

  • Login into a remote host and test one ip whether its pinging or not.

    Hello Friends
    I need to login into a remote host. From that remote host i need to test one ip that whether its is pinging or not.
    For that i have written one code snippet its working fine when that ip is pinging.
    But it is hanging when that ip is not pinging properly.
    I could not read the output while not pinging.
    For making telnet connection to the remote host, i am using jcsh.jar
    Any body know the solution for that please help me.see below my code.
    /* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */
    import com.jcraft.jsch.*;
    import java.awt.*;
    import javax.swing.*;
    import java.io.*;
    public class Exec{
      public static void main(String[] arg){
        try{
          JSch jsch=new JSch(); 
          String temp = "";
          String host=null;
          if(arg.length>0){
            host=arg[0];
          else{
            host=JOptionPane.showInputDialog("Enter username@hostname",System.getProperty("user.name")+"@localhost");
          String user=host.substring(0, host.indexOf('@'));
          host=host.substring(host.indexOf('@')+1);
          Session session=jsch.getSession(user, host, 22);
          // username and password will be given via UserInfo interface.
          UserInfo ui=new MyUserInfo();
          session.setUserInfo(ui);
          session.connect();
          String command=JOptionPane.showInputDialog("Enter command",
                                                     "ping ");
          Channel channel=session.openChannel("exec");
          ((ChannelExec)channel).setCommand(command);
          channel.setInputStream(null);
          ((ChannelExec)channel).setErrStream(System.err);
          BufferedWriter stdOut = new BufferedWriter(new OutputStreamWriter(channel.getOutputStream()));
          channel.connect();
          int count = 0;
          int count1 = 0;
          while(true) {
          if((temp = stdInput.readLine()) != null || (temp = stdInput.readLine()).compareTo("") != 0 ) {
               System.out.println("NOT NULL OUTPUT");
               while ((temp = stdInput.readLine()) != null) {
               System.out.println(">"+temp);
                if(temp.indexOf("64 bytes from") == 0) {
                   if(count++ > 4)
                        System.out.println("Ping Okay");
                        channel.disconnect();
                        break;
            try{Thread.sleep(1000);}catch(Exception ee){}
          else
               System.out.println(">"+temp);
               count1++;
               if(count1>10)
                    System.out.println("Ping is not okay.");
                    break;
               else {
                    System.out.println("Trying...");
    //                continue;
               try{Thread.sleep(1000);}catch(Exception ee){}
          if(channel.isClosed()){
              System.out.println("exit-status: "+channel.getExitStatus());
              break;
          channel.disconnect();
          session.disconnect();
        catch(Exception e){
          System.out.println(e);
      public static class MyUserInfo implements UserInfo, UIKeyboardInteractive{
        public String getPassword(){ return passwd; }
        public boolean promptYesNo(String str){
          Object[] options={ "yes", "no" };
          int foo=JOptionPane.showOptionDialog(null,
                 str,
                 "Warning",
                 JOptionPane.DEFAULT_OPTION,
                 JOptionPane.WARNING_MESSAGE,
                 null, options, options[0]);
           return foo==0;
        String passwd;
        JTextField passwordField=(JTextField)new JPasswordField(20);
        public String getPassphrase(){ return null; }
        public boolean promptPassphrase(String message){ return true; }
        public boolean promptPassword(String message){
          Object[] ob={passwordField};
          int result=
            JOptionPane.showConfirmDialog(null, ob, message,
                                          JOptionPane.OK_CANCEL_OPTION);
          if(result==JOptionPane.OK_OPTION){
             passwd=passwordField.getText();
            return true;
          else{
            return false;
        public void showMessage(String message){
          JOptionPane.showMessageDialog(null, message);
        final GridBagConstraints gbc =
          new GridBagConstraints(0,0,1,1,1,1,
                                 GridBagConstraints.NORTHWEST,
                                 GridBagConstraints.NONE,
                                 new Insets(0,0,0,0),0,0);
        private Container panel;
        public String[] promptKeyboardInteractive(String destination,
                                                  String name,
                                                  String instruction,
                                                  String[] prompt,
                                                  boolean[] echo){
          panel = new JPanel();
          panel.setLayout(new GridBagLayout());
          gbc.weightx = 1.0;
          gbc.gridwidth = GridBagConstraints.REMAINDER;
          gbc.gridx = 0;
          panel.add(new JLabel(instruction), gbc);
          gbc.gridy++;
          gbc.gridwidth = GridBagConstraints.RELATIVE;
          JTextField[] texts=new JTextField[prompt.length];
          for(int i=0; i<prompt.length; i++){
            gbc.fill = GridBagConstraints.NONE;
            gbc.gridx = 0;
            gbc.weightx = 1;
            panel.add(new JLabel(prompt),gbc);
    gbc.gridx = 1;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    gbc.weighty = 1;
    if(echo[i]){
    texts[i]=new JTextField(20);
    else{
    texts[i]=new JPasswordField(20);
    panel.add(texts[i], gbc);
    gbc.gridy++;
    if(JOptionPane.showConfirmDialog(null, panel,
    destination+": "+name,
    JOptionPane.OK_CANCEL_OPTION,
    JOptionPane.QUESTION_MESSAGE)
    ==JOptionPane.OK_OPTION){
    String[] response=new String[prompt.length];
    for(int i=0; i<prompt.length; i++){
    response[i]=texts[i].getText();
         return response;
    else{
    return null; // cancel

    Do a Google search for "java ftp client". There are some existing packages that you can use.

  • Note 434123 is to implement for CO28 report, please confirm if its mod ?

    I want to print Material and Material description in output report by using
    transactin code CO28 with selection option PO's .(the last option in CO28)
    This is not readly avaiable in report CO28 for ECC 6.0 version.
    Can we use this note 434123 as a enhancement.
    Please tell me if its a modification or its an enhancement?
    or anyother out of blue reply.

    Dear Amit,
    yes this note 434123 is a modification, see note
    The addition to these structures is a modification. Therefore, SAP does
    not accept any responsibility that this modification will work correctly
    nor does SAP accept the responsibility or maintenance for problems
    caused by this modification.
    It depends on your release. Until 4.70 the modification from note need to be used. After release 470 you can use WORKORDER_INFOSYSTEM (see notes 615176 and 615206) this is no modification but customer own coding an still not supported from SAP.
    BR Sabine

  • HT5654 I want to update my ipad 2, I have purchased on August 2013, but have to confirm whether its on warranty or not?

    I have purchased Ipad2 on August 2013.
    I have to check my purchase warranty.
    Getting Error while updating.

    What errors?
    Check here
    https://selfsolve.apple.com/agreementWarrantyDynamic.do

  • How to color a cell based on whether its filled or not. If filled color it

    Hello All,
                        I am into BI 7.01. I have a requirement to colour a cell(Characteristics) based on its value. How do I do that. I know it has to be handled using the Module in web template 7.01 version. Please guide me.
    Thanks & regards,
    Rajib

    Why can't you use exception for this?

  • Could somebody please confirm this for me...

    Ok, could somebody please confirm that Invisible Shield is not the same as seran wrap? My mom keeps telling me that its not worth it because seran wrap has the same protection as the Invisible Shield. Can somebody who has invisible shield installed on their ipod please respond?

    It is not seran wrap
    it is a heavy film protector
    http://www.rainydaymagazine.com/RDM2005/GearNGadgets/October2005/RDMGG_Invisible ShieldCutOut.htm
    http://www.theinvisibleshield.com

  • Is SAP SCM 5.1 and SCM 2007 are same? Please Confirm

    Hi,
    I have to Install SAP SCM 5.1 Non-Unicode System, but I cant find Installation Media at Marketplace instead I can find SCM 2007. I am able to get SCM 5.1 SPs when I clicked SCM 2007 entry on Marketplace. So please confirm whether these 2 products are same or not?
    If yes, Please provide a link/ note that shows SCM 5.1 has renamed to SCM 2007 from SAP.
    Thanks.

    Hi Ajay,
    SCM 5.1 & 2007 are the same.
    Please follow the link
    https://websmp110.sap-ag.de/support
    under Release & upgrade info > installation & upgrade guides
    Regards
    R. Senthil Mareeswaran.

  • How to get confirm whether idoc reached receiver or not?

    hi pals,
    I want to know how to confirm whether idoc is reached the receiver system or not?
    how to find the idoc no in case of idoc failure in sxmb_moni or any tcode for that?
    i am looking in terms of sap production systems
    thanks
    Ruban

    ruban,
    It is impossible to know the IDoc number in XI system as in this case IDoc is posted in the target system. Here, IDoc gets posted into target SAP system, and while generation of IDoc in target, at runtime IDoc is generated.
    To find in XI whether the IDoc has been received or not, you can configure BPM where in a SEND step is configured in the block for which exception branch is defined. And in the exception branch you set 'ThrowAlert' to send an email to recipients.
    After triggering the message go to SXI_MONITOR where in you can see its process engine to see whether exception branch is routed. Then you can understand that IDoc did not go to target and otherwise it has gone.
    Regards,
    Suraj Kumar

  • Hello Everyone, I want to purchase an ipad ,please suggest whether ipad mini is the right choice to go for or not?

    I am planning to buy an ipad mini, please suggest me whether its the right choice to go for or not ?
    Hows the display?

    The Ipad 4 has a stronger processor, and better graphics and display than the Mini. but they can basically do the same things.
    Obviously one is smaller than  the other, but at the end, the games will still play on both, and you may not even notice a difference.

  • Is it safe to update my iPhone 4 16gb Softbank Locked to the latest OS? I'm hesitating to update its OS because I heard it might be permanently locked and I can't use it even as an iTouch. Please confirm!

    Is it safe to update my iPhone 4 16gb Softbank Locked to the latest OS? I'm hesitating to update its OS because I heard it might be permanently locked and I can't use it even as an iTouch. I understand that Softbank locked iPhone can never be unlocked, but not using this as a phone. I'm using this as an itouch.
    Please confirm if I can update its OS? or what happens when i Update its OS.

    If you are just using the device as an iPod touch, it won't matter if you update it, so long as you still have a Softbank SIM in the device. It doesn't have to be active, but you will need it to activate the device after you update the firmware. It won't be locked to where it cannot be used as a Touch, unless you consider not activating it, but that is something you can still do.

  • Can anybody please confirm THinkvantage system update is working or not right now?

    i am trying to update this T42 with the thinkvantage system update ver 3.14 and all i keep getting is 'system update server is temporarily unavailable'
    is there anyone willing to try an autoupdate and confirm or deny the server is working or not?
    then post results in here please?
    if its not the server, its my machine, i just need to know whats at fault
    thanks in advance for anyone willing to spend 5 seconds of their life helping me x
    T42 - T21 - Tecra 8200 all xp
    Solved!
    Go to Solution.

    hi visch thanks for taking an interest
    i finally got it going this afternoon
    hallelujah!
    peace be with you
    T42 - T21 - Tecra 8200 all xp

  • I have installed iOS7 on my iPhone4. I am able to add/edit contacts by clicking the "contact" icon. But when I am trying to do the same after clicking the "phone" icon, it is not displaying the keypad. I believe it is a bug in iOS7. Please confirm. iPhone

    I have installed iOS7 on my iPhone4. I am able to add/edit contacts by clicking the "contact" icon. But when I am trying to do the same after clicking the "phone" icon, it is not displaying the keypad. I believe it is a bug in iOS7.
    Please confirm.
    iPhone 4, iOS 7

    Hello jayanand,
    You may need to force close all open apps, then restart the phone. If necessary, you may need to reset the phone after that.
    iOS: Force an app to close
    http://support.apple.com/kb/HT5137
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    Cheers,
    Allen

  • My ipod touch 4g is not recognized in itunes nor does my comput recognize it !! HELP PLEASE... its not the chord

    my ipod touch 4g is not recognized in itunes nor does my comput recognize it !! HELP PLEASE... its not the chord

    Did you already try these suggestions? iOS: Device not recognized in iTunes for Windows

Maybe you are looking for

  • FI,MM ,PP FLOW

    I would like to know the business flow of FI,MM,PP..Can any one help me in this regard.. Thanks in advance..

  • How to get pagenumber of anchored Box

    In javascript, how to get page number of anchored textbox. if i gave "textframes[0].parent" means it shows an error. Thanks

  • Re-installing Mac Mail on Tiger

    A well-meaning friend of mine managed to delete my Mac Mail application. All I need to do is re-install it, and I thought that would be simple enough with my installation discs that came with the computer when I bought it. So I inserted disc 1, doubl

  • Word docs blur when I scroll on 20" connected to powerbook

    It's hard to know who to ask about this one, because I can't tell what is to blame. But when I plug my 20" cinema display into my powerbook's DVI port, and then move a Microsoft Word doc over onto the 20", it gives me a chopped-word effect when I scr

  • HT204266 questions regarding in-app purchase

    My app store is currently the Singapore store, but I want to make a purchase in an app that is only available in China store. How am I able to do that?