What is MultiMapping, what interface do we use for it?

What is MultiMapping, what interface do we use for it?

Hello  Chaitanya,
Refer the following blogs
/people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
/people/narendra.jain/blog/2005/12/30/various-multi-mappings-and-optimizing-their-implementation-in-integration-processes-bpm-in-xi
/people/sudharshan.aravamudan/blog/2005/12/01/illustration-of-multi-mapping-and-message-split-using-bpm-in-sap-exchange-infrastructure
MultiMapping is a term referred to any mapping that has mutliple messages in your source or target.
So, mappings like
1. 1:N --> 1 source message and N target messages
2. N:1 --> N source messages and 1 target messages
3 M:N --> M number of source messages and N number of target messages
are referred as MultiMappins.
Mapping 1 can be achieved without BPM whereas others need to have a BPM.
With Regards,
Raju.
**********Please give points if found useful

Similar Messages

  • HT1586 What's the best HDMI switcher to use for Apple TV?

    What's the best HDMI switcher to use for Apple TV?  My widescreen TV has only one HDMI outlet and it is in use. 
    Thanks,
    Joanna

    Anyone sold by MONOPRICE.COM are really worth buying!

  • What are the delta mechanisms and tables used for  Lo Extraction & COPA

    Hi all
    what are the delta mechanisms and tables used for  Lo Extraction & COPA.
    please explain clealry.
    Thanks & Regards,
    James

    James,
    Please go through Roberto's weblog :
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    Anyways,
    As you know LO cockpit consists of different modules(MM, PP, SD, etc)
    They are called appl components. Each of them have a number (eg.MM=02) and for each appl comp they might be different Data sources and for each DS they might be different tables. So, unless you be specific we cant tell a specific table for a DS.
    coming to the delta mechanisms, there are " direct delta, queqed delta and serialized delta".
    Copa is based on the oepration concern. it can be created on " accouting based" or "costing based".
    Assign points if helpful
    Kalyan

  • What is the serial on the iphone used for?

    What is the serial on the iphone used for? I ask because im seeling my iphone to someone and they asked me for it. Why do they need it? Should i give it to them?

    The only thing they can do with that is check warranty status.

  • What Malicious Software Removal Tool can I use for my Mac Book? I need do to do this for a College class.

    What Malicious Software Removal Tool can I use for my Mac Book? I need do to do this for a College class.

    You may find this User Tip on Viruses, Trojan Detection and Removal, as well as general Internet Security and Privacy, useful: The User Tip seeks to offer guidance on the main security threats and how to avoid them.
    https://discussions.apple.com/docs/DOC-2435

  • What camera raw default settings would you use for the Canon 5D Mark 3. I have PS CS6.  Thank you.

    What camera raw default settings would you use for the Canon 5D Mark 3. I have PS CS6.  Thank you.

    Really, this is a question you should be asking yourself...
    What do you shoot? Makes a difference...
    Typical ISO that you shoot? Makes a difference...
    Shooting for clients or yourself? Makes a difference...
    Look, there is no magic bullet...the ACR/LR "Default" should only be changed for those adjustments you make 70-90% of the time and sould not be confused with image by image adjustments...
    So, as asked, your question can not really be answered other than to say, use a default that suits you.

  • What is the best I/O to use for a MUD?

    What is the best I/O to use for a MUD?
    It seems that people usually show I/O examples with IOs like:
    BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInptuStream()));
    PrintWriter out = new PrintWriter(socket.getOutputStream());
    out.println("Hello World");
    out.flush();
    PrintStream out = new PrintStream(socket.getOutputStream());
    out.println("Hello World");
    out.flush();When I say 'best I/O' I mean, can you give me an I/O that'll be the best if a MUD starts getting LOTS of request and becomes rather busy?
    Thanks!
    -Neo-

    One last question, are output streams thread safe?A stream is inherently serial in the way it data is written to it. If two threads try to write to the same stream asynchronously, the ordering of the data written will not be predictable.
    For example:
    One class is recieving input from a user and
    reply-printing thing like "Command Successful", and
    another class is recieving messages from other users,
    but the PrintWriter would be originally created in the
    first class and then passed as a parameter to the
    second class...would this work, or should I just
    redirect all command replies to that second class?If they are in the same thread, then it could work. If there are separate threads, then some higher granularity synchronization needs to be imposed, so that the second thread doesn't start writing part way through the first's output.
    For example:public class NeoThreadWriter implements Runnable {
      final String name;
      final int delay;
      final boolean synch;
      NeoThreadWriter (String name, int delay, boolean synch) {
        this.name = name;
        this.delay = delay;
        this.synch = synch;
      public void run () {
        if (synch) {
          new Synch().run();
        } else {
          new ASynch().run();
      class Synch implements Runnable { 
        public synchronized void run () {
          synchronized (System.out) {
            for (int i=0; i<6; i++) {
              System.out.println(name+":"+i);
              try {
                Thread.sleep(delay);
              } catch (InterruptedException iex) {
                iex.printStackTrace();
      class ASynch implements Runnable { 
        public synchronized void run () {
          for (int i=0; i<6; i++) {
            System.out.println(name+":"+i);
            try {
              Thread.sleep(delay);
            } catch (InterruptedException iex) {
              iex.printStackTrace();
      public static void main (String[] args) {
        try {
          Thread threadA = new Thread (new NeoThreadWriter ("A", 40, false));
          Thread threadB = new Thread (new NeoThreadWriter ("B", 20, false));
          System.out.println("asynchronous threads");
          threadA.start();
          threadB.start();
          threadA.join();
          threadB.join();
          System.out.println("synchronized threads");
          Thread threadC = new Thread (new NeoThreadWriter ("C", 40, true));
          Thread threadD = new Thread (new NeoThreadWriter ("D", 30, true));
          threadC.start();
          threadD.start();
          threadC.join();
          threadD.join();
          System.out.println("Done");
        } catch (InterruptedException iex) {
          iex.printStackTrace();
    }With asynchronous threads A and B, the output is all mixed up. With synchronized threads the ordering of the output is maintained. Note that the guard has to encompass all of the code that generates the output; simply synchronizing the println invocations wouldn't prevent the mixing.
    Pete

  • What kind of glass or plastic is used for camera lens

     What kind of glass or plsastic is used for camera lens protection?
    Solved!
    Go to Solution.

    Its glass but I'll see if I can find more info on it
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • What's the best logic reverb to use for trumpets and sax

    what's the best logic reverb to use for trumpets and sax.

    The lower transmit frequency limit is in there to make the device meet FCC regulations.. that is a regulation imposed of US regions and, to a lesser extent, Latin american regions that border with the US.
    In addition, you'll be pleased to know that the N900 will not use certain European WiFi channels if a) the sim card is removed or b) the phone has a sim card but is OUT of 3G coverage.. again, to make the device meet FCC regulations.. (seriously.. when you go out of 3G coverage, the kernel reports it is switching from EU wifi to US wifi!!)
    Let me put this into perspective..
    From: http://www.nokia.com/results/Nokia_results2009Q3e.pdf
    Nokia sold 3.1million handsets in the US 2009 Q3
    Nokia sold 27.1million handsets in Europe during the same period.. That is 9 times as many.
    The USA has its OWN firmware
    and yet ALL versions of the firmware (including the UK specific one) are crippled to meet the requirements of a region that produces the lowest sales figures by a factor of 3 (Latin America produced 9.7 million units in 2009Q3)
    Why the HELL are we suffering because of US restrictions..
    That's like saying you can't use bluetooth because it isn't allowed on the Christmas islands.. (it is allowed.. not picking on you, Christmas Islands, but you are small!)
    If the FCC wants a phone that doesn't allow broadcasts on sub 88Mhz frequences, and doesn't want certain Wifi channels to be used, the ALTER THE US FIRMWARE..
    What next, BMWs have with left hand steering in the UK because the US drives on the Left?
    Phillips TVs that only work on 120V because the US uses 120V..
    I don't give a **** what the FCC say.. I'm not in the US and I have my own european and UK legislation to adhere to..
    For a company that INSISTS on having a billion regional firmware versions, they don't appear to be able to get that right either!!! The UK version lacks UK specific restrictions such as the ability to us UK frequencies for wifi and FM transmission!!
    Crazy and very very irritating

  • Pro Users - What Type Of Audio Interface Do You Use?

    I'm thinking of upgrading from this cheap usb, and was wondering what are some models/brands people have that they'd recommend? Preferrably something reasonably priced that's still a quality interface (if this is possible)?

    you don't say what your 'cheap usb' interface is that you're currently using.. so it's hard to get any idea how many inputs and outputs you want or need. do you require zero latency monitoring for recording? do you want or need digital i/o? what kind of price range are you thinking? do you have a use for something with good quality mic/instrument preamps or do you already have that covered?
    my general rule is to go for the absolute least number of inputs and outputs that you need. I believe it's a better idea that your money goes into quality sound for the amount of i/o channels you actually will use, rather than buying some box with 36 simultaneous bad sounding inputs. many people work almost exclusively using software instruments and audio files inside the box, and when they record, it's only one source at a time. and yet they go buy a MOTU 828 or something cos they think for some reason you're supposed to have lots of i/o just in case. but if you're never going to record a drumkit, or multiple musicians playing at the same time, you're never going to need it.
    figure out what your needs are first and then narrow down your choice to the best quality units you can afford that provide the i/o you can ever see yourself using. then, ask around to figure out which ones have the best drivers and sound.
    if this is for your macbook, then your best bet is to go for firewire. but if you're also using a FW drive for your audio, you're going to want to be careful they'll play nice together cos they're going to be sharing the same data bus.
    lastly, if you only ever need stereo in and out.. you might want to consider getting a device that just works using the optical i/o of your machine. then there are no drivers at all, and the sound quality can be extraordinarily good if you can afford a converter like a rosetta.. all that money will go into absolute premium quality, rather than buying tons of channels that will just gather dust if you have no use for it.

  • What login name do I need to use for iCloud?

    I'm operating on Windows 7 64bit.
    I just installed iCloud and it prompted me to "Sign in with my Apple ID:" which I did.
    Then I get this: "This Apple ID is valid but is not an iCloud account" - I am using a gmail address.
    What domain do I need to be using in order for it to accept my Apple ID? The forum states that I need a new ID in the form of [username]@me.com and yet, MobileMe is no longer accepting subscriptions. I have an Iphone that is running iOS 5.0.1 and that, as well as my Windows laptop, will be the only things sync'd with iCloud. What do I do?

    Have you tried the Communities Search Window... Top right...
    The answer could be in there somewhere...
    also, have you had a look at iCloud Help...
    http://help.apple.com/icloud/?lang=en

  • HT201250 How do I find out what portable drive was the drive I used for Time Machine Backup?

    Hi, I have 10.7.4 and need to figure out what drive I was using for Time Machine Backup.  I have three drives and I have connected each of them to my macbook pro, but I get an error, "Time Machine Error, The backup disk is not available" when I hit the time machine icon on the top of the screen and the "backup delayed" prompt.  If I try Back up Now I get message, "Time Machine could not complete the backup.  Back up disk is not available."  I am trying to figure out what the time machine back up would actually look like as a file on the drives but I don't see a folder/file name Time Machine.  If I enter Time Machine I can see in the far right column, in purple, the last back up date (Sept. 12, 2012), but when I hit it nothing happens.  In the Time Machine preference box the select disk has, in red and to the right, "Delayed" with an "i" within a circle, and the option indicates, "Next backup: when disk is connected."
    I know I have a years worth of backups on one of the three drives, but I can't figure out how the heck to find them or how to determine what was the last drive I used for the backups within Time Machine.  Help please.

    Hi, I have 10.7.4 and need to figure out what drive I was using for Time Machine Backup.  I have three drives and I have connected each of them to my macbook pro, but I get an error, "Time Machine Error, The backup disk is not available" when I hit the time machine icon on the top of the screen and the "backup delayed" prompt.  If I try Back up Now I get message, "Time Machine could not complete the backup.  Back up disk is not available."  I am trying to figure out what the time machine back up would actually look like as a file on the drives but I don't see a folder/file name Time Machine.  If I enter Time Machine I can see in the far right column, in purple, the last back up date (Sept. 12, 2012), but when I hit it nothing happens.  In the Time Machine preference box the select disk has, in red and to the right, "Delayed" with an "i" within a circle, and the option indicates, "Next backup: when disk is connected."
    I know I have a years worth of backups on one of the three drives, but I can't figure out how the heck to find them or how to determine what was the last drive I used for the backups within Time Machine.  Help please.

  • What are the adm_modresname and adm_moduseruid parameters used for?

    The following parameters are in the server configuration file (unison.ini).
    What are these parameters used for?<BR>
    <P>
    [UTL]<BR>
    adm_modresname = FALSE<BR>
    adm_moduseruid = FALSE<BR>
    <P>
    These parameters accept only the default values shown above and are not
    configurable. They were not meant to appear in the documentation or in the
    default unison.ini file.
    <P>
    Please do not attempt to change these parameters.

    Yes I have explored this pdf...but it doesn't tell how to use the policy from the BPM. My question is if I want to use the policies from BPM, then do I need to install the SSM ?
    If yes, what are the correct steps of installation ?
    I am getting the errors while configuring the Java SSM.
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

  • WHAT IS A GOOD AE FONT to use for mathematical notation?

    Hello, what font would you use for graphics containing the following Greek and other symbols in After Effects of the Lorentz transformation?
    I've been poking around the various fonts that came with my Production Suite Premium without too much luck.
    Thanks!
    Matt

    At the link in Daftly's reply, the Mathematical Pi font is a good one, but a couple other thoughts...
    The standard in the world of math publishing is, or will soon become, the STIX family of fonts. If you look at the bottom of their page and see the 6 huge organizations who are behind these fonts, you'll see why.
    Any decent Unicode font (whether or not it has Unicode in its name) will have a full complement of Greek symbols.
    What a Unicode font won't have are characters that stretch, like the parentheses in your example. For that, you'll need "math notation software" such as the ones Navarro mentioned. Either that, or you'll be doing a lot of manual editing in Illustrator.
    The style guide for whoever you're submitting your work to, whether it's your university to which you'll submit your work or a corporation you work for, will likely have specifications for typesetting, and may specify a particular font. I've worked with a corporation that specified Palatino for publication, which I personally like as a font, but it's nigh impossible to typeset middle-level to advanced math in Palatino. Hopefully you can find some compromise.

  • What is the best camera technique to use for this project?

    hi, im making a small thing for my gf on motion. i have it so that certain text appears along with pictures. i want the camera to pause momentarily to read what it says and then begin moving to the next set of text/pictures, then stop there for a little while too, then go on to the next one, etc etc.
    whats the best way to do this? the pictures/text are NOT in a straight line so making the camera go straight through wont work. one might be directly in front of the camera then i will have made the next set to be directly downward so i want the camera to swoop down there and pause on them, then the next set might be straight up all the way at the top etc. how can i get the camera to move then pause, move then pause over and over where i want it to until the project is over?
    sorry if this is a noob question but i have no idea
    thanks!!

    What version of the studio are you using?
    In Motion 3 you could try keyframing the camera move , the zoom layer behavior, or Move behavior.
    If you've got Motion 4, try the Camera Framing Behavior.
    There are several ways to accomplish what you want to do, it really comes down to what you are most comfortable with.

Maybe you are looking for