Dynamic Hierarchy  - Error

Hi Friends,
When I opened the Dynamic Hierarchy to edit  ( Esubmit-->Manage open Dynamic Hierarchy) .. I am getting the error.
This key is already associate with an element of this collection.
Pls send your thoughts on this..
Regards
CSM Reddy

Hi Guys,
I found the  following relevant notes for this error.
Visual Basic for Applications Reference - Visual Studio 6.0
This key is already associated with an element of this collection (Error 457)
A key is a string specified in the Add method that uniquely identifies a specific member of a collection. This error has the following cause and solution:
u2022     You specified a key for a collection member that already identifies another member of the collection.
Choose a different key for this member.
For additional information, select the item in question and press F1.
But how to  choose a different key for this member........
Any thoughts on this pls..........
Regards
CSM Reddy

Similar Messages

  • WriteTreeData: Error while saving Dynamic Hierarchy Changes

    Hi Experts,
    I'm encountering an error "writeTreeData: Error in clsMain::writeData : Type mismatch" when I save the changes that I've made in the Dynamic Hierarchy Editor, does anyone encountered this error before? I'm using BPC 7.0 MS.
    Thanks,
    MVS

    HI gUYS
    i've encountered this problem and my only solution is to see if all the fields in the above portion of the DHE is a base member
    example
    for my time dimension i've noticed that it is in the parent member
    time = 2008.yr
    if just replace it with
    time = 2008.dec
    and then it works
    Thanks
    CSD

  • Evdre error using "dynamic hierarchy expansion" option

    Dear all,
    I'm trying to expand the evdre using the option "dynamic hierarchy expansion", but I get an error in function EVDRE(). This is the error:
    #ERR: Consolidation Mode ON - Only keyword ""Blank"" is applicable for dimension ENTITY when with dimension GROUPS.
    I have not put any value on the memberset of of the entity expansion according with the error message. Here you have the example:
    PARAMETER      EXPANSION 1           EXPANSION 2
    ExpandIn            COL                 COL
    Dimension          GROUPS                 ENTITY
    MemberSet         DEP,PARENTAFTER     
    BeforeRange          
    AfterRange          
    Suppress            Y     
    Insert          
    The following link helps to understand how it works: http://help.sap.com/saphelp_bpc75/helpdata/en/5A/69200C88AA40C9B18844A25259F147/frameset.htm
    Thanks,
    Ru

    Hi Teko,
    Thanks for the information.
    In that case, I think Active X has not been enabled in IE.
    Kindly follow the below step.
    In IE, Tools-> Internet Optios -> Security -> Security level -> Change it to medium or go to custom level -> and enable Active X
    Hope this helps.

  • Error while saving dynamic hierarchy

    Hi,
    I'm configuring consolidation on BPc NW 7.5.
    I get an error message while I try to save Dynamic Hierarchy. The error message says that : "Error running default logic ()".
    Pleaes note that I dont have anything in the default logic.
    Please help.
    Regards
    SSC

    Hello SSC,
    I believe that this SAP KBA will guide you on this:
    1523410 - BPC 7.x NW Getting "Error running default logic () "
    Best regards,
    Vin

  • Dynamic Hierarchy - SAP BPC 7.5 MS

    Hello everyone. I am running SAP BPC 7.5 on the Microsoft Platform.
    The issue I am running into is that I have children entities that have two parent entities. The Entity Dimension has our traditional organization chart. However, our reports require an alternate hierarchy.
    Example:
    Company A is a child of Company ABC in the org chart
    however for reporting purposes
    Company A is a child of Company XYZ
    I need to pull in company XYZ in the report so that Company A is reported as being a part of it.
    I need to be able to set up something using a dimension property that will allow me to pull in this hierarchy into our reports, WITHOUT using expansions.
    The reason I cannot use expansions is some of the report will use the traditional org chart and the other portion of the report will use the alternate hierarchy.
    I there some way to do this without using expansions?
    I have setup a dimension property called "GROUP" that identifies the alternate hierarchy. However, the only way I know to pull it in the report is through the use of expansions in the "MembersSet" filter.
    I have also tried to use the "Dynamic Hierarchy Editor" only to discover that you have to define hierarchies for specific time periods, and still use expansions.
    Any suggestions? I feel like I am missing something.
    Thank you in advance.
    Will

    Hi Will,
    From what you describe I think an alternate (second/ H2) hierarchy is needed.
    You can try adding a second hierarchy to your Entity dimension member sheet (PARENTH2) to see if that meets your requirement.
    You can only create reports that have a hard-coded row or column key range or a dynamic row/column key range  defined in the memberset field.
    HTH,
    John

  • Dynamic hierarchy in parent child hierarchy table??

    Do you have any experience to handle the requirement of dynamic hierarchy in universe/webi?
    We have some data in parent child hierarchy as below u201CCustomeru201D table.
    Customer
    Parent          Child
    Z                  A
    Z                  B
    A                  AA
    B                  BB
    AA               AAA
    For example, Company Z is the parent company of Company A.
    Another table, Amount is the amount value of different Customers.
    Amount
    ID               Amt
    AA               10
    AAA            1
    BB                2
    Is there any functionality in Universe designer to build related Classes and objects, So that the web intelligence documents represent the following report with the drilling results?
    When we want to see the ID and Amt, the expected result should be:
    Z                13
    when we drill down Z
    the result should be:
    A                11
    B                2
    when we drill down A:
    the result should be:
    AA              11
    notes **
    the level of hierarchy is dynamic
    Any suggestion is appreciated.  Thanks.

    Hi,
    The only way to do it is to create recursive derived table that flatten you parent child hierarchy with a given maximum depth.
    Here is a sample I built a long time ago to flatten a parent-child hierarchy on Employees table in Foodmart database (SQL Server).
    Didier
    SELECT DISTINCT
         Z.employee_id,
         A.supervisor_id_1,
         A.employee_id_1,
         A.full_name_1,
         A.supervisor_id_2,
         A.employee_id_2,
         A.full_name_2,
         A.supervisor_id_3,
         A.employee_id_3,
         A.full_name_3,
         A.supervisor_id_4,
         A.employee_id_4,
         A.full_name_4,
         A.supervisor_id_5,
         A.employee_id_5,
         A.full_name_5,
         A.supervisor_id_6,
         A.employee_id_6,
         A.full_name_6,
         Z.supervisor_id AS supervisor_id_7,
         Z.employee_id AS employee_id_7,
         Z.full_name AS full_name_7
    FROM employee Z,
         SELECT DISTINCT
              A.supervisor_id_1,
              A.employee_id_1,
              A.full_name_1,
              A.supervisor_id_2,
              A.employee_id_2,
              A.full_name_2,
              A.supervisor_id_3,
              A.employee_id_3,
              A.full_name_3,
              A.supervisor_id_4,
              A.employee_id_4,
              A.full_name_4,
              A.supervisor_id_5,
              A.employee_id_5,
              A.full_name_5,
              Z.supervisor_id AS supervisor_id_6,
              Z.employee_id AS employee_id_6,
              Z.full_name AS full_name_6
         FROM employee Z,
              SELECT DISTINCT
                   A.supervisor_id_1,
                   A.employee_id_1,
                   A.full_name_1,
                   A.supervisor_id_2,
                   A.employee_id_2,
                   A.full_name_2,
                   A.supervisor_id_3,
                   A.employee_id_3,
                   A.full_name_3,
                   A.supervisor_id_4,
                   A.employee_id_4,
                   A.full_name_4,
                   Z.supervisor_id AS supervisor_id_5,
                   Z.employee_id AS employee_id_5,
                   Z.full_name AS full_name_5
              FROM employee Z,
                   SELECT DISTINCT
                        A.supervisor_id_1,
                        A.employee_id_1,
                        A.full_name_1,
                        A.supervisor_id_2,
                        A.employee_id_2,
                        A.full_name_2,
                        A.supervisor_id_3,
                        A.employee_id_3,
                        A.full_name_3,
                        Z.supervisor_id AS supervisor_id_4,
                        Z.employee_id AS employee_id_4,
                        Z.full_name AS full_name_4
                   FROM employee Z,
                        SELECT DISTINCT
                             A.supervisor_id_1,
                             A.employee_id_1,
                             A.full_name_1,
                             A.supervisor_id_2,
                             A.employee_id_2,
                             A.full_name_2,
                             Z.supervisor_id AS supervisor_id_3,
                             Z.employee_id AS employee_id_3,
                             Z.full_name AS full_name_3
                        FROM employee Z,
                             SELECT DISTINCT
                                  A.supervisor_id_1,
                                  A.employee_id_1,
                                  A.full_name_1,
                                  Z.supervisor_id AS supervisor_id_2,
                                  Z.employee_id AS employee_id_2,
                                  Z.full_name AS full_name_2
                             FROM employee Z,
                                  SELECT DISTINCT
                                       supervisor_id AS supervisor_id_1,
                                       employee_id AS employee_id_1,
                                       full_name AS full_name_1
                                   FROM employee
                                   WHERE supervisor_id = 0 OR supervisor_id IS NULL
                             ) A
                             WHERE A.employee_id_1 = Z.supervisor_id
                        ) A
                        WHERE A.employee_id_2 = Z.supervisor_id
                   ) A
                   WHERE A.employee_id_3 = Z.supervisor_id
              ) A
              WHERE A.employee_id_4 = Z.supervisor_id
         ) A
         WHERE A.employee_id_5 = Z.supervisor_id
    ) A
    WHERE A.employee_id_6 = Z.supervisor_id
    UNION
    SELECT DISTINCT
         A.employee_id_6 AS employee_id,
         A.supervisor_id_1,
         A.employee_id_1,
         A.full_name_1,
         A.supervisor_id_2,
         A.employee_id_2,
         A.full_name_2,
         A.supervisor_id_3,
         A.employee_id_3,
         A.full_name_3,
         A.supervisor_id_4,
         A.employee_id_4,
         A.full_name_4,
         A.supervisor_id_5,
         A.employee_id_5,
         A.full_name_5,
         A.supervisor_id_6,
         A.employee_id_6,
         A.full_name_6,
         NULL AS supervisor_id_7,
         NULL AS employee_id_7,
         NULL AS full_name_7
    FROM employee Z,
         SELECT DISTINCT
              A.supervisor_id_1,
              A.employee_id_1,
              A.full_name_1,
              A.supervisor_id_2,
              A.employee_id_2,
              A.full_name_2,
              A.supervisor_id_3,
              A.employee_id_3,
              A.full_name_3,
              A.supervisor_id_4,
              A.employee_id_4,
              A.full_name_4,
              A.supervisor_id_5,
              A.employee_id_5,
              A.full_name_5,
              Z.supervisor_id AS supervisor_id_6,
              Z.employee_id AS employee_id_6,
              Z.full_name AS full_name_6
         FROM employee Z,
              SELECT DISTINCT
                   A.supervisor_id_1,
                   A.employee_id_1,
                   A.full_name_1,
                   A.supervisor_id_2,
                   A.employee_id_2,
                   A.full_name_2,
                   A.supervisor_id_3,
                   A.employee_id_3,
                   A.full_name_3,
                   A.supervisor_id_4,
                   A.employee_id_4,
                   A.full_name_4,
                   Z.supervisor_id AS supervisor_id_5,
                   Z.employee_id AS employee_id_5,
                   Z.full_name AS full_name_5
              FROM employee Z,
                   SELECT DISTINCT
                        A.supervisor_id_1,
                        A.employee_id_1,
                        A.full_name_1,
                        A.supervisor_id_2,
                        A.employee_id_2,
                        A.full_name_2,
                        A.supervisor_id_3,
                        A.employee_id_3,
                        A.full_name_3,
                        Z.supervisor_id AS supervisor_id_4,
                        Z.employee_id AS employee_id_4,
                        Z.full_name AS full_name_4
                   FROM employee Z,
                        SELECT DISTINCT
                             A.supervisor_id_1,
                             A.employee_id_1,
                             A.full_name_1,
                             A.supervisor_id_2,
                             A.employee_id_2,
                             A.full_name_2,
                             Z.supervisor_id AS supervisor_id_3,
                             Z.employee_id AS employee_id_3,
                             Z.full_name AS full_name_3
                        FROM employee Z,
                             SELECT DISTINCT
                                  A.supervisor_id_1,
                                  A.employee_id_1,
                                  A.full_name_1,
                                  Z.supervisor_id AS supervisor_id_2,
                                  Z.employee_id AS employee_id_2,
                                  Z.full_name AS full_name_2
                             FROM employee Z,
                                  SELECT DISTINCT
                                       supervisor_id AS supervisor_id_1,
                                       employee_id AS employee_id_1,
                                       full_name AS full_name_1
                                   FROM employee
                                   WHERE supervisor_id = 0 OR supervisor_id IS NULL
                             ) A
                             WHERE A.employee_id_1 = Z.supervisor_id
                        ) A
                        WHERE A.employee_id_2 = Z.supervisor_id
                   ) A
                   WHERE A.employee_id_3 = Z.supervisor_id
              ) A
              WHERE A.employee_id_4 = Z.supervisor_id
         ) A
         WHERE A.employee_id_5 = Z.supervisor_id
    ) A
    UNION
    SELECT DISTINCT
         A.employee_id_5 AS employee_id,
         A.supervisor_id_1,
         A.employee_id_1,
         A.full_name_1,
         A.supervisor_id_2,
         A.employee_id_2,
         A.full_name_2,
         A.supervisor_id_3,
         A.employee_id_3,
         A.full_name_3,
         A.supervisor_id_4,
         A.employee_id_4,
         A.full_name_4,
         A.supervisor_id_5,
         A.employee_id_5,
         A.full_name_5,
         NULL AS supervisor_id_6,
         NULL AS employee_id_6,
         NULL AS full_name_6,
         NULL AS supervisor_id_7,
         NULL AS employee_id_7,
         NULL AS full_name_7
    FROM employee Z,
         SELECT DISTINCT
              A.supervisor_id_1,
              A.employee_id_1,
              A.full_name_1,
              A.supervisor_id_2,
              A.employee_id_2,
              A.full_name_2,
              A.supervisor_id_3,
              A.employee_id_3,
              A.full_name_3,
              A.supervisor_id_4,
              A.employee_id_4,
              A.full_name_4,
              Z.supervisor_id AS supervisor_id_5,
              Z.employee_id AS employee_id_5,
              Z.full_name AS full_name_5
         FROM employee Z,
              SELECT DISTINCT
                   A.supervisor_id_1,
                   A.employee_id_1,
                   A.full_name_1,
                   A.supervisor_id_2,
                   A.employee_id_2,
                   A.full_name_2,
                   A.supervisor_id_3,
                   A.employee_id_3,
                   A.full_name_3,
                   Z.supervisor_id AS supervisor_id_4,
                   Z.employee_id AS employee_id_4,
                   Z.full_name AS full_name_4
              FROM employee Z,
                   SELECT DISTINCT
                        A.supervisor_id_1,
                        A.employee_id_1,
                        A.full_name_1,
                        A.supervisor_id_2,
                        A.employee_id_2,
                        A.full_name_2,
                        Z.supervisor_id AS supervisor_id_3,
                        Z.employee_id AS employee_id_3,
                        Z.full_name AS full_name_3
                   FROM employee Z,
                        SELECT DISTINCT
                             A.supervisor_id_1,
                             A.employee_id_1,
                             A.full_name_1,
                             Z.supervisor_id AS supervisor_id_2,
                             Z.employee_id AS employee_id_2,
                             Z.full_name AS full_name_2
                        FROM employee Z,
                             SELECT DISTINCT
                                  supervisor_id AS supervisor_id_1,
                                  employee_id AS employee_id_1,
                                  full_name AS full_name_1
                              FROM employee
                              WHERE supervisor_id = 0 OR supervisor_id IS NULL
                        ) A
                        WHERE A.employee_id_1 = Z.supervisor_id
                   ) A
                   WHERE A.employee_id_2 = Z.supervisor_id
              ) A
              WHERE A.employee_id_3 = Z.supervisor_id
         ) A
         WHERE A.employee_id_4 = Z.supervisor_id
    ) A
    UNION
    SELECT DISTINCT
         A.employee_id_4 AS employee_id,
         A.supervisor_id_1,
         A.employee_id_1,
         A.full_name_1,
         A.supervisor_id_2,
         A.employee_id_2,
         A.full_name_2,
         A.supervisor_id_3,
         A.employee_id_3,
         A.full_name_3,
         A.supervisor_id_4,
         A.employee_id_4,
         A.full_name_4,
         NULL AS supervisor_id_5,
         NULL AS employee_id_5,
         NULL AS full_name_5,
         NULL AS supervisor_id_6,
         NULL AS employee_id_6,
         NULL AS full_name_6,
         NULL AS supervisor_id_7,
         NULL AS employee_id_7,
         NULL AS full_name_7
    FROM employee Z,
         SELECT DISTINCT
              A.supervisor_id_1,
              A.employee_id_1,
              A.full_name_1,
              A.supervisor_id_2,
              A.employee_id_2,
              A.full_name_2,
              A.supervisor_id_3,
              A.employee_id_3,
              A.full_name_3,
              Z.supervisor_id AS supervisor_id_4,
              Z.employee_id AS employee_id_4,
              Z.full_name AS full_name_4
         FROM employee Z,
              SELECT DISTINCT
                   A.supervisor_id_1,
                   A.employee_id_1,
                   A.full_name_1,
                   A.supervisor_id_2,
                   A.employee_id_2,
                   A.full_name_2,
                   Z.supervisor_id AS supervisor_id_3,
                   Z.employee_id AS employee_id_3,
                   Z.full_name AS full_name_3
              FROM employee Z,
                   SELECT DISTINCT
                        A.supervisor_id_1,
                        A.employee_id_1,
                        A.full_name_1,
                        Z.supervisor_id AS supervisor_id_2,
                        Z.employee_id AS employee_id_2,
                        Z.full_name AS full_name_2
                   FROM employee Z,
                        SELECT DISTINCT
                             supervisor_id AS supervisor_id_1,
                             employee_id AS employee_id_1,
                             full_name AS full_name_1
                         FROM employee
                         WHERE supervisor_id = 0 OR supervisor_id IS NULL
                   ) A
                   WHERE A.employee_id_1 = Z.supervisor_id
              ) A
              WHERE A.employee_id_2 = Z.supervisor_id
         ) A
         WHERE A.employee_id_3 = Z.supervisor_id
    ) A
    UNION
    SELECT DISTINCT
         A.employee_id_3 AS employee_id,
         A.supervisor_id_1,
         A.employee_id_1,
         A.full_name_1,
         A.supervisor_id_2,
         A.employee_id_2,
         A.full_name_2,
         A.supervisor_id_3,
         A.employee_id_3,
         A.full_name_3,
         NULL AS supervisor_id_4,
         NULL AS employee_id_4,
         NULL AS full_name_4,
         NULL AS supervisor_id_5,
         NULL AS employee_id_5,
         NULL AS full_name_5,
         NULL AS supervisor_id_6,
         NULL AS employee_id_6,
         NULL AS full_name_6,
         NULL AS supervisor_id_7,
         NULL AS employee_id_7,
         NULL AS full_name_7
    FROM employee Z,
         SELECT DISTINCT
              A.supervisor_id_1,
              A.employee_id_1,
              A.full_name_1,
              A.supervisor_id_2,
              A.employee_id_2,
              A.full_name_2,
              Z.supervisor_id AS supervisor_id_3,
              Z.employee_id AS employee_id_3,
              Z.full_name AS full_name_3
         FROM employee Z,
              SELECT DISTINCT
                   A.supervisor_id_1,
                   A.employee_id_1,
                   A.full_name_1,
                   Z.supervisor_id AS supervisor_id_2,
                   Z.employee_id AS employee_id_2,
                   Z.full_name AS full_name_2
              FROM employee Z,
                   SELECT DISTINCT
                        supervisor_id AS supervisor_id_1,
                        employee_id AS employee_id_1,
                        full_name AS full_name_1
                    FROM employee
                    WHERE supervisor_id = 0 OR supervisor_id IS NULL
              ) A
              WHERE A.employee_id_1 = Z.supervisor_id
         ) A
         WHERE A.employee_id_2 = Z.supervisor_id
    ) A
    UNION
    SELECT DISTINCT
         A.employee_id_2 AS employee_id,
         A.supervisor_id_1,
         A.employee_id_1,
         A.full_name_1,
         A.supervisor_id_2,
         A.employee_id_2,
         A.full_name_2,
         NULL AS supervisor_id_3,
         NULL AS employee_id_3,
         NULL AS full_name_3,
         NULL AS supervisor_id_4,
         NULL AS employee_id_4,
         NULL AS full_name_4,
         NULL AS supervisor_id_5,
         NULL AS employee_id_5,
         NULL AS full_name_5,
         NULL AS supervisor_id_6,
         NULL AS employee_id_6,
         NULL AS full_name_6,
         NULL AS supervisor_id_7,
         NULL AS employee_id_7,
         NULL AS full_name_7
    FROM employee Z,
         SELECT DISTINCT
              A.supervisor_id_1,
              A.employee_id_1,
              A.full_name_1,
              Z.supervisor_id AS supervisor_id_2,
              Z.employee_id AS employee_id_2,
              Z.full_name AS full_name_2
         FROM employee Z,
              SELECT DISTINCT
                   supervisor_id AS supervisor_id_1,
                   employee_id AS employee_id_1,
                   full_name AS full_name_1
               FROM employee
               WHERE supervisor_id = 0 OR supervisor_id IS NULL
         ) A
         WHERE A.employee_id_1 = Z.supervisor_id
    ) A
    UNION
    SELECT DISTINCT
         A.employee_id_1 AS employee_id,
         A.supervisor_id_1,
         A.employee_id_1,
         A.full_name_1,
         NULL AS supervisor_id_2,
         NULL AS employee_id_2,
         NULL AS full_name_2,
         NULL AS supervisor_id_3,
         NULL AS employee_id_3,
         NULL AS full_name_3,
         NULL AS supervisor_id_4,
         NULL AS employee_id_4,
         NULL AS full_name_4,
         NULL AS supervisor_id_5,
         NULL AS employee_id_5,
         NULL AS full_name_5,
         NULL AS supervisor_id_6,
         NULL AS employee_id_6,
         NULL AS full_name_6,
         NULL AS supervisor_id_7,
         NULL AS employee_id_7,
         NULL AS full_name_7
    FROM employee Z,
         SELECT DISTINCT
              supervisor_id AS supervisor_id_1,
              employee_id AS employee_id_1,
              full_name AS full_name_1
          FROM employee
          WHERE supervisor_id = 0 OR supervisor_id IS NULL
    ) A

  • Configuration Manager 2012 SP1 Prerequisite Checker returns "Migration active source hierarchy" error

    Hello, 
    I am getting "Migration active source hierarchy" error in the SCCM 2012 SP1 prerequisite checker on the CM 2012 primary site. The error says "There is an active hierarchy configuration for the migration. Please stop data gathering for each
    source site in the source hierarchy." However, actually there is no migration source hierarchy configured and there are no migration jobs displayed in CM 2012 console. We used to configure this feature to migrate CM 2007 to current CM 2012 without service
    pack two years ago and we have deleted these configurations. 
    In migmctrl.log, the following record is being generated every 60 minutes. 
    ======================================================
    Connection string = Data Source=xxxxx;Initial Catalog=xxxxx;Integrated Security=True;Persist Security Info=False;MultipleActiveResultSets=True;Encrypt=True;TrustServerCertificate=False;Application Name="Migration Manager".~~  $$<SMS_MIGRATION_MANAGER><04-07-2014
    01:01:53.710+300><thread=6992 (0x1B50)>
    Created new sqlConnection to xxxxx~~  $$<SMS_MIGRATION_MANAGER><04-07-2014 01:01:53.741+300><thread=6992 (0x1B50)>
                                                                    [Worker]: Start two step scheduling
    for MIG_Job~~  $$<SMS_MIGRATION_MANAGER><04-07-2014 01:01:53.741+300><thread=6992 (0x1B50)>
                                                                    [Worker]:        
    Step 1. Query the schedule items that was running or requested to start immediately ...~~  $$<SMS_MIGRATION_MANAGER><04-07-2014 01:01:53.741+300><thread=6992 (0x1B50)>
                                                                    [Worker]:        
    Step 2. Query the first item in order of DateNextRun ...~~  $$<SMS_MIGRATION_MANAGER><04-07-2014 01:01:53.819+300><thread=6992 (0x1B50)>
                                                                    [Worker]:        
            No item found. Sleep until the next event.~~  $$<SMS_MIGRATION_MANAGER><04-07-2014 01:01:53.882+300><thread=6992 (0x1B50)>
                                                                    [Worker]: End two step scheduling
    for MIG_Job~~  $$<SMS_MIGRATION_MANAGER><04-07-2014 01:01:53.882+300><thread=6992 (0x1B50)>
    [MigMCtrl]: the workitem queue is full!~  $$<SMS_MIGRATION_MANAGER><04-07-2014 01:01:53.882+300><thread=6992 (0x1B50)>
    [MigMCtrl]: WAIT 3 event(s) for 60 minute(s) and 0 second(s).~  $$<SMS_MIGRATION_MANAGER><04-07-2014 01:01:53.882+300><thread=6992 (0x1B50)>
    ======================================================
    I am not really sure where to look into in this case. I would appreciate any advice. 

    Hi,
    Could you please upload the full migmctrl.log?
    How about specifying a source hierarchy with the same name and password of the hierarchy before in the console, then click Clean Up Migration Data?
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Report Designer - Summary page based on 3 queries with dynamic hierarchy?

    Dear All,
    I am trying to build a workbook based on 3 queries with a summary page that pulls in the query data into one page.
    Each query is based on one key figure that is split by profit centre hierarchy.
    i.e.
    Turnover
    -Profit Centre Node A
    -Profit Centre Node B
    -Profit Centre Node C
    > Profit Centre C1
    > Profit Centre C2
    The user can dril-down into each query at whatever level of the PC Hierarchy they wish.
    My issue is trying to structure a dynamic summary page that pulls in all rows from the individual queries regardless of the number of profit centre hierarchies contained in each. i.e. The summary could have 5 PCs for queries 1,2 & 3 in one execution, but then 10 for all queries in another execution.
    Question:
    Can report designer be used to make a dynamic summary sheet that will capture all rows from the individual query? or would an excel macro summary be the only way of doing this?

    Hi Ingo,
    After much testing and looking into trace etc. we have got this thing to behave as desired. Basically, following two things,
    - no reference to CR Dynamic Hierarchy variable on report. There were places where this parameter was being refered and causing grief. We tested with brand new report.
    - making sure that on query Cost center restriction is placed in Characteristic Restriction area of Filter tab of query, as oppose to default value area filter tab.
    With above in place, the published report in infoview behave as desired, i.e. proper hierarchy structure in cost center prompt and group tree and only desired nodes showing on report.
    Thank you for all you pointers
    Regards
    IMS

  • Processor Core Cache Hierarchy Error in event viewer and BSOD

    Hello everyone. Lately I have had some problems with random freezing, and I can't figure out what's causing it, hoping to get some help here.
    I have a MSI X79A GD65 (8D) motherboard and 4930K cpu, currently running @ 4.4ghz, 1,33V, disabled all the power saver features.
    The PC have been stable for almost a year without issue, and just recently the PC have started randomly freezing. It can be up and running for a whole week without problems and then suddenty freeze, or sometimes just few hours and then freeze. It seems like it always freezes when surfing the web, and it tend to happen during scrolling a website. It is never happening during gaming with heavy load.
    The error message is following:
    WHEA Logger A fatal hardware error has occurred.
    Reported by component: Processor Core
    Error Source: Machine Check Exception
    Error Type: Cache Hierarchy Error
    Processor APIC ID: 8
    Things I have tried: Reverted back to stock speeds in bios, updated to latest bios, tried a other power supply and formated windows with newest drivers, no difference. Memtest does not show any errors, and the pc passes prime/intel burn test. Cpu temps are fine.
    What more can I do ? Is there a chance that the CPU have taken damage from my "little" overclock ?

    Hi,
    Can you tell what were temps of the CPU while overclocked and under full load (Intel Burn Test)?
    Also, did you try different RAM? And are you currently running RAM at frequency of....? (Reduce to 1600MHz).

  • Printing a Dynamic Hierarchy in BPC 5.1

    Hi,
    I am trying to print the graphic representation of a dynamic hierarchy in BPC 5.1.  There is no apparent way to print the hierarchy from the DHE and when I check the documentation, they suggest the use of a EVDRE report.  However, based on my testing, I can't seem to see any function in EVDRE that would be able to pull the graphical representation of the org structure that I have keyed into DHE out.  Am i missing something here?  Appreciate any help and feedback, thanks.
    Best Regards
    Adrian Yeo

    Hi Adrian,
    We have the same problem. We need to have a report with the perimeter (DHE) of the companies as intuitive and graphical as possible. Have you solve your problem?
    any idea of someone?
    thanks,
    Jorge

  • How-to Dynamic Hierarchy Selection.

    Hi guys,
    does anyone know how to implement "Dynamic Hierarchy Selection"? I have a main hierarchy but would like to filter it further while loading the hierarchy.
    E.g. I have a financial statement verison with both Balance Sheet and P/L items, i would like to separate the main into two new hierarchies, one BS and P/L hierarchies instead, apparently the infopackage allows you to write small codes to dynamically select which hierarhcy you want.
    Cheers.

    Hi,
    We donot have this type selection at the time of upload. The thing we can do is upload both versions into BIW and in the report we can use Hierarchy variable to have dynamic selection of hierarchy.
    with rgds,
    Anil Kumar Sharma .P

  • Dynamic Hierarchy Reporting function

    Hi All,
    i was looking through the help and found:
    You can choose also whether to view dynamic hierarchies or standard Groups and Entity dimensions in the current view by making the appropriate selecting in the Current View selector. Thereafter, when the application type is consolidation, the dynamic hierarchy replaces Groups and Entity in the Current View. In addition, when you select the Group dimension in the Current View, the dynamic hierarchy stored with ownership application displays instead of the normal dimension hierarchy.
    from http://help.sap.com/saphelp_bpc75/helpdata/en/5A/69200C88AA40C9B18844A25259F147/frameset.htm
    under dynamic hierarchies > reporting on dynamic hierarchies.
    My question is:
    The help indicates there is a 'setting' to make in the current view selector, thereafter when the app type is consolidation, the dynamic hierarchy replaces group/entity - where is setting and how do i set it?
    I have bpc 7.5 sp4
    Edited by: Hiren Amin on Dec 16, 2010 3:13 PM

    Hi Hiren,
    I'm afraid I can't give you good news, as we have the same issue (same version).  We have been told by SAP that this is bug in the MS version, which I believe they are working on, however no news as yet as to when they expect to issue a fix for it.
    Thanks,
    Steve

  • 'Unallowed tags or dynamic code' error on a page without these...

    Hi,
    I've been using InContext Editing for a few sites now and my clients have been very happy with it, but I have a new site that's having problems on just one page.
    http://www.windhampilates.com/index.php
    I've enabled ICE on the text areas below the main photo and nav bar, as I have on other pages. There are a few scripts running on this page, but the only difference on this page from the rest of the site is the rotating image at the top of the page.
    Ironically, I've used this same script on previous sites where I've used ICE and they've worked without any problems. Am I missing something?
    Really and truly appreciate  your help!
    - MaryAnn

    I can login, and try to edit, but the system won't save my changes and gives me the 'unallowed tags or dynamic code' error as the reason why it can't save the changes.
    I tried removing the jquery in the header, but that didn't seem to work:
    http://www.windhampilates.com/index-testjqueryerror.php
    I still can't get the edits to save and it's still giving me the same message.
    The only other non-static elements on the page are the newsletter subscription script and the Facebook link, but I have these on other pages and we can edit those pages without issue.
    Any other ideas?
    Thanks for your help!

  • Sqlplus stack trace, dynamic link error.

    When using sqlplus through the Oracle Enterprise Manager, or on the commandline, if I try to query a XMLType table, it dumps a stack trace, failing with the error message:
    Dynamic link error: libxdb.so: cannot open shared object file: No such file or directory
    I've done a full Oracle 9.2.0.1.0 Client installation, but this library isn't in my $ORACLE_HOME/lib. How do I get this file?

    Hi,
    Maybe not much use to you, but on Solaris, with a full Enterprise install, this library is in my $ORACLE_HOME/lib.
    So maybe you can find it on the EE CDROM?
    Regards
    Pete

  • Dynamic link error while executing XQUERY in SQL*Plus

    Hi,
    When I'm doing the following  XQUERY in SQL*Plus (version 11.2.0.3.0 instant client for mac64bit) :
    XQUERY declare default element namespace "http://xmlns.oracle.com/xdb/xdbconfig.xsd"; (:
           (: This path is split over two lines for documentation purposes only.
              The path should actually be a single long line.
           for $doc in fn:doc("/xdbconfig.xml")/xdbconfig/sysconfig/protocolconfig/httpconfig/
            webappconfig/servletconfig/servlet-list/servlet[servlet-name="orawsv"]
           return $doc
    I'm getting the following error:
    Dynamic link error: dlopen(/Users/markbeelen/Oracle/instantclient_11_2/lib/lib/libxdb.dylib, 9): image not found
    OCI-21500: internal error code, arguments: [unable to load XDB library], [], [], [], [], [], [], []
    Errors in file :
    OCI-21500: internal error code, arguments: [unable to load XDB library], [], [], [], [], [], [], []
    ERROR:
    OCI-21500: internal error code, arguments: [unable to load XDB library], [],
    Any ideas how to solve this?

    Got same issue with :
    Component
    Version
    =========
    =======
    Java(TM) Platform
    1.6.0_41
    Oracle IDE
    3.2.20.09.87
    Versioning Support
    3.2.20.09.87
    Alternate path for SqlHistory directory :
    C:\Users\USER_NAME\AppData\Roaming\SQL Developer
    Best Regards,
    F.L.

Maybe you are looking for

  • REG Purchase Order BAPI

    Hi Experts, My requirement is to get in to change mode of a PO's ,then click on Messages Tab so that the Output type NEU gets triggered automatically for the list of PO's i have and then i save the PO. I am trying to do a recording in ME22N .The reco

  • Document Editor For Nokia N97 mini Should be Intro...

    Hi, I would really like nokia to introduce a document editor for the nokia n97 mini,since that phone has a good keyboard and the features are good,the document editor will complete the phone and it would surely be the complete multipurpose phone. Reg

  • Why RAM Preview 2x faster on Macbook Pro vs Desktop PC?

    Hello everyone, I RAM Previewed a few seconds of an AE CS6 project on a Desktop PC I recently had custom-built, and was distraught to discover it was twice as slow as previewing the exact clip on my Macbook Pro. The project involves simple 3D camera

  • SP2-0103: Nothing in SQL buffer to run.

    Hi All, When i execute the script it throws the following error msg. SP2-0103: Nothing in SQL buffer to run. Thanks in advance!

  • Benefits of 802.11n with old Macs

    I have a couple of reasonably old Macs (1.25GHz iMac, 500MHz Powerbook) which seems to be running more slowly these days when going online. I have a network using a Snow Airport and an Airport express which is probably 5 years old now but has been in