Restricted account hierarchy nodes

Hi BI Gurus,
I have a requirement to generate Profit and Loss statement in BI. I pulled up account hierarchy out of R/3 into BI.
The issue is client want to see some nodes of the account hierarchy restricted by specific Functional Area only.
Please suggest some solution.
Regards,
MV

Hi KK,
Can you please explain about manually restricting the nodes instead of using hierarchy? Should it be done at R/3 or BI level and how?
At R/3 level in Report Painter reports each node of the account hierarchy can be easily restricted to a particular Functional Area (at account node or set level) and client want to achieve the same in BI.
Also the account hierarchy should not be maintained at two places. Since well maintained account hierarchy is already there in R/3 which is why BI pulled it from there; now they are looking for ways to restrict some of the nodes by Functional Area.
Hope I have explained the situation with all the variables.
Please provide your valuable suggestions.
Thanks & Regards,
MV

Similar Messages

  • Create CRM customer/account hierarchy node thru abap code

    Hi,
    Any one can help me on how to Create CRM customer/account hierarchy node thru abap code?
    Is there any Class/methods, FMs that I can use to create node in customer/account hierarchy?
    Sample codes will greatly help me.
    I hope someone can help me on this since this is my urgent requirements on my project.
    Thanks,
    james

    James,
    You can find the FM, Class Lib and APIs under the package BUPA_HIERARCHY.

  • BPC Excel: Select hierarchy nodes & exclude an account within

    Hello All
    u2013 in EVDRE, is there a way to define a column selection for a account hierarchy node, however exclude one of the accounts within this group? THis is simmilar to BEX query, where you can select a hierarchy node and then also select to exclude a member within.
    EG From the account hierarchy below, select the hierarchy node u2013 u2018group1u2019 , however exclude account 2.
    Account Hierarchy     
         Hierarchy - group1
              Account1
              Account2
              Account3
              Account4
    I have a couple of different column definitions, so this definition would need to be defined inside the column header area & not in the column member set.
    Thanks
    Glen

    Hello Nilanjan
    Firstly, thanks for your reply, much appreciated. One of the requirements is to have multiple column definitions in my report. To achieve this, i was planning to define the definitions inside the columns and adjust the colkeyrange to include all column definitions. This would mean that i would not use the column expansion and hence not have access to the suppress function.
    Is there a way of including the suppress function in a column definition?
    EG Include hierarchy node 'Parent - Group1" and exclude 'Account2'
    Account Hierarchy          
         Parent - Group1     
              Account1
              Account2
              Account3
              Account4
    Thanks, Glen

  • Hierarchy Node Restriction

    Hello Gurus,
    I have a Cost Center Hierarchy upto level 4.
    In my Query I want to restrict the Hierarchy Node to Level 2. This shud be a kind of permanent setting. ie; User should not be able to drill down beyond Level 2.
    Is this possible.
    Full points to correct answers.
    Thanks in advance.

    Hey In BI 7.0 it has been made very simple...
    Path A:
    Go to
    1.Rsecadimin>authorization>maintenance
    2.Create and authorization object
    3.Insert the infoobject 0costcenter
    4.Select its row  click on details(lens icon)
    5.Now you will find two tabs one for  a.Value authorization  b.Hierarchy authorization
    6.Click hierarchy authorization and there you can put the name of hierarchy...and select the levels upto which you want to authorize the user...also many different combinations ..try it once and you will enjoy it.....
    Don't forget to use it in the report...using a hierarchy node variable having processing type as authorizations.
    Path B:
    Directly mention that on the Hierarchy tab in the properties window for that infoobject the display is allowed till what level..
    use which ever you prefer..
    Thanks==points
    Message was edited by:
            rocks

  • No applicable data : when selecting hierarchy node on 0GLACCEXT

    Hi,
    I using the ZCUBE (Copy of virtual cube 0FIGL_V10).
    I have data for the 0GLACCEXT hierarchy (standard hierarchy tech name: INT, and also for custom hierarchies)
    From the moment we use a selection in the rows on a node within the hierarchy of the financial statement item : 0GLACCEXT,  the result is No applicable data.
    We are using the standard calculated key figure Balance sheet Value.
    If i use the hierarchy (for INT) as a whole, we get data. If i restrict with hierarchy nodes for INT, then 'No Applicable Data'.
    for the other custom hierarchies, i'm getting same result, i.e. 'No Applicable Data'.
    Can somebody help with this issue.
    Thanks,
    V

    Hi
    Find out whethere data exists actually for the nade by executing the data for all the hierarchy nodes and find out whether data is coming when you execute for some other nodes
    Regards
    N Ganesh

  • How to Restrict the node level in account hierarchy

    Hi experts,
    I want to restrict the node level in account hierarchy. I attached one example. in that if i click 6000 node again it want to show error message. for one parent node i want to create only two child node. Further if i create means it want to show error msgs and not allow to create the node..
    Regards,
    gopi

    Hi ,
    The component is bp_hier, and method is onnew_node.
    IF lv_tree->is_locked( ) = abap_false.
         lv_tree->lock( ).
       ENDIF.
       CHECK lv_tree->is_locked( ) = abap_true.
       lv_index = typed_context->accounthierarchy->selected_index.
       lv_tree_node = typed_context->accounthierarchy->get_node_by_index( lv_index ).
    *key = lv_tree_node->node_key.
      CALL METHOD lv_api->get_node_parent
         EXPORTING
           iv_node_key        = key
         IMPORTING
           ev_parent_node_key = lv_paent_key
    *      ev_tree_guid       =
    *   lv_parent = lv_tree_node->parent_entity.
    *    typed_context->accounthierarchy->parent_entity.
    CALL METHOD lv_tree_node->get_children
       receiving
         rt_children = rt_child.
       CHECK lv_tree_node IS BOUND.
       lv_tree_node->is_leaf = abap_false.
       TRY.
           lv_proxy_node ?= lv_tree_node.
           TRY.
               lv_object ?= lv_proxy_node->bo.
             CATCH cx_sy_move_cast_error.
               lv_mixed_node ?= lv_proxy_node->bo.
               lv_object ?= lv_mixed_node->if_bsp_wd_ext_property_access~get_model_node( ).
           ENDTRY.
           lv_object_name = lv_object->get_name( ).
           IF lv_object_name = 'BuilHierarchyNode'.
             lv_relation_name = 'BuilHNodeRel'.
           ELSEIF lv_object_name = 'BuilHierarchyHeader'.
             lv_relation_name = 'BuilHeaderNodeRel'.
           ELSE.
             RETURN.
           ENDIF.
           lv_tree_node->get_children( ).
           lv_object = lv_object->create_related_entity( lv_relation_name ).
           lv_child_node = lv_proxy_node->node_factory->get_proxy(
               iv_bo = lv_object
               iv_proxy_type = 'CL_BP_HIER_HIERARCHYTREEV_CN05'
               iv_parent_proxy = lv_tree_node ).
           lv_tree_node->expand_node( ).
           typed_context->accounthierarchy->refresh( ).
           typed_context->accounthierarchy->deselect_all( ).
           lv_child_node->selected = abap_true.
           lv_child_node->is_leaf  = abap_true.
    *accounthierarchy
    *      selectedhierarchynode
           lv_col_wrap = typed_context->selectedhierarchynode->get_collection_wrapper( ).
           lv_col_wrap->clear( ).
    This is the code.
    i wrote . but its not getting.

  • Master Data load does not extract Hierarchy nodes in BPC Dimension ACCOUNT

    Hi Experts,
    I am performing master data load through standard DM package with Filter selection as:
    1. Chart of Accounts
    2. Hieararchy selection has 4 hierarchy names
    3. Selected Import Text nodes
    4. Selected Set Filters by Attribute OR Hierarchies
    I have run this DM package for a set of data and selections a week ago and it worked fine.
    However when i run it now, it is giving issues,
    It extracts any new GL maintained in the BI system however it does not extract any hierarchy nodes at all! (Have tested this by deleting the hierarchy nodes and tried to run the master data load)
    I am running the DM package in Update and have selection as External.
    Any sugestions for checks / has anyone encountered this issue earlier?
    Regards,
    Shweta Salpe

    Hi Guyz,
    Thanks.
    I found that the issue was with the transformation file where i was maintaining the RATETYPE.
    When i removed the mapping of RATETYPE this works fine. (Pulls the nodes of hierarchies)
    however now i do not have Ratetype populated in the system.
    my rate type mapping is:
    RATETYPE=*IF(ID(1:1)=*STR(C) then *STR(TOSKIP);ID(1:1)=*STR(H) then *STR(TOSKIP);ID)
    and in conversion file i have TOSKIP     *skip
    I have to skip the ratetypes for the hierarchy nodes and my hierarchy nodes start with C and H.
    So now that i have removed the mapping for RATETYPE can anyone suggest me a correct way to achieve this? (Note the above mapping formula was skipping all of the hierarchy nodes starting with C and H)
    Regards,
    Shweta Salpe

  • Behaviour of GL Accounts in Hierarchy Nodes

    Hi experts,
    We have a BI report on Financial statement version. We have a hierarchy used on GL Account.
    In the hierarchy in a node, suppose in the node Assets some gl accounts are maintained.
    And another node Liabilities some gl accounts are maintained.
    But few gl accounts are maintained in both the nodes i.e assets and liabilities.
    In the BI report output, the balance against  these gl accounts is coming under both nodes Assets and Liabilities.
    But the requirement is if the balance against a GL account is Negative then it should be displayed only under Liabilities node and
    if the balance against the gl account is postive then it should be displayed only under Assets node.
    It should be displayed in either Asset node or in Liability node depending on the sign of the Balance.
    We have only some GL accounts like this.
    Please provide some inputs to solve this.
    Regards,
    smitha.

    Hi All,
    Thanks for the reply. I have loaded the data into the cube 0figl_c10. Installed the virtual cube 0figl_v10 and also the query
    0FIGL_V10_Q0001( Bal.Sheet and Profit and Loss (New):Actual/Actual Comparison ) from BI content. Extracted the hierarchies
    for the infoobject 0GLACCEXT.In this hierarchy for some gl account in the field BAL_DEPEND ( Balance Dependency of a
    Hierarchy Node ) the value is maintained as "1" "Suppress Balance if Positive" for some gl accounts and "2" "Suppress Balance
    if Negative" and blank "No Balance Dependency" for some gl accounts.
    We have a gl account 60380 for this gl, in the bal dependency field the value is maintained as 1 in Assets and 2 in Liabilities(
    coming from R/3).
    This gl is maintained both in assets and liabilities. I executed the report.
    In a business area in a period the value for this gl is both +ve and -ve. But actually assets should show only +ve values and
    liabilities should show only negative values.But this gl account is appearing in the node "Assets" only and the balances have
    both the values i.e +ve and -ve.
    As per the setting in the field BAL_DEPEND i.e 1 in Assets, the postive values should be suppressed.
    But it is not suppressing the postive values. It is showing both the values under only assets node.
    I changed the bal depedencey value to 2 in the assets to see whether it suppresses -ve values but also it is not suppressing.
    Any solution or explanation ?
    Regards,
    smitha.

  • Account Hierarchy : Function Module to get all the nodes of a hierarchy

    Hi Experts,
    Is there a function module which will give as output all the Node GUIDs for a particular account hierarchy in SAP CRM,when the Node GUID of any single node in the same tree is given as input?
    Best Regards,
    Ashish Dhagat

    Thanks mate.
    Edited by: pankaj kandhare on Aug 14, 2011 7:56 AM

  • Download of hierarchy nodes and accounts from BW

    Hi,
    Does anyone know how to download a list of the hierarchy nodes and accounts out of BW? I need the list to work on some analysis and documentation.
    Thanks in advance.

    Hi Jackie,
    Have you seen this document:How to Download a Hierarchy to a Flat File
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0403a990-0201-0010-38b3-e1fc442848cb
    Hope this helps...

  • Hierarchy Node Description in BEx Restriction

    Hi All,
    When I use a hierarchy node variable as a restriction in a query, the leaf level nodes always display a long list of info (all the associated attributes) instead of just the actual node info by itself. 
    How do I set that up since the display is very busy with all that attribute info showing!
    Thanks,
    Darryl

    Hi There,
    Go to Attribute tab of infoobject on which hierarchy is build and change the value of column 'Order' to  '0'. This paramenter controls the display of attributes.
    Thanks
    Prasanth

  • Restrciting the hierarchy nodes in the transformations

    Hi
    I have "0ACCOUNT'  InfoObject in ODS and it's hierarchy.
    And it(0ACCOUNT)  has some accounts(4001, 4002, 4003) and other  reamining other fileds values .
    I want to restrict the '0ACCOUNT' values for some hierarchy nodes . How can i do this one in transformations .
    pls let me knpw
    kumar

    Hi kumar,
    use this link
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/0a563fe09411d2acb90000e829fbfe/content.htm
    with hopes,
    Raja singh

  • How to filter hierarchy node in BEX query designer

    Dear experts
    We are working on FI balance sheet with hierarchy infoobject 0GLACCEXT. Example of our balance sheet is as follow:
    Parent Node A = 20
         Sub-parent Node A1 = 10
             Leaf A11 = 5
                 Leaf A12 = 5
    Parent Node B = 20
         Sub-parent Node B1 = 10
                   Leaf B11 = 5
                   Leaf B12 = 5
    We require only:
        Sub-parent Node A1 = 10
        Leaf B12 = 5
    So I filter those out in BEX restriction;  however, after we examine the report in tcode RSRT, "Sub-parent Node A1" is not shown in BEX Report, and the result is as follow:
    Parent Node B = 5
         Sub-parent Node B1 = 5
                 Leaf B12 = 5
    Are there solutions for us to show merely A1 and B12 ?

    Hi Chu
    Try the following steps.
    Initial Output
    In this example I will restrict the query for only displaying Node 8603 and leaf 9000
    Proceed to restrict the Characteristic. Please be aware of the difference between hierarchy nodes and leaf characteristic values. Also set the Hierarchy display properties to expand up to level 1.
    Execute the query again:
    Please be aware that users will still be able to expand node 8603 and see the lower level nodes/leaf. In order to restrict users from doing this set up users authorizations.
    Regards,
    Carlos

  • Issue with hierarchy node variable and multiple SAP hierarchies

    Hello experts,
    We are currently facing an issue when using two SAP hierarchies in Web Intelligence and one of them is restricted with a hierarchy node variable.
    The systems we use are a SAP BI 7.01 (SPS 05) and a Business Objects Enterprise XI R3.1 SP2 (fix pack 2.3). I want also to point out that the fix pack 2.3 has been applied to all BOE related components: the SAP integration Kit, client tools, and enterprise (server and client).
    The universe used in our scenario is based on a BEX Query with two hierarchies (non-time dependent hierarchies, intervals allowed) loaded on their corresponding characteristics. One of these characteristics is restricted with a hierarchy node variable (manual input, optional, ready for input, multiple single values allowed). 
    Prerequisites for replicating the problem:
    1)     When building the web intelligence query select several levels from both hierarchies (they have seven levels each) and    the   only amount of the InfoCube that the BEX query (that was used to create our universe) relies on.
    2)     In the hierarchy node variable prompt select a hierarchy node entry (not an actual InfoObject value that exists as transactional data in the InfoCube )
    By executing the query built above, all characteristics are returned null (no value) and the key figure with value u201C0u201D. No error messages, no partial results warnings.  Now if we go back to u201CEdit queryu201D and select levels of only one of any of the two hierarchies the query runs normally (by selecting the exact same value for the hierarchy node variable prompt).
    Any ideas on the matter?
    Regards,
    Giorgos

    Hi,
    Have you ever got a solution for this problem?
    I have a similar one.
    Thanks,
    regards, Heike

  • Hierarchy Node Variable search (find) option not working

    Hi Experts - I have created a hierarchy node varibale on a fixed hierarchy. When user run the report and click on hierarchy node variable selection option , A new window will pop up which has all the nodes.
    As the list is quite big and has many levels , On the same pop up , we have find option , when we enter any node in the find box , its always give a ABAP Dump , It never works for me...
    Is node find/search in not working in Bi 7.0 .
    Thanks
    R

    Hi Rohan,
    We can restrict the hierchey level at property of of the hiearchey enabled characteristic.
    Hope this hels...let me know if u require any further info on this..
    Best Regards,
    Maruthi

