2 Client of ECC pointing to one BI Client

Hi, I have a requirement at BMW Inc to test the unconsolidated FI data from ONE ECC CLIENT
in QA System and then I have a Consolidated FI Data from another ECC Client in Quality system. Can I HAVE ONE BI system to receive the data from both ecc clients and put two cube (One for cnsolidated and One for Uncolidated Data ) in one BI system. Or should I have to have the TWO BI Client. This is only for testing system and not for production. please reply soon
Thanks
Soniya Kapoor

Soniya,
     you can connect N number of one source system clients to BI.
Reporting and Validation of data would be very easy if follow these steps.
     1. Create Multicube on top of 2 cubes.
     2. 2 cubes should contains same number of charecterstics, Same technical Names.
     3. Key figures technical name should be different but technical both should be same( I mean create new keyfigure with Template).
If you want load Data not for Validation purpose, you can load only one cube. No need of another one.
let me know if you have any questions.
All the best.
Regards,
Nagesh Ganisetti.
*assin points if it helps.

Similar Messages

  • Connecting to Multiple ECC systems via one Gateway system(Dynamic System Selection)

    Hi Experts,
    We have multiple ECC systems and one Gateway server. We want to connect to these different ECC systems using one GW system.
    I have created System Aliases for these ECC system in GW system. For a service, i added 2 system aliases.
    Now we are looking for the solution where UI can provide the system alias (it wants to connect) as a parameter while calling oData Service.
    Please help.
    Regards,
    Rohit

    Hi Rohit,
    we have a similar scenario where we have two system aliases for one service. Both aliases point to the same system, but different clients; it should not make a difference though, having different systems. The feature you are looking for is Multiple Origin Composition (MOC).
    There are a couple of things you have to consider:
    in the SEGW the entity to be called has to be marked as addressable
    the URI of the service needs to include the tag for MOC (;mo) --> http://sapgw.domain.org:8000/sap/opu/odata/sap/ZSOME_SERVICE;mo/entityset
    Without the ;mo the call will be routed to your default alias. The ;mo will route the call to both systems. Using MOC will generate an additional key property into your entities --> SAP__ORIGIN. The property is the alias. If you want to route to a specific system you have to provide the SAP__ORIGIN like providing normal key properties in your requests.
    This will look like this:
    <content type="application/xml">
      <m:properties xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices">
        <d:SAP__Origin>SOME_ALIAS</d:SAP__Origin>
        <d:Identifier>SOME_IDENTIFIER</d:Identifier>
        <d:Doublet />
      </m:properties>
    </content>
    The original Entity only consists of the key property "Identifier" and the property "Doublet". "SAP__ORIGN" is added via the ;mo.
    Hope it helped...
    Holger

  • How to know the point where one menu popUp is showed ?

    hi,
    I need know the point where one popUp menu is showed, but I have problems to do it....
    I can install actionListener for method actionPerformed of class AbstractAction but the event I get does not able to say the point...
    In the documentation, I read it is possible install a listener for the mouse and select the popUpMenu with the condition
    "if (e.isPopupTrigger())"
    but it is not confortable to do it and in that case it is not easy too to manage the choice for the item selected...
    Some advice please ?
    I write down the code I use...
    thank you to have one answer..
    regards tonyMrsangelo
    import java.awt.AWTEvent;
    import java.awt.event.*;
    import javax.swing.*;
    enum OpzPopMenu
    {NuovoAppuntamento, CancellaAppuntamento, SpostaAppuntamento};
    public class MenuPopUpTestOne {
        public static void main(String[] args) {
            MenuFrameXmenuTestOne frame = new MenuFrameXmenuTestOne();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    A frame with a sample menu bar.
    class MenuFrameXmenuTestOne extends JFrame {
        JPopupMenu popupMenu;
        public static final int DEFAULT_WIDTH = 300;
        public static final int DEFAULT_HEIGHT = 200;
        public MenuFrameXmenuTestOne() {  // costruttore
            setTitle("MenuTest");
            setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
            popupMenu = new JPopupMenu();
            Action nuovo = new PopupMunuAction("nuovo");
            Action sposta = new PopupMunuAction("sposta");
            Action cancella = new PopupMunuAction("cancella");
            JPanel jp = new JPanel();
            add(jp);
            // item1
            JMenuItem item1 = new JMenuItem(OpzPopMenu.NuovoAppuntamento.toString());
            item1.addActionListener(nuovo);
            popupMenu.add(item1);
            // item2
            JMenuItem item2 = new JMenuItem(OpzPopMenu.SpostaAppuntamento.toString());
            item2.addActionListener(sposta);
            popupMenu.add(item2);
            //item3
            JMenuItem item3 = new JMenuItem(OpzPopMenu.CancellaAppuntamento.toString());
            item3.addActionListener(cancella);
            popupMenu.add(item3);
            jp.setComponentPopupMenu(popupMenu);
            enableEvents(AWTEvent.MOUSE_EVENT_MASK);
        // aggiungere il popupMenu FINE   -----------------
        } // costruttore
    * Serve per gestire il menu popUp
    class PopupMunuAction extends AbstractAction {
    //    String itemOne = "nuovo";
    //    String itemTwo = "cancella";
    //    String itemTree = "sposta";
        public PopupMunuAction(String nome) {
            super(nome);
        public void actionPerformed(ActionEvent e) {
            String command = e.getActionCommand();
            if (command.compareTo(OpzPopMenu.NuovoAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "NUOVO  one");
            if (command.compareTo(OpzPopMenu.SpostaAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "SPOSTA  one");
            if (command.compareTo(OpzPopMenu.CancellaAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "CANCELLA  one");
    } // inner class PopupAction

    tonyMrsangelo wrote:
    I need know the point where one popUp menu is showed, but I have problems to do it....Do you mean where the JPanel was clicked, or where the pop up appears on the screen.
    If you mean where the panel was clicked, then it's as simple as adding this to your program:
            jp.addMouseListener(new MouseAdapter()
                @Override
                public void mousePressed(MouseEvent e)
                    if (e.getButton() == MouseEvent.BUTTON3) // if right clicked
                        // do whatever in here with the e.getX() and e.getY() results
                        System.out.println("[" + e.getX() + ", " + e.getY() + "]");                   
            });

  • Trying to find ALL objects that point to one column...

    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE     11.2.0.3.0     Production
    TNS for Solaris: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    I have multiple schemas, all which have tons of objects that point to one column of one table.
    I tried to look at v$sqltext, and v$sqlarea, but it doesn't seem to show as expected.
    Is there a view that I can look at that will show me all the objects that relate to one column?
    my situation. Had to change the data structure of this one column. Changed the default value from a Y to an L. I have packages, functions, triggers...etc... that deal with this one column. I need to ensure that I go through EACH one and edit them to reflect the change to the table column. And again, this spans multiple schemas that point back to it.
    I can't overlook any objects. Is there any one place to find this?
    Thanks.

    Use view - DBA_DEPENDENCIES
    select * from dba_dependencies
    where type= 'TABLE'
    and name = '<TABLE_NAME>';Another crude way...
    select * from all_source
    where lower(text) like lower('%<TABLE_COLUMN_NAME>%')
    group by owner,name,type;But, this 'll not search in Views & MView queries.
    HTH
    Ranit B.
    Edited by: ranit B on Oct 15, 2012 11:09 PM
    -- added                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

  • Two Datasources pointing to one connection pool...

    Hi All,
    I have heard you should not have two datasources pointing to one connection pool that each datasource should have it's own pool. What type problems would occur if you did that in WLS 8.1? I heard in 9.2 and above you are not allowed to do that and I suspect it is because of some issue doing many (datasources) to one (connection pool).
    Any comments about this?
    Thanks,
    -Tony

    Hi Hector
    Could you refer the SCN & SAP links
    SAP WEB Dispatcher and DMZ
    Access SAP Webgui and Portal Through Internet Using Web dispatcher
    https://help.sap.com/saphelp_nwce10/helpdata/en/48/8fe37933114e6fe10000000a421937/frameset.htm
    SAP Web Dispatcher - SAP Library
    BR
    SS

  • HT201209 When my purchase points in one of the programs through the iPhone show me this message:- Your purchase could not be completed.. contact iTunes store support to complete this transaction

    When my purchase points in one of the programs through the iPhone show me this message:- Your purchase could not be completed.. contact iTunes store support to complete this transaction??

    Welcome to the Apple Community.
    Did you follow the instructions in the message and contact Apple, which you can do through iTunes Store Support. If Apple have asked you to contact them, then the issue can only be resolved by them.

  • Functional module to Copy measurement points from one equipment to another

    HI,
    Please give some body function module to Copy measurement points from one equipment to another which is not assign to functional location.

    To Copy Measuring Points from one equipment to another , Go to transaction IE10 and copy all the relevant data that need to be copied Check the measuring point check box, it would copy the characteristic for measuring point to the newly created equipment and would create a system generated number for the measuring point. Both the measuring points would have the same characteristics and if they are attached to each other in a hierarchy then the measurement document readings could also be transferred from one measuring point to another.. You could use the following Function Module "EQUIPMENT_COPY" to copy the measuring point from one equipment to another if equipment has already been created.
    Regards...
    Edited by: Usman Kahoot on Jun 9, 2010 2:37 PM

  • CS4 Dynamic link to AE - all links point to one comp

    I know there have been lots of issues with the Dynamic Link and encoding, but I have a new one (for me at least).
    I have a project with a lot of sequences, all of which use different green screen clips. All the green screen clips had been sent replaced with an AE comp, where I used AE and Keylight to ket the clips. I had everything all perfect and then this happened:
    All my linked clips that came from AE all pointed to ONE AE comp. During the process of editing, I had created several different AE files that each had 2-3 different comps, but regardles of which .aep file the comp is in, the dynamic link still points to the same comp in a different .aep file.
    I even tried to import an new AE comp, but every .aep file I point at, in the open comp dialog window, seems to only have one comp, the same one that the existing linked files are pointing to.
    Any ideas on A: How to fix this and B: What caused this?
    Oh yeah, I'm on a Mac and CS4 MAster Collection, all updated to the latest versions.
    Thanks!

    Hi Curt, and thank you for taking the time to respond.
    Its odd how I've been trying to figure this one out for a long time and I tried your suggestion but it didn't make any difference..darn.
    In the AE forum they say this is quite common and no one really knows why...double darn.
    So I went back with a fresh mind this morning and tried something else..and it worked...so far anyway.
    So far I figured it out... I guess I just needed to ask the question and write it all out to help get my brain working in the right direction: 
    Since the normal process to do this doesn't work for me ..and apparently many others..here is the solution for those of you having similar issues.
    In PremPro select the desired clip you wish to place effects on
    Rename it and save
    R click and "Replace with AE composition"
    Name new file
    You will see three files pop up in AE in the project panel.
    The original source clip .. in my case.. shows an icon that lets me know it isn't the true file.
    Highlight this file with a click and then go Ctrl H (for PCs)
    The group of computer source clips you use for your project will come up.. double click on the original clip you had imported into your PPro project.
    The source file icon in AE will change to an icon that denotes the true file...save
    Go to your still open Ppro project and make sure it carried the effects over..save.
    Now you can save and close the AE project.
    So for this works for me today and I hope this helps anyone else dealing with a similar issue.
    Thanks.

  • Multiple domains pointing to one domain. How best for SEO?

    I'm a therapist. I have just created a site eg mytherpaystudio.com  I own several domains (currently as individual websites) ie thistherapy.com, thattherapy.com and anothertherapy.com etc. I think I made a big mistake when I created these websites because they are basically clones of each other, which I have learned through reading Google webmaster info etc may well have created SEO problems ie penalised me. I'm revamping the whole thing because I have a new therapy studio - massage, counselling, movement therpist etc
    Would I be best:
    Deleting the whole content and just pointing the domain name to the therapystudio.com site, or
    Only leaving content on the websitess which only pertains to the theraspy type ie thistherapy information, othertherapy information and using hyperlinks and text links to the mytherapystudio site?, or
    Anyone have another suggestion altogether
    Obviously I want the best possible seo outcome. I've stuck with iweb. I use RAGE iweb seo tool and sitemap automator.
    Thanks in advance for help

    I am a therapist as well and from my own experiences, I think you might be better forwarding the other domain names to the new therapy centre website.
    I did the same as you at one time, thinking that more sites might be better, but then decided that I would be better cutting down, so I tried a little re-branding of my practice and purchased a new domain name and just have 2 websites that advertise what I am doing - namely Structural Integration/Rolfing and Orthopaedic/Sports Massage and Rossiter System.
    I have to say though that when I re-designed the 2 websites, I ditched iWeb and one site I re-built using EverWeb (http://www.everwebapp.com), which is a good alternative to the now unsupported iWeb and for the other site I used Joomla, which is one of the Content Management Systems.
    The more sites and domain names you have, you more you have to get found, but I then found that I was losing track of what I did have.  As well as my now 2 websites and domain names I also make use of the free website building facilities by using WordPress.com, where you can set up a free website and publish to the WordPress severs and sometimes Wix - in this respect, the more you have the more you will be found.
    Good luck with it.

  • Connect two ECC systems with one SAP CRM 7.0

    Hi Gurus!
    I have to do a customizing for connect two ECC 6.0 and one SAP CRM 7.0, only I need the organizational structure from both systems and they need update when the structure from CRM has changes. The business partner goes to ECCs system by PI interfaces.
    Both organization models are different, so I have to maintain and update depending the changes in the business.
    But I don't know if this is possible, I don't know if we can do this by Middleware, ALE or PI.
    Can you please, give your oppinion about this topic?
    Best regards,
    Eugenia.-

    Hi Eugenia,
    Please see note 1084315 which descriibes the the multiple backend scenario.
    This should be relevant here.
    Best regards
    Christophe

  • HT204365 How do I sync magazine articles or books that I have on my iPad in multiple languages, so that when I highlight interesting points in one language the same highlighted part will appear in the other language as well?

    I've downloaded a magazine in three different languages onto my iPad mini.  I'd like to highlight in one language and have the same points highlighted in the other languages at the same time.  Is this possible?  If so, how?

    I tried the image creation/restoration described by Jared.  I don't think it makes much sense to rely on an operational system to do such a restoration therefore I opted for method 3 which involves using a "System Repair Disk".  My first
    reaction is what a crude tool.  The image creation process had no trouble putting the image on a simple network share.  However, it appeared as though the restoration couldn't even connect with the device.  I then copied the files to a USB drive. 
    In this case the repair disk said it couldn't find the files even though they were there.  It offered no mechanism to even look and see what was there.  It appears as though it will only find the image if it is located in a folder by the certain
    name used on creation and it is in root directory.  Not very handy.
    As ugly as all that was when we finally come to the point of making the restore it looks like the only option is to restore the entire disk, which in my case would mean also restoring both the windows partition and the recovery partition.  This just
    isn't what I want to do.  It is also something I wouldn't even consider doing unless it was the only possible way to recover from a failed hard drive.
    In summary, unless I've completely failed to notice how it works that just isn't going to work.
    I hope there is something better than this.  What about WinPE and ImageX?
    Absent anything useful from Microsoft it will be necessary to try using other software.  Time to try Acronis!  I guess.

  • Multiple Shipping Point in One Plant

    Hello.
    How to decide if we create another shipping point or not.
    We have two warehouses, located far from each other.
    The design is to have just one plant, and create two storage locations.
    Should I make two shipping points for each warehouse and assign to just one plant?
    Share you ideas...
    Thank you,

    Dear Deriada Gemma 
    Shipping point requirement is based on physical locations from which shipment is done, in case you are using Logistic execution then based on shipping point shippings will be done.
    If you have two wh and want to create seperate deliveries for both wh use two seperate shipping points
    you can automatically determine based on plant, loading group and shipping condtion.
    from help you will find few other reason for which seperate shipping point decision can be made
    list list, printing ...etc
    Define, copy, delete, check shipping point                                                                               
    In this step, you define the shipping points in your company or edit              
        shipping points that already exist. In order to adapt the functional              
        scope of a shipping point to the organization in your company, you                
        should process the following check list:                                                                               
    o   The shipping point is the top level in the organization for                   
            shipping.                                                                               
    o   A shipping point can be allocated to several plants.                                                                               
    o   A shipping point can be divided into several loading points.                                                                               
    o   A delivery is always initiated from exactly one shipping point.               
            Thus, all items of a delivery belong to one shipping point. Groups            
            of deliveries also belong to exactly one shipping point.                                                                               
    o   You can influence delivery scheduling via allocation to departure             
            zones.                                                                               
    o   The shipping point can be proposed automatically during order                 
            processing depending on the plant, loading group and shipping                 
            condition.                                                                               
    o   A shipping point has an address.                                                                               
    o   The shipping point is used as a selection criterion for lists of              
            deliveries and the work list deliveries.                                                                               
    o   The shipping point is used as a selection criterion for processing            
            deliveries like printing, picking or goods issue.                                                                               
    o   You can determine the printer destination for messages differently            
            for every shipping point on account of shipping documents.                                                                               
    Regards
    Jitesh

  • Multiple click points for one button and movie clip

    I am trying to make a single button into a multiple click
    point. I have a movie clip on the stage and I have an invisible
    button over it. The movie clip consists of a single timeline that
    has an ambient animation running and looping intially. I have three
    more labeled sections of that timeline that each contain a
    different animated sequence as click point animations for that
    movie clip. I want the user to click on the button on the stage and
    the first labeled click point animation of that movie clip will
    play. I want that action to be stored so that when the user clicks
    again then the second labeled click point animation will play then
    they will click for the third in the same way. In between user
    clicks I want the ambient animation loop in the beginning of that
    movie clip timeline to play. When the user has clicked the 3rd and
    last animated sequence then the whole thing will reset and be
    available again. Can anyone let me know how that can be
    accomplished. I originally scripted it through tell target to play
    the first but I don't know how to move forward. Thanks!

    What version of Flash are you using? Telltarget is very
    old... try something like this:
    // array of the animations
    myAnims = ['firstAnim','secondAnim','thirdAnim']; // these
    are also frame labels
    // your current animation index in the array, arrays start at
    0,
    // so we start at -1 which is like before anything
    currAnim = -1;
    // function to play the next animation
    function nextAnim(){
    // add one to the current animation index
    currAnim++;
    // if you've reached the end of the array, start back at 0
    if(currAnim >= myAnims.length)currAnim = 0;
    // now tell the MovieClip to play based on the value of the
    current array index
    myMovieClip.gotoAndPlay(myAnims[currAnim]);
    Then on the button you just put:
    on(release){
    nextAnim();
    And at the end of each animation on the timeline, put:
    gotoAndPlay(1);
    And at the end of the ambient loop at the beginning I guess
    you have that, too, so it loops.
    Hope that helps

  • Consideration during Multiple ECC systems with One APO system for PP/DS

    Hi All,
              We have a scneario that Multiple ECC systems and Third party ERP systems and Legacy systems .What are the points to be considered for this scenario when using with PP/DS?

    Hi,
    The factors to be considered will greatly depend how the multiple ERP systems are split, if they are split on geographical aspects only (all modules in all ERP systems then no major issues) - the problem will become a little challenging when Multiple ERP are split with different modules in different instances then major thought has to go in your CIF design (the IMs has to properly though of ).
    It is not a detailed explanation but just the line of thought.
    Regards,
    Vineet

  • Control attributes of each individual point in one plot

    Can I do it?  I create a spiral plot of about 490 points.  At each data point I check something, if good I want a green point along the spiral. If bad I'd like a red point.  So far, changing any attribute at any point in a plot changes them all, not just the one. I've tried having 2 different plots, one for the good condition and the other the bad. When overlapped their all the same.
    anyone got an idea?
    Don

    lockingnut wrote:
    When overlapped their all the same.
    Having two plots, one for good, one for bad, is the easiest way to go. If good and bad overlap, you need to make a decision what to show in the foreground. This is independent on how you generate the graph. Maybe you can use different point style for the two plots , e.g. empty circles and X-es. 
    Of course for full flexibility, you could built it all with a picture indicator, but that would require a bit more work.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for