Hierarchy Node Sheets

Hello again,
I am looking for a function module or snippet whereby I can create a list of Hierarchy nodes sheets from a "Cost Center Hierarchy node" as input. please help.
Thanks,
sebastian

At the outset, i am not very clear about ur Q.
but u may try these codes in R/3, which will give u the hierarchy structure
KSB1, KSH3, KS03
Not sure, how much it can help, but give it a try.

Similar Messages

  • Hierarchy Sheets creation from a Hierarchy Node

    Hello,
    I am looking for a sample function code module or snippet whereby I can create a list of Hierarchy nodes from a "Cost Center Hierarchy node" as input. please help.
    Thanks,
    sebastian

    Hello,
    I am looking for a sample function code module or snippet whereby I can create a list of Hierarchy nodes from a "Cost Center Hierarchy node" as input. please help.
    Thanks,
    sebastian

  • 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

  • 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.

  • Bex Analyzer 7.0, Filter on Hierarchy Node (Text Group)

    Hi gurus,
    I would be glad if anyone of you could help me with this issue.
    I made an application with Bex Analyzer 7.0 which does following -> create certain combinations and copy it directly into PowerPoint as a picture. This works great, I can send you the code if you want to. I could even create a blog or wiki ...
    My issue appears when I try to copy a value for hierarchy node into Filter in Bex. It is possible to write into Filter some value and the system sets a filter with this value, there is no doubt about it. But I wanted to filter on a whole hierarchy node. I'm not able to do this by copying the value into the line. With the context menu no problem.
    Example 1:(works fine)
    Characteristics    Filter:
    0comp_code       1000
    Example 2:(doesn't work)
    Characteristics    Filter:
    0comp_code       +Group1(Text Node)
    I will appreciate any kind of help.
    Thank you
    Standa

    As promissed, here is the code with which we export graphics into powerpoint.
    BEx Analyzer 7.0
    Following scenario -> user defines combinations in the list, what should be exported (area "D39:D142") Macro copies selections into filter area (D22).
    Sub Chart2PPT()
        Dim objPPT As Object
        Dim objPrs As Object
        Dim objSld As Object
        Dim shtTemp As Object
        Dim chtTemp As ChartObject
        Dim objShape As Shape
        Dim objGShape As Shape
        Dim intSlide As Integer
        Dim blnCopy As Boolean
        Dim i As Integer
        Dim f As Integer 
        Set objPPT = CreateObject("Powerpoint.application")
        objPPT.Visible = True
        objPPT.Presentations.Add
        objPPT.ActiveWindow.ViewType = 1 'ppViewSlide
        For Each cell In Range("D39:D142")
    If Cells(i, 4) = "" Then Exit Sub
    If Len(Cells(i, 4).Value) < 1 Then Exit Sub
        Cells(22, 4) = Cells(i, 4) 
        For Each shtTemp In ThisWorkbook.Sheets
            blnCopy = False
            If shtTemp.Type = xlWorksheet Then
                For Each objShape In shtTemp.Shapes 'chtTemp In shtTemp.ChartObjects
                    blnCopy = False
                    If objShape.Type = msoGroup Then
                          ' if ANY item in group is a chart
                        For Each objGShape In objShape.GroupItems
                            If objGShape.Type = msoChart Then
                                blnCopy = True
                                Exit For
                            End If
                        Next
                    End If
                    If objShape.Type = msoChart Then blnCopy = True
                    If blnCopy Then
    '                  blnCopy = True
                       If shtTemp.Name = "GraphAbsatz" And (Cells(i, 8).Value = "x" Or Cells(i, 5).Value = "x") Or _
                        shtTemp.Name = "GraphPreis" And (Cells(i, 8).Value = "x" Or Cells(i, 6).Value = "x") Or _
                        shtTemp.Name = "GraphUmsatz" And (Cells(i, 8).Value = "x" Or Cells(i, 7).Value = "x") Then
                        intSlide = intSlide + 1
                        ' shtTemp.UsedRange.CopyPicture 'kopiert nur Grafiken
                        ' objShape.CopyPicture
                         shtTemp.UsedRange.CopyPicture 'kopiert die ganze Seite
                         ' new slide for each chart
                        objPPT.ActiveWindow.View.GotoSlide Index:=objPPT.ActivePresentation.Slides.Add(Index:=objPPT.ActivePresentation.Slides.Count + 1, Layout:=12).SlideIndex
                        objPPT.ActiveWindow.View.Paste
                      End If  
                   End If
                Next
                If Not blnCopy Then
                ' nichts kopieren
                     ' copy used range
                   ' intSlide = intSlide + 1
                   ' shtTemp.UsedRange.CopyPicture
                     ' new slide for each chart
                   ' objPPT.ActiveWindow.View.GotoSlide Index:=objPPT.ActivePresentation.Slides.Add(Index:=objPPT.ActivePresentation.Slides.Count + 1, Layout:=12).SlideIndex
                   ' objPPT.ActiveWindow.View.Paste
                End If
            Else
            ' nichts kopieren
               ' intSlide = intSlide + 1
               ' shtTemp.CopyPicture
                 ' new slide for each chart
               ' objPPT.ActiveWindow.View.GotoSlide Index:=objPPT.ActivePresentation.Slides.Add(Index:=objPPT.ActivePresentation.Slides.Count + 1, Layout:=12).SlideIndex
               ' objPPT.ActiveWindow.View.Paste
            End If
        Next
        ' nächste Selektion
         i = i + 1
        Next
        Set objPrs = Nothing
        Set objPPT = Nothing
    End Sub

  • 0GLACCEXT hierarchy nodes description ( text ) not displaying

    Hi Gurus,
    I have uploaded 0GLACCEXT hierarchy from ECC system in to BI 7.0. I can only see the hierarchy nodes in the RSH1 and in the reports as well for 0GLACCEXT.But I am not able to see the hierarchy nodes description like under Expenses > salaries , wages , housing etc .....only its GL accounts is displaying like 700100 , 700200
    I also uploaded Text datasource ( 0GL_ACCOUNT_TEXT ) for 0GLACCEXT , the text is loading without any problem but the changes are not being reflected in the RSH1 and the reports.
    Regards,
    -Neha

    Hi KP,
    Thanks for your reply , the text for 0GL_ACCOUNT is displaying fine , I don't have any issues with 0GL_ACCOUNT , my main concern is I'm using Financial Statement item 0GLACCEXT   for Balance Sheet and P&L Statement (for period accounting) by using Virtual Cube 0FIGL_VC1  the Text is not displaying in the reports as well as in RSH1 , where as for 0GL_ACCOUNT the hierarchies and text are working and displaying fine.
    I'm closing this thread , the problem has been solved
    it was related to mappings in Transfer rules.
    Regards,
    -Neha
    Edited by: Nehabibo on Dec 18, 2010 11:46 AM
    Edited by: Nehabibo on Dec 18, 2010 11:47 AM

  • 0GLACCEXT hierarchy nodes description not displaying

    Hi Gurus,
    Dear Moderator , Please close / delete this thread , I've posted this thread in EIM >> EDW >> General *
    Edited by: Nehabibo on Dec 14, 2010 4:40 PM
    Edited by: Nehabibo on Dec 14, 2010 5:17 PM

    Hi Ganesh,
    Please follow below mentioned steps to to get correct values in Balance sheet report ie for Assets and Liabilities.
    Double click on Transfer Rules of 0GLACCEXT (Hierarchy)
    Check Below mentioned fields are mapped correctly or no
    0HIENM  -
    HIENM
    0HIER_VERS----
    VERSION
    0DATETO----
    DATEFROM
    0DATEFROM----
    DATETO
    next Pls follow below mentioned steps carefully
    In the same screen First u can see Info source----
    0GLACCEXT
    Next You can find Segment -
    Hierarchy Header just beside that you will find  small symbol pls click on that and select Hierarchy Node and pls map fields as below
    0HIER_NODE----
    NODENAME
    SIGNCH----
    RSIGN
    0BAL_DEPEND----
    PLUMI
    0GLACCEXT----
    GLACCEXT
    Please map the fields as I have mentioned and load the data and check.
    Regards
    Albaik
    Edited by: albaik on Mar 15, 2010 7:01 AM

  • 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

  • DSO or ODS "Insert New Hierarchy Nodes" under Data Fields

    When you insert info objects under the Data Fields in DSO right mouse click on the Data Fields icon and you will find Insert New Hierarchy Nodes . I created a hierarchy node with infoobjects associating with it which will be visible under the Filters Folder in BEx Query designer as a seperate folder. I can add them to the infoobjects from this folder into the query. I did not know how to apply this functionality in Queries and what it really does. My guess was you can create dynamic hierarchy using characteristic infoobjects from transactional data.Any ideas or links to documentation. This option was available from 7.X in DSO's and i think even in 3.x ODS.

    Hi,
    May help you:----
    http://help.sap.com/saphelp_nw70/helpdata/en/4a/e71f39488fee0ce10000000a114084/content.htm
    You could feel the flexibility of using this hierarchial display in the Query. Try to create any Query on this DSO.
    Regards,
    Suman

  • Drilldown to hierarchy nodes in VC..

    Hi..
    I want drilldown functionality in VC..
    1. my Query has a hierarchy
    2. my VC application has a table attached to this query.
    3. In Output the hierarchy nodes are displayed
    4. i ve taken a button Drilldown on my table
    5. on selection of a node and onclick of button all the hierarchy nodes get expanded(drilled down)
    Problem : i do not want all the nodes to get drilled down..only the selected node should get drilled..
    Plz help me out for the same...
    Thanks in advance..
    Bhavna.

    Hi,
    Just check out in hierarchy attribute setting... what is the start node for the drill down..
    Regards,
    Viren.

  • 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

  • How to pass a hierarchy node variable value over OpenDocument?

    Hello,
    I have been unable to link to an instance with matching parameters with opendocument with hierarchy node variables.
    Has anyone attempted this or been successful?
    Please reference this post I had in the Web Intelligence forum.  sInstance=Param not working for sap bw query based reports (FWM 02020)
    Here's some background information
    We've created 2 new crystal reports based of sap queries.
    Report 1, single prompt, no hierarchy.
    Result : Can link to specific instance with matching parameters. Great!
    Report 2, single prompt, hierarchy based.
    Result: Cannot link to specific instance with matching parameters
    Parameter list for report 2
    [!V000001} : Cost Center/Gr{oup (Multiple) = {0COSTCENTER XXXXXXXX.BGT3}.{XXXXXXXXX.BGT3 0HIER_NODE} - XXX, XXX & XXX
    However when I go into the history and look at the successful instance parameters used, it seems to be picking up an extra parameter ( my guess is node)
    XXX, XXX & XXX; {0COSTCENTER XXXXXXXX.BGT3}.{XXXXXXXXX.BGT3 0HIER_NODE} - XXX, XXX & XXX
    We have attempted to use the entire string, the first portion, second portion, and just the technical response. No luck.
    Any help or pointers would be appreciated!
    Nick

    Hello  Ingo,
    I'll explain the situation more clearly,
    Report 2, single prompt, hierarchy based.
    Result: Cannot link to specific instance with matching parameters with a response from the Bus Objects server
    An error has occurred: The object with ID -1 does not exist in the CMS or you don't have the right to access it (FWM 02020)
    We have 1 parameter for report 2
    {!V000001} : Cost Center/Group (Multiple)
    We selected a single value:
    {0COSTCENTER XXXXXXXX.BGT3}.{XXXXXXXXX.BGT3 0HIER_NODE} - XXX, XXX & XXX
    (The XXX, XXX, & XXX is the description)
    We ran a successful instance.
    However when I go into the history and look at the successful instance parameters used it displays the following: 
    XXX, XXX & XXX; {0COSTCENTER XXXXXXXX.BGT3}.{XXXXXXXXX.BGT3 0HIER_NODE} - XXX, XXX & XXX
    An extra description seems to appear (The first XXX, XXX & XXX;) Our original selection was only {0COSTCENTER   XXXXXXXX.BGT3}.{XXXXXXXXX.BGT3 0HIER_NODE} - XXX, XXX & XXX
    We attempted to build variations of the open document strings
    1. We tried the entire parameter response,
    XXX, XXX & XXX; {0COSTCENTER XXXXXXXX.BGT3}.{XXXXXXXXX.BGT3 0HIER_NODE} - XXX, XXX & XXX
    2. The first description that was not part of the original selection,
    XXX, XXX & XXX
    3. The technical name and description
    {0COSTCENTER XXXXXXXX.BGT3}.{XXXXXXXXX.BGT3 0HIER_NODE} - XXX, XXX & XXX
    4. The technical name
    {0COSTCENTER XXXXXXXX.BGT3}.{XXXXXXXXX.BGT3 0HIER_NODE}
    Please let me know if you need more details.
    Regards,
    Nick

  • Data slice inconsistency problem with hierarchy nodes

    Hi Experts,
    We want to lock planning tables from function. We create the appropriate data slices but there are problems with (material group) hierarchy nodes.
    If I give the node as input variable to the function it causes inconsistency in the data slice. If I choose and add this node to the lock in modeler, the problem is the same.
    We are using the following variables to create a data slice:
    0VERSION
    0VTYTYPE
    0COMP_CODE
    ZGRMAT (developed material group)
    Z_YEARCR (developed yera created)
    The problem also exist if I set an another type of node e.g. destination country (0RECIPCNTRY) instead of material group.
    For me, the problem seems to be generic.
    Do you have any idea?
    Many thanks in advance
    Peter

    There is a note related to this proble:
    Note 1070608 - Lowflag field is not valid
    The implementation of this note resolves the problem.
    Peter

  • Exclude a hierarchy node by using exit variable (not in query designer)

    Hi gurus!!
    I have a hierarchy for the infoObject 0COSTELMNT. Depending on the user who executes the report, the node '0599ADJUSTMENTS' must be displayed or not.
    I am trying to solve it by using an exit variable:
    Varible Type: Hierarchy Node
    Processing : Exit
    On the exit, I have entered the following code:
          IF ( sy-subrc = 0 ).
              l_s_range-sign = 'E' .
              l_s_range-opt  = 'EQ' .
              l_s_range-low = 'AJUSTES'.
              APPEND l_s_range TO e_t_range.
         ENDIF.
    But unfortunately does no work!!
    Any ideas?
    Thanks in advance
    Regards.
    Carmen Rodríguez

    Hi,
    Check the below link gives good knowledge on variables:
    http://help.sap.com/saphelp_nw04s/helpdata/en/cf/579b3c494d8e15e10000000a114084/content.htm
    Reg
    Pra

Maybe you are looking for

  • Condition record data transfer

    I have a scenario where condition record data from ECC needs to be transferred to MDM. I can see COND_A01,COND_A02 idocs in ECC .Pl can you tell me which one is relevant for ALE data transfer. Is there any transaction/report (For example BD10 is used

  • Prob in Smartform in Main Window -- Footer part

    Hi, I have 2 rows with different 2 text in Main window -> Footer part. I want to always keep tht 2-text together either in first page or in second page. Currently both r printing in different page if first page do nt have enough space. But my require

  • Install Oracle 10g XE in ubuntu

    Hi every body; I have installed Oracle 10g XE for n-time, and for each new install I find new problems: previously the welcome page http://127.0.0.1:8080/apex seems to work but I found a lot of problems so I decided to-reinstall the whole application

  • Steps to start the Early watch report

    Hi Experts, Can you explain me about early watch report in detail and let me know the step by step to prepare early watch report. Is there any difference between Early watch report and Early watch alert? Regards, Suresh.

  • How do you remove an apple id when you can not contact the previous user?

    I am working with a local Pawn shop that purchased an ipad from an indavidual. They restored the ipad and apparently, the contact info from the user is bogus. So, is there any way to get the apple id removed when you can not contact the previous owne