Linking different measures from different cubes on to same report ,

Team ,
I have a report  which is targetting CUBE_1 retrieving dimensions A,B,C and Measures X,Y,Z . Now i also want to retrieve some more measures from a different Cube CUBE_2 which is  still has same dimensions  onto same report .
I do not want to use a SubReport here .I dont want to use LooKUp's() too ..
Can you please advise with some pointers how can we achieve this using MDX  ? Thanks in advance !
Rajkumar Yelugu

Hi Rajkumar,
According to your description, what you want it that retrieving dimensions A,B,C and Measures X,Y,Z from Multiple CUBE1 and CUBE2 in an MDX query.
The short answer is yes. To query multiple cubes from a single MDX statement use the LOOKUPCUBE function (you can't specify multiple cubes in your FROM statement). The LOOKUPCUBE function will only work on cubes that utilize the same source database as the
cube on which the MDX statement is running. For the detail information about it, please refer to the link below to see the blog.
Retrieving Data From Multiple Cubes in an MDX Query Using the Lookupcube Function
Hope this helps.
Regards,
Charlie Liao
TechNet Community Support

Similar Messages

  • Comparing fields from multiple entities in the same report (report builder 1.0)

    Created a model that contains 2 entities. I open that model in report builder 1.0.  When I drag a field from one of the entities into the design area, i can no longer see the other entity or use any of the fields from that other entity. 
    I need to use fields from both entities in the same report (join tables).  In management studio i would simply write a query and join tables but i cannot figure out how to do this in report builder.  Once i select a field from one entity
    how do i select fields from more than one entity and drag them into the same report.

    Would it be possible for you to send me instructions for this? I am not that familiar with SQL coding but I can definitely figure it out. I have been wanting to get information on reports from multiple entities for a very long time! The only way I can
    currently do it is have our document management software people write the report for me for quite a large fee. I would much rather do this myself. Right now I can select a few fields from one entity (the main one), some from a second entity under that one,
    but I cannot add any fields from a third entity! Quite annoying and hindering! Thank you :)

  • Linking a cell from different files

    Does anyone know how to link a cell of file to another cell of a file on Numbers on icloud? I am not tallking about linking a cell from one sheet to another sheet of the same file. I know how to do that. I am trying to create a summary file for grades from data of multiple files. Thank you for you're feedback.

    link a cell of file to another cell of a file on Numbers on icloud?
    AppleScript can do this in Numbers on the Mac. But I don't think it is possible in Numbers for iCloud.
    SG

  • How to connect two different tables from different server?

    Dear all expert,
    I need to develop a report where i need to connect 2 different tables from 2 different servers. For examples:
    BUT000 tables from CRM and KNKK from R3.
    Is it possible to do so? Because i try to link these 2 tables together and when i preview the report, it run very slow and sometime it hang. I did not get any result.
    Thank You.

    Moved to SAP Integration kit forum
    Appears you are using SAP data sources.
    And yes you can but the linked field types must match and be able to be converted into the WHERE portion of the SQL. Click on Database, Show SQL... and see if there is one. If not CR can't figure out how to so it brings all data client side and filters on the second pass.
    Thank you
    Don

  • How to pick different files from different locations

    suppose ur having multiple files(csv) from different locations,then how do u move those files to the SAP system.Please expalin me the scenario

    Venu,
    If the files are present in different folders, then you need different sender communication channels to bring this data to XI. Regarding connection with SAP, you can go for a proxy (If the webAs version is > 6.2) or else go for an IDOCor RFC adapter.
    Regards,
    Jai Shankar

  • Different results from Different Printers

    I have noticed that the horizontal location of my fillRect() will vary from printer to printer, but the location of my drawString() works
    consistently, why is this? Thank you EXTREMELY much if you can help me out.
    AC

    AC,
    The problem is because device-space varies from printer to printer, monitor to monitor, etc. Graphics2D has classes that you can use to make your application independant of devices, so that the output is consistant no-matter what you look at it on.
    Try looking into documentation/APIs for:
    java.awt.GraphicsEnvironment
    java.awt.print.Printable
    java.awt.print.PageFormat
    java.awt.print.PrinterJob
    You should be able to make it look the same on any printer, if you factor in the graphics environment into your code.
    Although, I'm not sure why fillRect and drawString both do not render on different spots on different printers.
    Alex

  • In a single program how to lookup different EJB from different application

    Hi,
    I have deployed two applications app1 and app2 on oc4j.
    There is a stateless session bean in a1 called ejb1.
    And there is also a stateless session bean ejb2 in app2.
    I write a test jsp in app1 to lookup ejb1 and ejb2 as an application client. So I need to create an application-client.xml for it.
    <?xml version="1.0"?>
    <!DOCTYPE application-client PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN" "http://java.sun.com/j2ee/dtds/application-client_1_2.dtd">
    <application-client>
    <display-name>ejbs</display-name>
    <ejb-ref>
    <ejb-ref-name>ejb1</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>class_of_ejb1Home</home>
    <remote>class_of_ejb1</remote>
    </ejb-ref>
    <ejb-ref>
    <ejb-ref-name>ejb2</ejb-ref-name>
    <ejb-ref-type>ejb2</ejb-ref-type>
    <home>class_of_ejb2Home</home>
    <remote>class_of_ejb2</remote>
    </ejb-ref>
    </application-client>
    However, When I run the test.jsp, It will report following error:
    javax.naming.NamingException: Error reading application-client descriptor: No location specified and no suitable instance of the type 'class_of_ejb2' found for the ejb-ref ejb2
    In fact, if I only lookup any of the ejb and the application-client.xml just specify only the according ejb-ref, everything is alright.
    But how to construct the application-client.xml so that it can suitable for 2 different ejb in different application? Do I miss something in doing it?
    Kindly advice!
    Queeny Tang

    Hi Debabrata Panda,
    I did add parent in web.xml, but it still encounter
    "Error reading application-client descriptor: No location specified and no suitable instance of the type 'class_of_ejb2' found for the ejb-ref ejb2"
    In my program, a jsp in app2 will lookup ejb1 of app1. In the same way, a jsp in app1 will lookup ejb2 of app2.
    if I declare in server.xml
    <application name="app2" path="../applications/app2.ear" parent="app1" auto-start="true" />
    <application name="app1" path="../applications/app1.ear" parent="app2" auto-start="true" />
    That will cause error reading application-client.xml for all
    ejbs.
    How to solve this.
    Thanks in advance!
    Yours Queeny

  • Pulling in data from two cubes in one common report in OBIEE

    Hi,
    We have a scenario wherein we are using Oracle OLAP Cubes as data source for reporting against OBIEE v10.1.3.3.2. The specific question that we have can be exemplified as below:
    The Analytic Workspace (as created using AWM) has the following seven dimensions:
    Dimension A
    Dimension B
    Dimension C
    Dimension D
    Dimension E
    Dimension F
    Dimension G
    Based on the above dimensions, we have the following cubes:
    Cube One : Dimension A, Dimension B, Dimension C, Dimension D and Dimension E
    Cube Two : Dimension D, Dimension E, Dimension F, Dimension G
    So essentially, we have two cubes in the same Analytic Workspace and they do have a few dimensions in common.
    What we now need to know is how best to include these two cubes in the same logical model in the business and presentation layers of the OBIEE repository - this needs to be done because we want to include measures from both the cubes in a common report.
    Any ideas on the implementation of this scenario are highly appreciated.
    Regards,
    Piyush

    Hello Wildmight,
    I am sorry for the duplicate updates - and I regret the inconvenience caused.
    Here is what we are trying to achieve:
    We have a Business Domain wherein two measures are of importance : M1 and M2. Also, we now know that M1 and M2 are dimensioned as below:
    M1 - Dimensions A, B, C, D , E , F, G and H
    M2 - Dimensions C, D , F and G
    Hence, we are looking at an AW with 8 dimensions and two cubes : One for M1 with 8 dimensions and the other for M2 with 4 dimensions. Also, here comes the need to have a report wherein we can see the values of M1 and M2 in the same report and then do some calculations and analysis using both the figures at the same time. What we now need to know is how best to include these two cubes (which have 4 dimensions in common) in the same logical model in the business and presentation layers of the OBIEE repository so that we can address the reporting requirement of having values of M1 and M2 in the same report.
    Any help is much appreciated.
    Best Regards,
    Piyush

  • 0PA_C01  different results from two queries on the same cube ....

    HI
    Can you please help with this  problems ...
    i am running a two queries with the same restrictions e.g
    Sep 08 for employee 22345 ,
    In one report it shows the Pay Scale level as A1 , then in the other report it shows Pay scale Scale level as A2  ,
    looking  at the master data in 0employee  , the first report is right ... this is how the data looks like in 0employee
    Employee  Valid from      To                Pay scale Level
    222345       2007-11-03   2008-09-30     A1
    222345       2008-10-01   9999-12-31     A2
    Can someone please shed some light on this , im thinking it has something to do with update rule but even that is supposed to use last date of the month , not 1st day of the following month. The Cube is a stndard cube 0PA_C01 and the update rule aswell .....

    Hi,
    Please check in the cube whether the data for the Employee is getting with two values like shown in your question:
    Employee Valid from To Pay scale Level
    222345 2007-11-03 2008-09-30 A1
    222345 2008-10-01 9999-12-31 A2
    and also check whether when the data loaded to the cube.
    There may be some change in the report structure where the difference is getting may in the column wise or row wise restriction may present.
    Please check on the structure of the report also.
    With Regards,
    Ravi Kanth

  • How do I use Aggregate formulas with multiple measures from different tables?

    I have three measures:
    Cash - this sums the £ column in my 'Cash' table.
    Online - this sums the £ column in my 'Online'
    table
    Phone - this sums the £ column in my 'Phone'
    table
    How do I now do aggregate formulas that combine this three measures, for example:
    Find the MIN or MAX of the three measures
    Average the three measures
    I have worked out how to use simple aggregation like add, subtract etc through the CALCULATION formula, but doing the average or MIN/MAX does not work.
    Thanks.

    Hi, thanks for the suggestions.
    Re: Julian
    I had thought about this method, unfortunately it is not always three measures so this doesn't work.
    Re: Tim
    I was not aware of the APPEND formula however I will definitely give it a try and report back - I can see this one working.
    Re: Michael
    Apologies, I have never found a an easy way of simulating some of my issues since it would mean creating a new power model and establishing quite a number of relationships. I definitely see the benefit when posting on the forum since it makes my issue far more
    accessible, unfortunately when I've posted before I've generally been racing against time and not had time to prepare this anonymised data. Is there a quick way of  doing it?

  • Can't link to MySQL from different website

    I have succcessfully set up a table on my ISP's server
    holding a MySQL database. One of my websites uses the data in one
    table on their website.
    I now want to use another table on the same database, for
    another client (I am only doing it temporarily so no security
    worries).
    The problem is that although I am setting up everything
    exactly the same way I cannot get access to the database. I have
    tried setting up another user name and account to sign into the
    database for the new client but no luck.
    I am also logged into my mac as Root user and have full admin
    privillages.
    The error message I get says: MySQL error # 1045 access
    denied for user 'assistdirect_net'@'wmphpp06.st.lyceu.net' (using
    password: YES)
    Any ideas?

    Check your local firewall/iptables configuration.

  • Referencing different columns from different groups

    Hi all,
    I created a formula column in a group , say g1. This formula column references in a bind reference fashion one column from g1 and another column from another group , say g2. And when I run the report then there is an error because of the external reference from group g2. So how can I reference both the two columns because I must calculate something from both of the two columns !
    Thank you very much indeed.

    Hi,
    Here i'm facing similar problem.
    I have a query Q1 which will get data in two columns p_plan, p_real. And I have another Q2 which will bring the data in two columns m_plan, m_real. Now i want to display the difference of (p_plan - m_plan) and (p_real - m_real).
    Since these fields for which the diff should be calculated are present in two different groups, std error "below Frequency error is thrown.
    Any advice pls

  • Same PDF, same printer, different results from different PCs??

    Weird situation I've encountered:
    I have a PDF that yields fuzzy, slightly bolder black text when printed from a couple different PCs, but prints just fine (no fuzzy black text) from other PCs-- even when the PDF is printed to the same printer.
    Any ideas why a given PC can't print the PDF text cleanly? Every other non-black text, logos,and lines print just fine -- but black text can end up looking like a little bit of mascara was applied to it.
    Thanks in advance.
    pete

    Are the same printer drivers used on each workstation? Some printers can use
    both PCL and PostScript drivers. Some drivers may also be set to download
    fonts to the printer while the others may allow font substitution by the pri
    nter..

  • Syncing different notes from different devices

    Hi.
    If I have work written on the Notes app on my iPad and I sync with iCloud, can anyone tell me what happens to the work made on my iPhone made with the Notes app which is different work. Does all the work get gathered together or will iCloud bias towards one or other device?
    Also, which app will my iMac use to read the Notes app work on?
    Thanks for any help

    It should all be merged.
    As for the iMac, there's a notes app (Mountain Lion).

  • How do i superimpos​e different charts from different sequences and get them to show up while i am taking data

    I have six different frames in a sequence and I have a Build XY Graph express icon in each frame.  I want to display only one graph on the front panel, and want the data to superimpose when I go through each frame of the sequence.  I want the graph to update while I am taking data.

    Here is an example in 8.2 of how I would do it, this method may have performance issues with large data sets.
    Andrew Alford
    Production Test Engineering Technologist
    Sustainable Energy Technologies
    www.sustainableenergy.com
    Attachments:
    Superimpose XY Example.vi ‏37 KB

Maybe you are looking for

  • Is there anyone who has good experience with the E...

    I'm a current owner of E72 with a multitude of problems which i'm tired out talking about. Anyway, I'm thinking of upgrading to the E6, because of it's price in my country and also because i'm familiar with nokia phones' symbian platforms. Initially

  • FB60 & MIR7

    Dear All, In FB60 / MIR7 , How system calculate baseline date. Actually my details are like, IN vendor master, payment terms are R011 i.e  Fixed Days is 15 Days and Default for base line date is Posting Date Now in FB60 , Invpoce Date 25.04.2010 and

  • CS4 Freezes When Deleting Files

    I've had CS4 now for a few weeks and I'm finding that whenever I try to delete a .htm file, the program freezes. I've tried the idea of deleting that cache file in the configurations folder. I've even renamed my configuration folder so a new one woul

  • Installation problems DPS 5.2

    I'm building out a test environment and one software component I want to use the DS Proxy to load balance between 3 user directories, and explore some of the dn rewrite rules. I run idsktune and modified the /etc/system and /etc/init.d/inetinit files

  • Integration events???

    Hi all, I´m looking for good documentation about integration events in OD... i would like to know about integration events capabilities and how do they work. If you have a link or document ID for it, would be great. If there´s no such document can an