Maybe you are looking for

  • Question: Will non committed persistence data loss if my application which is using Kodo/JDO crashes???

    Hi, I am very new to JDO and Kodo and I am still learning. I have a user specification that requires no data loss when the application crashes. If I am developing my application using Kodo for data access layer, when my application crashes just becau

  • How to create a sequence inside a select statement

    I have the following query select t.id_trato2 as DEAL_ID, -- 1 as SEQ_NO from treats t order by id_trato2, seq_noIt will return for example id_trato2 seq_no 3 1 3 1 4 1 4 1 4 1 I need it to return id_trato2 seq_no 3 1 3 2 4 1 4 2 4 3 ¿how can I do th

  • URGENT: JEditorPane (a Java Browser) displaying HTML form

    Hi, I am using JEditorPane to display the wb pages but geeting problem as I don't get any kind of event when I click on the HTML form SUBMIT button though it does work but didn't allow me to get the URL of the new page that I got after hitting this S

  • Essbase 5.02p13a to 6.5 or 6.2.1 - All comments welcome..

    We are currently running Essbase 5.02p13a on UNIX and are looking to upgrade to either 6.2.1 or 6.5. Any comments regarding these versions, upgrading to these version are very welcome. Is anyone on 6.5? Is it stable?

  • netui-template integration with frames

    Greetings, Is there any integration between <netui-template and HTML frames ? For example, I need to define several frames in all the JSPs of a webapp. I'm using a template which declares something like: <framest colums="25%,75%> <frame src="leftTemp