BPC 10.0 - Hierarchy Issue

Hi Experts,
I am trying to load a hierarchy to BPC 10.0 and I am having issues.
I am getting the error:
"HIERARCHY DATA SOURCE:
An exception with the type CX_SY_RANGE_OUT_OF_BOUNDS occurred, but was neither handled locally, nor declared in a RAISING clause Part - field access (offset = 4, length - 10) to a data object of the size 11 exceeds valid boundaries.
model: CONSOLIDATION
Package status: Error"
We are going through an upgrade and this was one of my test cases to try. I have all the hierarchy information filled out on the set selection screen (no blanks).
I also tried peeling back the number of levels, and the first 3 loaded successfully, it was the 4th and beyond that would cause this.
In my conversion file I have the first four digits ignored from these values at the 4th + level but it is still considering it all over 10.
One example is "CIGMC500000" so CIGM would be ignored but it is still not allowing it to load.
The prior version we had with this never gave us this problem. Is there a way I can change the hierarchy allowance for the H1 length?

Hi Ryan!
Have you set a condition in your conversion file that the length only can be10 positions or lower?
The example you gave is 11 positions long , even if you remove the 4 first positions the lenght from the BW side will come as 11. So what I think you have to do is to correct your conversion file sop it will allow length above 10 postions.
Please if this dont help, share your conversionfile
Br
Patrick

