Several dimensions of parent

Hello

I have a dimension that has many parents.

For example, a customer dimension with dimensions parent: type of customer, risk, nationality, profession, etc. I can model such relationships using OBIEE?

Concerning

Of course, this is no problem. This simply means that parent several levels of a hierarchy - remember the dimensional hierarchy a finish at the shared child otherwise you need to model multiple logical tables with multiple hierarchies.

Excellent example of SampleApp is always the dimension of time with the different year vs rollups of exercise that end up in the shared day level:

Tags: Business Intelligence

Similar Questions

  • SmartView drilldown several dimensions at once

    Hi all

    Basically, when we do a drill down into additional SmartView or Excel, I do a dimension at the same time.

    For example, if I have the ACCOUNT and ENTITY dimensions in the lines, and if I want to perform low level drill down on these two, I'm doing a drill of low level of one dimension (say ACCOUNT) and then I do the others (ENTITY).

    I was wondering if there is a way to explore the low level on both dimensions at once so that I'd get all the combination of low level for the two dimensions.

    Thank you

    Both the Add-in and Smart View after version 11.1.2.1.102 allow you to drill in several dimensions at once. That said, IT can be very slow, especially if they are large. In the view active. you just point out that two of them as select low zoom

  • By selecting several dimensions without using the dash quick

    Hi all

    We have and requirement where we gave an option to users where they should be able to select the dimensions values to check all the reports of dashboard based on the selected values.

    As we know a way are having guest of dashboard and all the reports we need to analyze under the present, but dashboard online if we have multiple selected values values will take more time.

    Instead, we want on a single page all the dimension values will be there and we need something like option check in front of analytical and based on the selection of dimension values, we must analyze the reports available in another page of dashboard.

    Thanks in advance.

    Kind regards
    SOM

    Valerie wrote:
    Now my questions are:-
    1. is it possible to save the selected values in a global filter for future use by which we cab avoid selecting values over and over again

    Yes, there is. On the dashboard > options Page > saved selections.

  • Allow Parents to ignore sums of a special dimension to purposes of Avg

    The relevant dimesnions of my cube are as follows:

    Period
    -Jan
    -JanWeek1
    -JanWeek2
    -JanWeek3
    -JanWeek4
    -JanWeek5
    Account
    -Everyday recipes
    -References
    -References per day (formula = references / revenue days)
    Entity
    -Region1
    -Loc1111
    -Loc2222
    -Loc3333

    So, my question is how to make referrals by calculation day to give a meaning to the "Locxxxx" level and also at the level of the regions. For example, suppose that there are 5 days of income each week and 50 references of each rental per week:

    I downloaded these 5 days each week for each location (it's perhaps part of my problem?).

    So that's what I would like to see followed by what I see:

    Get the presentations a day for Loc1111 for JanWK1 = 10 (that'S RIGHT, TAKE 50/5)
    Retrieve presentations per day for Loc1111 for Jan = 10 (it IS to RIGHT IN TAKING 250/25)
    Retrieve presentations per day for the region1 for JanWK1 = 10 (this IS BAD BECAUSE IT TAKES 150/15, I NEED about HER to TAKE 150/5 (ignoring the days added up))
    Retrieve presentations per day for the region1 for Jan = 10 (it IS FALSE BECAUSE IT TAKES (3 * 50 * 5) /(3*5*5), I NEED TO TAKE (3 * 50 * 5) /(5*5) = 30)

    Appreciate any guidance! Thank you

    Published by: 800195 on May 12, 2011 11:00

    Well, you might create a member in the region of level zero "dummy" 'No_Location' (or choose an existing location) and always load the "revenue days" against which only once for each week - rather than 'Revenue days' loading at each location unique.

    And explicitly reference 'No_Location' cross-dimensional operator in your formula, i.e.

    "Referrals" / "Revenue Days"->"No_Location";
    

    If you use this approach, you must also create 'dummy' members in all other dimensions sparse parent and use the same approach it (I guess account and periods are dense in your example). It is quite common to store day counts, especially in this way.

  • Essbase dimension build shared members

    Hello

    I will have questions and he drives me crazy!

    I'm building a dimension using parent child references. The first generation of dimension puts members stored in place. The second generation implements the shared members. I am not getting any errors and still 'shared' members are not being built with shared member label. Documentation, I was under the impression that essbase should realize that they are shared and mark them accordingly during the generation of dimension?

    I can go through and manually set the shared in EA after than the build... but it kind of defeats the object.

    I feel I missed something just really hehe. Any help would be appreciated.

    Thank you

    Russell

    The only time where the outline you would save with members not be labeled as hared, is that if you have names of members in double lit in the sketch, otherwise you will get errors.  One thing you can check in the generation of dimension properties is that you do shared members is more verified and allow moves is not checked

  • Analytical functions, model indexes and multiple dimensions.

    I don't understand the notion of analytic functions (windowing clause) in the regulation of a model clause. I discovered an ordinary table as one-dimensional, and I can understand the concept of window, just like a line on a segment line. However with the models, there are several dimensions, so I guess that the window to become a kind of cube, instead of a line segment. But I'm not.

    For example, I have a matrix sparse 2D, with 5 values non-zero:
    select * from field
      where f is not null
    
    X     Y     F
    -----------------
    5     8     X
    6     6     X
    6     8     X
    7     7     X
    7     8     X
    I guess that the following clause of the model
    with t as(
      select *
        from field
       model
         reference old_field
           on
           (
             select * from field
           )
           dimension by (x, y)
           measures     (f)
         main new_field
           dimension by (x, y)
           measures     (cast(f as varchar2(3)) f)
           rules
           (
             f[x,y] = max(old_field.f) over (order by old_field.y range between 1 preceding and 1 following)
           ))
    select * from t
      where f is not null
    to assign for each cell up among its neighbors vertical 2. Just like
    0 0 0      0 X 0
    0 X 0  ->  X X 0
    X 0 0      X X 0
    But the real result is all NULL values.

    Hello

    with a as
    (
    select
    level L
    from
    dual
    connect by level < 4
    )
    
    select
         X
         ,Y
         ,Z
         ,X*3+Y
    
    from
         a          A1
         ,A     A2
    
    model
         dimension by ( A1.L X, A2.L Y )
         MEASURES (0 Z)
         RULES
         (
         Z[X,Y] = COUNT(Z) OVER (ORDER BY X * 3 + Y RANGE BETWEEN 1 PRECEDING AND 1 FOLLOWING)
         )
    
    X Y Z X*3+Y
    - - - -----
    1 1 2     4
    1 2 3     5
    1 3 3     6
    2 1 3     7
    2 2 3     8
    2 3 3     9
    3 1 3    10
    3 2 3    11
    3 3 2    12 
    
     9 rows selected 
    

    for x, y = 1.1, there is no previous rank if it is not counted. current line + line = 2
    for x, y = 1, 2, the previous line + line current + more rank = 3
    for x, y = 1.3 the previous line + line current + more rank = 3
    for x, y = 2, 1, the previous line + line current + more rank = 3
    ...
    for x, y = 3, 2 the previous line + line current + more rank = 3
    for x, y = 3, 3 the stored previous + current line = 2. There is no next line.

    What exectly not understand you?

    Kind regards
    Peter

  • Dimensions of the ASO

    For purposes of recovery is the ASO cube that is robust enough to manage several dimensions - I'm talking about 10 to 15 in a cube?
    Thank you

    10-15 size is perfectly feasible if the cube is well designed.

  • Error with BIEE11.1.1.5 Parent-child hierarchies

    Hello

    I use BIEE11.1.1.5, I created a logic Dimensions with Parent-child hierarchies.

    In response, I move named 'H5 Sales Rep' hierarchies, and then display the results,

    There error, the following error message:

    ODBC driver returned an error (SQLExecDirectW).
    Error details
    Error codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error occurred. [nQSError: 43113] The message returned by OBIS. [nQSError: 43119] Query Failed: [nQSError: 22056] to use the line functions, you must associate a Table close Source logical Table "LTS1 Sales Rep. (HY000)
    Publ. SQL: SELECT 0 s_0, "Sample Sales". "" Sales Rep ". "" Sales Rep Name ' s_1, CASE WHEN ISLEAF ("Sample Sales" "." ") Sales Rep. ("' H5 Sales Rep") THEN 1 ELSE 0 END s_2, IDOF ("Sample Sales" "." ") Sales Rep. ("' S_3 H5 Sales Rep"), PARENT ("" Sample Sales "". "") Sales Rep. ("' S_4 H5 Sales Rep") OF "Sample Sales" WHERE ISROOT ("" Sample Sales "". "") Sales Rep. ("' H5 sales representative")

    someone knows why?
    Thank you!

    Hi Leo,

    You have configured table of closing? http://www.rittmanmead.com/2010/11/Oracle-BI-EE-11g-parent-child-hierarchies-multiple-modeling-methods/

    Also, be sure to make the changes to hierarchy in offline mode.

    Kind regards
    DpKa

  • 11.1.2.1 planning dynamic Calc Parent does not roll their children:

    I have a form where I have all the members of level 0 in the POV is a member of begBalance period (which should be included in the application).

    On the lines, I have the account hierarchy and on the columns I have a branch of the entity dimension.

    Parents in the dimension account the value dynamic calc and all children are set to be aggregated as a sum. Parents in the entity dimension are defined to store, with children, the overall value as sum.

    The form allows me to enter data into Level0 combinations, however on behalf of parents, which I expect to show the sum after a backup and refresh shows no data and parents of the entity do show no data even after the calculation of the form with the form to calculate rule.

    Any ideas why this might be happening?

    Agnete

    OK, I thought about it. I had a member in another defined forever total dimension (^). I thought it would be something simple that I forgot.

  • dimension security question

    I have several dimensions, including two scenarios (real, Budget, Flash) and Versions (Version1, Version2, version 3). I wish to restrict write access to Flash and Version1 while leaving a read access to other combinations.

    If I put writing acess on Version1 and Flash and read acess on real that restricts write access to Version1 Flash only or write on Version1 access overrides the read access to the real?

    Cross-dimensional security is not possible in planning, if it's a read access to a member of its same for all possible combinations.

    See you soon... !!!

  • How to apply security on dimension

    Dear all,

    I know that we can not on the security on the dimension (head/parent) apperantly application we can apply security only for the dimension parent child and descendants.
    and somehow on my financial reporting the combination already fix rate...,
    so I can not grant access to the report to certain user because I can't apply security based on the combination ("size") of the report

    is there a way I can apply security dimension?

    or y at - it another option do?

    respect and thanks

    In most cases, a new Member is created under the side and then put all members under this, this way you can apply security.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Question about create Dimension

    Hello

    I read the document Oracle Concepts and on page 4-22, he presented a statement of 'CREATE the DIMENSION' used to create the "customers_dim" dimension in the example schema SH.

    The presented statement is:
    CREATE DIMENSION customers_dim
       LEVEL customer IS (customers.cust_id)
       LEVEL city IS (customers.cust_city)
       LEVEL state IS (customers.cust_state_province)
       LEVEL country IS (countries.country_id)
       LEVEL subregion IS (countries.country_subregion)
       LEVEL region IS (countries.country_region)
       HIERARCHY geog_rollup (
         customer CHILD OF
         city CHILD OF
         state CHILD OF
         country CHILD OF
         subregion CHILD OF
         region
      JOIN KEY (customers.country_id) REFERENCES country )
      ATTRIBUTE customer DETERMINES
        (cust_first_name, cust_last_name, cust_gender,
        cust_marital_status, cust_year_of_birth,
        cust_income_level, cust_credit_limit)
      ATTRIBUTE country DETERMINES (countries.country_name);
    When I published the statement above (Word for word on the document), I got the following error:
    SQL> @customers_dim
    LEVEL customer IS (customers.cust_id)
          *
    ERROR at line 2:
    ORA-30371: column cannot define a level in more than one dimension
    I found the following using Google:
    Cause:     A column was used in the definition of a level after it had already
            been used to define a level in a different dimension.
    But I do not see how the cust_id is to define a level in several dimensions. There is probably a trivial error somewhere, but I don't know enough yet about the dimensions to understand.

    Help is appreciated, thank you,

    John.

    Hi John,.

    There is probably a trivial mistake somewhere

    Yes, probably the dimension itself already exists:

    select * from all_dimensions where owner = 'SH';
    
  • Oracle OLAP: same values according to dimensions members

    We had a request from a customer who says:
    By Essbase, the same value of dimension member can exist in several dimensions. for example if we have an account with Member 1001 dimension, it is not possible to have the dimension of product with the same value of Member 1001. It is essentially because it implements Essbase as a shared member. Apparently, Essbase Excel-addin will not know what dimension to search for if both have the same values.

    According to our understanding, there is no such restriction in Oracle OLAP both during cube generation or querying through Excel add-in. that is to say we can have the size of account with 1001 members and same value member can exist in a product dimension. Please notify and if anyone has any reference to all documentation in this regard please let us know.

    Hello

    You're right - there is no such limitation in Oracle OLAP.

    A dimension value must be unique within a given dimension, but may be repeated in other dimensions.

    I have all the documentation, but it's really easy to prove using the OLAP in AWM worksheet, for example:

    AW create test
    set the text of side dim1
    maintain dim1 add 'member1 '.
    report dim1
    set the text of side dim2
    maintain dim2 add 'member1 '.
    report dim2
    AW detach test
    AW delete test

    I hope this helps

    Thank you

    Stuart Bunby

    OLAP blog: http://oracleOLAP.blogspot.com
    OLAP Wiki: http://wiki.oracle.com/page/Oracle+OLAP+Option
    OLAP OTN: http://www.oracle.com/technology/products/bi/olap/index.html
    DW OTN: http://www.oracle.com/technology/products/bi/db/11g/index.html

  • Download the UDA in files .ads.

    Hi gurus,

    I am trying to download UDA .ads My.cnf in EPMA application, but the UDA isn't getting associated with members.

    Here is the content of the file:

    ! Section = Dimensions

    ' Name. DimensionClass | DimensionAlias | DimDataStorage

    Entity | Entity | Entity | NeverShare

    ! Article = DimensionAssociations

    ' BaseDimension | Property | TargetDimension

    Entity | UDA | UDA

    ! Hierarchies = entity

    "Parent | Child | Dtx200 | IsPrimary | MemberValidForPlan1 | Plan1Aggregation | Data type | UDA = UDA

    Ent100 | D4421 | StoreData | THERE | THERE | + | Not specified | TestUDA1

    Can you get it someone please let me know if there is an error in the download file.

    I can see that 2 children under dimension "UDA". HSP_NOLINK and HSP_UDF. Creating new UDA appear as children of the UDA dimension? IE TestUDA1 would appear as a brother of HSP_UDF?

    If I have more than 2 of the UDA should I create several dimensions with type = UDA.

    Thank you

    ~ RN.

    Thanks Amarnath,

    Manually, I added a UDA, taken from ads and then added the UDA in the format.

    I had not added the members of the UDA UDA before joining, dimension that missed me.

    Thank you

    RN

  • Problem EPMA - request for Essbase BSO - UDA

    Hello
    We have a shared in EPMA hierarchy that we use to maintain the Dimensions in applications.
    Among the sizes that I need in the Essbase BSO application - two of them have specific UDAs assigned to them. (two for each Member in these dimensions - UDAs can be shared between dimensions)

    Dimension_A
    -Member_A1 (UDAx, UDAy)
    -Member_A2 (UDAp, UDAq)

    Dimension_B
    -Member_B1 (UDAx, UDAy)
    -Member_B2 (UDAp, UDAq)

    UDA
    -UDAx
    UDAy-
    -UDAp
    -UDAq

    But when I deploy the app, I see only a UDA update in the Essbase outline (checked via EAS)
    Dimension_A
    -Member_A1 (UDAx)
    -Member_A2 (UDAp)

    Dimension_B
    -Member_B1 (UDAx)
    -Member_B2 (UDAp)

    I don't know why it isn't updated outline properly - can anyone suggest what could be the problem?
    I tried redeploying several times / deleting the dimensions by adding still / even rolled out a new app from scratch - no luck.


    Concerning
    Ankur

    When you add more than 1 UDA. You need to perform a redeployment after the addition of a new UDA.

    Add a new UDA Member-> remove the OLD.
    Deploy.
    Back to EPMA-> add the OLD to the new UDA
    Deploy again.

    Do this for the first of the dimension hierarchy

    Ex:

    DIM [Dimension]
    --Also [parent]
    -A1 [child /Lvl0]
    -A2 [child /Lvl0]
    ------B
    -------------B1
    -------------B2

    Do the changes described above for A, A1 and A2. Once done, the changes should be reflected at B, B1 and B2 and others, as appropriate

    The changes should now be seen in Essbase.

    Published by: 927809 on October 19, 2012 04:51

    Published by: 927809 on October 19, 2012 04:56

    Published by: 927809 on October 19, 2012 04:59

Maybe you are looking for