Similar Messages

  • Bex Hierarchy issue on Webi report

    Hello Experts,
    We are facing issues on use of Bex hierarchy in webi report,
    Issue statement: We have webi report on bex query which have table and chart with input control on year and month to filter the report, table and chart uses hierarchy object to disply data. When we refresh report table and chart shows data with hierarchy on first level but once we check or uncheck any value from input control hierarchy in table and chart gets expanded and shows as flat structure. to get correct behaviour we have to collaps hierarchy.
    Above behaviour happens for all report level filter like, block filter, drill filter, input control.
    Please help me to know this is a bug or something wrong happened with development.
    Regards,
    Priyank Bhayani

    Hello Everyone,
    I have got SAP note which states this is expected behaviour hence closing the discussion.
    1702356 - Hierarchy Nodes expanded automatically to all levels after selecting value in the input control in a webi report.
    Regards,
    Priyank Bhayani

  • Hierarchy issue with Web Intelligence Report

    Hi All,
    We are facing an issue with OLAP Universe where we are using hierarchy for cost center in reports.
    BEx query shows correct data in RSRT with hierarchy nodes.
    We have built a Universe on top of this BEx Query.
    We are using couple of nodes of cost enter hierarchy in WebI report but if we keep more than one node in WebI query, data comes double (probably because of duplicate rows). Instead if I keep just one of the node in WebI query, WebI report returns correct data.
    Please suggest, why such behavior with OLAP universe and how to resolve this?
    Best Regards,
    Ashish

    Thanks for your suggestions.
    I am little confused on how to check SQL generated for OLAP WebI Query.
    But other reports on same universe behave same way and I'll give a try to another universe but I don't expect it to behave in different way. I saw a setting for relational Universes like restriction on duplicate rows but the same is not present in case of OLAP Universe.
    Do you know how WebI behaves with BEx hierarchies?
    There has to be some setting to make it work...
    Best Regards,
    Ashish

  • BPC 7.5NW: Hierarchy Upload from BW - Sort Order

    Hi,
    we are currently updating from BPC 7.0NW to 7.5 NW SP10. (BW has been upgraded to 7.02 SP09)
    As master data and hierarchies had been uploaded using the coding from 'HowTo Upload automated...' so far, we now have to use standard Data Manger packages.
    Maintaining packages and package links was successful. Everything works fine so far.
    The only problem are Hierarchies, better the sort order of hierarchie nodes. At the moment they are always sorted in an alphabetical order.
    We introduced property MBR_SEQ to all dimension using program UJA_MIGRATE_MBR_SEQ.
    We loaded hierarchies with different settings.
    Searching SDN and SAP Notes lead to notes 1603352 or 1581331.
    But manually changing hierarchies each time, new members are assigned, is not an option!
    Do I miss any option in the selection screen of the Data Manager package?
    Are there any options in transformation or conversion file?
    Thanks and regards
    Steve

    For your Information...
    We were now adviced to include parameter DM_KEEP_SRC_SEQ with value Y in AppSet parameters (Web-Administration).
    Please have a look at note '1626929 - Keep hierarchy sequence for Load Hierarchy from BW package'.
    It works!
    For the first hierarchy to be uploaded...
    If there are more than one hierarchy defined for upload, only the first hierarchy is sorted correctly, all following ones are sorted alphabetically again.
    Regards
    Steve

  • BPC 7.5NW Report Issues When Requesting Year To Date Data

    Dynamic reports built with 2 row expansions (Cost Ctr, Account) up to 3 columns (not expansions, set to different categories with excel formulas for variance calculations...Act vs. Bud for example) result in error messages (error retrieving data and another related error messge) when requesting YTD data vs. Periodic data.  The report runs fast and properly with Periodic measure.  When running with the YTD measure, attempts to reduce the report data volume by removing comparative categories and removing formatting (after ranges) still results in YTD data retrieve errors.
    Has anyone else had similar issues with BPC 7.5NW, SP9, and YTD data not pulling into reports?  What are the common causes for issues with YTD data retrieval?  Given the design by SAP of the BPC NW product and promotion of using BPC for both Periodic and YTD data, should I expect this report to work properly, meaning that I can get output with YTD data without long runtimes or errors that result in terminating the report?  Thank you.

    Hi,
    This would do it :SQL> !cat q.sql
    with t (dt, val) as (
         select to_date('2011/01/04','yyyy/mm/dd'), 123 from dual union all
         select to_date('2011/04/09','yyyy/mm/dd'), 234 from dual union all
         select to_date('2011/06/28','yyyy/mm/dd'), 345 from dual union all
         select to_date('2011/10/18','yyyy/mm/dd'), 456 from dual union all
         select to_date('2011/12/23','yyyy/mm/dd'), 567 from dual union all
         select to_date('2012/01/07','yyyy/mm/dd'), 678 from dual union all
         select to_date('2012/05/13','yyyy/mm/dd'), 789 from dual union all
         select to_date('2012/07/19','yyyy/mm/dd'), 890 from dual union all
         select to_date('2012/08/30','yyyy/mm/dd'), 901 from dual union all
         select to_date('2012/09/22','yyyy/mm/dd'), 012 from dual
    ------ end of sample data ------
    select *
    from t
    where dt >= trunc( add_months(trunc( &&dateexec. ,'month'),-1) ,'year')
    and dt < trunc( &&dateexec. ,'month')
    undefine dateexecThe dateexec parameter is just here to "simulate" sysdate of different points in year.
    <i>(your actual query would have sysdate where the dateexec parameter appears)</i>
    SQL> @q
    Enter value for dateexec: sysdate
    DT                         VAL
    07/01/2012 00:00:00        678
    13/05/2012 00:00:00        789
    19/07/2012 00:00:00        890 sysdate does the current year up to previous month.
    SQL> @q
    Enter value for dateexec: to_date('20120122','yyyymmdd')
    DT                         VAL
    04/01/2011 00:00:00        123
    09/04/2011 00:00:00        234
    28/06/2011 00:00:00        345
    18/10/2011 00:00:00        456
    23/12/2011 00:00:00        567when ran in january, it retrieves all the previous year.

  • Parent Child Hierarchy Issue in OBIEE 11g

    Hi All,
    I am in OBIEE 11G v6. I have a sales fact table where the grain is one sale. So I have one row for every sale done.
    Now I have a ragged employee hierarchy like this with David at the root node.
    David >>Richard>>Sean
    David >>James
    Also, I have a role dimension which gives me what role each employee has performed on a sale. Only one employee can be associated with one sale. This is the way Roles have been asssigned
    David = Manager
    Richard = Off1
    Sean = Off2
    James = Off2
    Both Sean and James can have same Roles. Now I have created a parent child hierarchy for my employee dimension and the closure table. Defined the member key, ancestor key relationship in the parent child setting etc.
    Now in the report when I pull the parent child hierarchy and the sales_amount in the report, it comes out perfect with all the ragged hierarchy resolved. But the issue comes when I try to limit the report on Role = Off2. It gives me an error saying " The layout of this view combined with the data, selection , drills resulted in no data. Undo drill and view prompt values". Basically what i want is to be able to select any role type and then my hierarchy should be adjusted to show me that data. Like when I select Off2, I want to see David at the Top level and Sean and James under him because they are both Off 2 and David is their manager.
    Is that possbile? Also, am I getting this error because when I select Off2 though it gets Sean and James but since David is not Off2, I don't get the data?
    I hope I was able to explain the issue, any help on this would be greatly appreciated.
    Thanks
    Ronny

    So basically this means that if I build a parent child hierarchy on table A having the stucture like
    --David (Manager)
    -----James (Off1)
    --------Bill (Off2)
    and in my sales fact table for let's say today, I have only rows for Bill (Off2) because he is the only officer who did the sales today. Now when I will join my fact table to parent child hierarchy table A I will NOT get any data ? because there is no James who is the parent of Bill. So obiee need to have parent pulled off in the data (ANCESTOR) to be able to roll up the child.(IS_LEAF = 1)
    I testes this and if my data only contains only rows for Bill (or I limit on ROLE = Off2) then it won't show the hierarchy. The query which OBIEE fires is to look for either ANCESTOR_KEY = NULL OR (DISTANCE = 1 AND ANCESTOR KEY IN (Bill). Therefore it doesn't I am wondering then what is the use of builiding the parent child hierarchy when we need to pull in all the ancestors (like in this case James for bill and David for james) because in real scenarios there can be cases wherein we would want to filter the data based on other dimensions to which the parent child hierarchy joins ?

  • Parent Child Hierarchy Issue

    Guys,
    I have a parent-child hierarchy and users would select a randomn level from the prompt (Hierarchical column used in the prompt). So for the level selected I need to capture all the leaves and put a top n function on them.. Any ideas??
    Things that i have tried are using Selection steps with hierarchical columns.
    Step 1: Start with all Memebers
    New step: Step 2 is Selected Members based on hierarchy relation Ship (Keep only members of leaves of hierarchy)
    But the problem is I am not able to override the Step -2 with dashboard prompt. I was able to do only fior STEP -1
    So any ideas??
    If i can atleast capture all the leaves of selecte level from the prompt that would solve my problem to a large extent?/ Thought abt Hierarchical Navigation Functions but didnt succeed?? Any suggestions really appreciated
    Thanks..
    Prash
    Edited by: Prash11 on Aug 6, 2012 11:14 AM

    I have got lot of hierarchies which are atleast 20 levels deep. So its not really feasible for me to create multiple views for multiple levels.
    I tried to use hierarchical column functions and it works but not able to override the values from prompts in the selection steps. So still trying few things
    Step 1: Start with All members (over ride with prompt checked)
    Step 2: Select a level with in the hierarchy and Keep only leaves of the selected level
    Step 3: Apply Condition do a TOP 10 and keep only that result set.
    This works fine with out any issues from an ad-hoc stand point. Only problem there is no way for me to over ride the dashboard prompt value in Step - 2 as it expects me to select a value from the hierarchy. Any alternativeS?

  • Crystal reports hierarchy issue

    Hello Experts,
    I am working on crystal reports 2008 on top of BW queries, I have product hierearchy untill 5levels.
    But in crystal i cannot see all the detail attributes of hierarchy, meaning,  i cannot see product key and medium name for level3,level4 and level5.I have built universe using same bw query, i can see L02,L03,L04,L05 levels material key and material medium name.
    Please let me know if i am missing any patches from BW side.
    Thanks.

    Hello Ingo,
    Thanks for reply, my issue is in the crystal reports field explorer , i am unable to see all the attributes of the hierarchies, example for level 3,level 4,level5 i am unable to see all attributes like key and medium name.
    Thanks.

  • Hierarchy issue in Bex Query

    Dear Experts,
    One GL Account having in 2 sub nodes, For these two sub nodes for that GL account having the GL Vales in Transaction data.
    We have a GL Account as credit check box in one node and debit
    check box in another node in Financial Statement Version Hierarchy. In
    this case BIMaster data is showing that GL in Both the nodes but in Bex
    Report same GL falling under Not assigned Node. Through this issue the
    value is not appearing the Actual Node.
    BI Hierarchy master data:-
    EX: GL Account: 130001
    Bex output for that above GL:-
    Please suggest me how i need to get data with respect to GL nodes even contains one GL in 2 sub nodes.
    Thanks & Regards,
    Srinu.Rapolu

    Hi Experts,
    Please look in to above issue and give the reply....
    Thanks & Regards,
    Srinu.Rapolu

  • BPC 7.0 BPC Administration Installation - Authorisation Issue

    I have installed BPC 7.0 on our Windows 2003 server, I have installed the BPC Administration and BPC Client on a Windows XP machine all are working well.
    My problem is when I try the same on Windows Vista Business, I have Domain Administrator rights and Local User Admin rights in Vista, however when I press the BPC Administration Installation button and try to install BPC Admin I get the following message  'You do not have authority to install the BPC for Office'.
    I have followed the exact same procedure as I used for Windows XP and now feel I am banging my head against a wall. Does anyone have any ideas on this issue?

    I have found the problem Vista Business does not have .net 1.1 (see http://www.microsoft.com/downloads/details.aspx?familyid=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en ) and Service PAck 1 (see http://www.microsoft.com/downloads/thankyou.aspx?familyId=a8f5654f-088e-40b2-bbdb-a83353618b38&displayLang=en)
    Once installed the installer works fine.

  • BPC 7.5 upgrade issue

    Hi Experts ,
    We have upgraded 7.0 to 7.5 sp04,but we ar having issue with installaing the client and logging in to BPC for Excel. When we install the BPC for Office client or the admin console
    Error  Message : "You do not have authority to install the Planning and
    Consolidation client"
    Then click NEXT  and continue instalaltion
    It appears everything installs,but  when we try to log in to the Admin console   or Ofice Client message occurs
    "The
    system cannot connect to the (http://bpctest.int.XXXX.com) application
    server"
    Please suggest
    Reagrds
    Prabhu

    Hello
    Prabhu
    We are trying to install the patch SP07 , upgrading from SP04.
    have u done a successfull patch with SP06 ?
    One suggestion for ur problem, if u have not done the upgrade Patch by Patch i.e SP03,SP04,SP05,SP06,SP07 i mean if not done cumulatively this could occur
    and donot ignore any prior warning or error messages that appear to continue. SAP has already asked to share the errors if any during the upgradation procedures
    Please let me know how have You solved this or working on
    every input is appreciated
    thanks
    Edited by: bpcbee on Apr 6, 2011 6:49 PM

  • BPC NW Journal Posting Issue

    Dear Experts,
    I have created Journal Entry Template with header Information Category,Group Time.
    I have entered one Journal Entry and saved it.
    While Posting the same, I am getting the error as follows
    Failed Reason:
         Write-back failed
         Write-back failed
         Some records did not pass checks; security, work status, etc.
         Member () of dimension (GROUPS) is not a valid member
         Member () of dimension (GROUPS) is not a valid member
    Here in Group Dimension I have created Member as LC and USD.
    What could be the issue of such, How to Resolve this error.
    Thanks in Advance

    Hi Ritesh,
    Have you checked the Member Access Profiles and made sure that the existing members you are trying to post exist within the profile? Are there work status locks?
    If possible (if you are in a dev environment) delete the work status locks (if there are any) and attempt to re-post the journal entries. If that still doesn't work at that point I would check whether or not your authorizations are the issue. An easy way to do this is to assign yourself the FULL_MBR profile making sure that the profile is up to date including security for each application within your AppSet.
    If you have done all of the above and you are still having trouble posting I would check that you are posting members with the correct case (in BPC NW the account "cash" and the account "CASH" are two separate and distinct accounts). Case sensitivity is one of those things you should always be cognizant of when working in a BPC NW system which is quite different from BPC MS if that is what you are accustomed to.
    Hope this is helpful.
    Cheers, Scott

  • 0CS_GROUP Hierarchy Issue

    Hi Gurus,
    When I click the "AVAILABLE HIERARCHIES FROM OLTP" in the InfoPackage corresponding to 0CS_GROUP Hierarchy, I get a strange error stating "RFC error: No ledger assigned to consolidation group <Consolidation GroupName> for year 200".
    I have checked the following SAP Notes: 433114, 488868, 441378.
    Yet still I am having the same issue. Any light on this issue is greatly appreciated.
    Regards,
    GPK.

    Hi Pravin,
          Sorry that I am askingyou the same question after so many days. iam working on ECCS consoidation Reports currently.I am facing the same issue as yours.Currently, Wheni go to the datasource in R/, i could not find any data there. Could you please throw some light on how did you perform the Hierarchy data load into Bi from R/3.
    Regards,
    Samir.

  • BPC 7.5: Hierarchy load fra BW. Missing "parent" nodes.

    Hi,
    i'm having problems uploading a 0profit_center hierarchy from  SAP BW to BPC.
    My problem is that the load fails due to missing dimensions members on profit_center in BPC. The missing members is the hierarchy parents, which are not a part of the masterdata on the infoobject "0profit_center"
    So for example I have a simple hierarchy:
    Parent1:
    -child1
    -child2
    -child3
    Child1-Child3 are masterdata on (dimension members) on 0profit_center. Parent1 is NOT masterdata. So the load will fail due to the fact that parent1 is not a dimension memeber in  'BPC' profit_center.
    Do I have to load the hierarchy table from BW to BPC (profit_center) in order to get the dimension members for the hierarchy ??
    Thank You,
    Joergen Dalby

    Hi,
    you need to use a formula to remove the spaces. Though not sure how to define it for hierarchy notes.....
    The formula can be defined in the conversion file.
    The formula is js:%external%.toString().replace(/s+/g,"")
    And your conversion file should look like (transposed for reading purpose).:
    EXTERNAL = *
    INTERNAL = js:%external%.toString().replace(/s+/g,"")
    FORMULA
    You can read more here:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c02d0b47-3e54-2d10-0eb7-d722b633b72e?quicklink=index&overridelayout=true
    Under section 4.4.
    Hope this helps,
    jdalby

  • Save Hierarchy Issue

    Hi Mates,
    We have an issue with the save hierarchy failing in the PC.The thing is we have a PC loading MD hierarchies and after loading data we have save hierarchy process type which saves hierachy.But interestingly after saving the hierachy it was failing by giving the error message like" no infoprovider exists".
    I dont understand why it happens?the load gone fine and save hierarchy was saved but still the save hier process type was failing with the error mess "No infoprovider found" and getting failed.
    Any thoughts on this.
    Thanks

    Hi,
    I am facing the same problem as you mentioned in your post. Could you please help me out if you find any solution for this!
    Thanks in advance.

Maybe you are looking for