Text node in the Charac Hierarchy sums up

Hi,
I am working on IP.
I had created an hierarchy for a specific consumption data with the top node as a text node, which should appear only once in the report.
But when i use the Input ready query, the system shows multiple rows of the text node for every new characteristic values in the nodes below this node.
How do i avoid the text node being displayed multiple times?
Thanks in advance,
regards,
Sriram

Hi Jacky,
Yes i have text nodes for more than one set of characteristics.
Level 1A
    Level 2
        Char1 A
        Char1 B
Level 1B
        Char1 C
        Char1 D
        Char1 E
These characteristic also have an attribute characteristic. Hence, in the Input ready query it displays as follows;
Level 1A
    Level 2          Char2 A
    Level 2          Char2 B
        Char1 A    Char2 A
        Char1 B    Char2 B
Is there a way to avoid the "Char2" in the text nodes.
Thank in advance for the solution,
regards,
Sriram

Similar Messages

  • BPC 7.5 NW Master Data Text Node Load with Hierarchy Intervals - Duplicate

    Hi,
    Does anyone have ideas on how to get past this error (besides a BADI)?
    I am loading master data text nodes from a BW hierarchy (say 0COSTCENTER) that has intervals defined for cost center nodes.  The problem is that the text nodes fail since there are duplicate values in the hierarchy table.
    Master data (dealt by table level) has errors
    Detected duplicate member ID 'F100'
    Detected duplicate member ID 'F100'
    Detected duplicate member ID '1000'
    Detected duplicate member ID '1000'
    etc...
    Thanks!

    Hi Virginie,
    You should be able to see an example in many threads; look for an example to Restriction of bw infoobect(not mapped to dim)
    You can also make a restriction under the InfoObject name when you run the DM package.
    Hope this helps,
    Gersh

  • Carriage Return in Text Node of SmartForm

    Hello SAPients.
    I'm working with a Text node in a SmartForm. I'm using "Include Text" to call an existing text. The text loads fine except that it doesn't respects the CR's.
    What can I do?

    Hello SAPients!
    I'm still having this problem, maybe I didn't explain the problem very well and that's why I didn't get an answer. I hope this information be more helpful:
    I'm working in SAP 4.6C. I have a SmartForm with a Text Node that shows "unlimited" text. I created another transaction to maintain this text in a small text editor and save the text using FM SAVE_TEXT and retrieve it using FM READ_TEXT and it shows everything correct.
    In the SmartForm I'm taking advantage of the option "Include text" in the Text type of the General Attributes of the text node. The system retrieves the text in a normal way, except that the text is shown without Carriage Return, that is, all the text is show in one single line. Do you know why?
    Thank you in advance for your help.

  • How to include std text(Created in So10) in text node?

    Hello,
    How to include the Standard Text( created in So10 ) into Text Node.
    I had typed the Standard text name in the TEXT NAME : ZXXX
          Text Object : TEXT
           TEXT ID : ST
          LAnguage : &CONTROL_PARAMETERS-LANGU&
    But, I am unable to look at that particular text in the smart form. I am receiving an error message : "UNable to load the data into front end. ....etc"
    It is taking me away to the initial screen.
    PLz help!
    ANy suggestion will be appreciated.
    REgards,
    Kittu

    I need to include the Standard text created in so10 into a text node in the Smart form.
    In samrt form, I had created a Text Node.
    In General attributes from the Drop Down menu
    --> I had selected INClude Text
    --> It has asked me TExt name : ZXXX (Name of the STD text create din so10)
                         Text Obje : TExt
                         Text ID   : ST
                         Language  : &CONtrol_Parameters-LANGU&
               It is even activated without any errors. But, it does not display the Text written in the Standard Text. Is there any way that I can include the Standard text into the  Text node.......
    ANy suggestions will be appreciated...
    REgards,
    Kittu

  • #text nodes

    Hello,
    I am parsing xml document using xerces with schema validation on, without DTD.
    <xs:element name="variant">
    <xs:complexType>
    <xs:sequence>
    <xs:element ref="ds:default"/>
    <xs:element ref="ts:answer"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    As I understand this element should be "element only": without #text nodes in the dom tree.
    But I get: #text default #text answer #text.
    Can I fix it?
    Thanks
    Justinas

    Do you have white space between the nodes? I believe you can tell the parser to ignore white space that is not required by the schema.

  • Problems getting text content of text node?

    Hi all,
    I am currently somewhat puzzled why one of the simplest parts of my code doesn't work. I am trying to get the text content of a text node (XmlValue.getNodeType() correctly returns TEXT_NODE) in Java, but what I get is always the text of the entire document retrieved from the database (no matter what text node I consult in the entire document!). Is this expected behaviour? The method I am using to retrieve the data is XmlValue.getNodeValue(), but playing around with other functions didn't show any success either.
    So my question is: what am I doing wrong here? I hope someone in here can help me with my rather stupid problem :-)
    Thanks for your help,
    Alex

    Hello Rucong,
    thanks for your quick answer. I am sorry for the delay - I was away for a couple of days.
    I boiled down my code to a simple example - however can't believe it's the query itself (since it's really basic). But maybe you see something I am missing?
    Here is my sample code that exhibits this behaviour:
              XmlManagerConfig managerConfig = new XmlManagerConfig();
              EnvironmentConfig envConfig = new EnvironmentConfig();
              envConfig.setAllowCreate(false);
              envConfig.setInitializeCache(true);
              envConfig.setInitializeLocking(false);
              envConfig.setInitializeLogging(true);
              envConfig.setTransactional(false);
              envConfig.setErrorStream(System.out);
              Environment env = new Environment(new File("D:\\dbhome"), envConfig);
              XmlManager manager = new XmlManager(env, managerConfig);
              XmlManager.setLogLevel(XmlManager.LEVEL_ALL, true);
              XmlManager.setLogCategory(XmlManager.CATEGORY_ALL, true);
              XmlContainerConfig containerConfig = new XmlContainerConfig();
              containerConfig.setAllowCreate(true);
              XmlContainer container = manager.openContainer("mpeg7samples.dbxml", containerConfig);
              XmlQueryContext context = container.getManager().createQueryContext();
              String query = "for $a in collection('mpeg7samples.dbxml') return $a";
              XmlResults result = container.getManager().query(query, context);
              while (result.hasNext()) {
                   XmlValue v = result.next();
                   if (v.getNodeType() != XmlValue.DOCUMENT_NODE)
                        throw new Exception();
                   v = v.getFirstChild();
                   if (v.getNodeType() != XmlValue.TEXT_NODE)
                        throw new Exception();
                   System.out.println(v.getNodeValue());
                   break;
              container.close();
              manager.close();
    This code executes a simple query and then dumps the first text node of the first retrieved document. As stated before the System.out.println() call dumps the text of the entire document (including <?xml...?> at the beginning and so on) though.
    Any ideas?
    Thanks in advance for your help,
    Alex

  • Filtering more than one node with the command SAPBEXFilterValue

    Hello everybody,
    i have an issue with the
    Function SAPBEXsetFilterValue(intValue As String, Optional hierValue As String, Optional atCell As Range) As Integer
    Filtering with cell atCell (if this parameter is missing, then the active cell is taken as the basis)
    The internal filter value must be entered in the parameter intValue. Please note that this value can be displayed differently from the external value displayed in the filter cell. You can either use SAPBEXgetFilterValue or carry out the filter process once manually with the log book function switched on in order to determine the internal value for a known external value. The internal filter value is noted in the log.
    Enter the parameter hierValue when dealing with a node of a certain characteristic hierarchy with the filter value.
    "intValue = <blank>" means "do not filter anymore"
    If no connection to a BW server exists the function starts a logon dialog.
    The function produces a context error if atCell is not a filter cell.
    My problem:
    i would like to select inner nodes. With one node it is not a problem. I have just to use the technical name for the inner node as intValue. But I would like to select more than one node. I would like to filter 4 inner nodes with the SETBEXgetfilter command but it does not work.
    i tried also to set them iteratively but when the second filtervalue is selected the first will be overwritten.
    If i select more than one navigation panes to filter the nodes differently on a seperate navigation pane it also does not work because all navigation panes are connected and show the same.
    Does anybody know how to filter more than one node in the same hierarchy. manually it works. So there should be a way to do that with VBA.
    Thank you in Advance and kind regards,
    Murat

    solved

  • Account dimension hierarchy text nodes ACCTYPE property

    Hello,
    We have master data being populated into BPC from BW. So for the Account dimension in BPC, we use the 0GL_ACCOUNT infoobject in BW. This infoobject also has all the Financial statement version hierarchies which are being loaded to BPC. The question that I have is, how should the hierarchy text node values for ACCTYPE property be populated if I have to automate this load on a daily basis.
    For the actual GL accounts, we have the account number ranges defined. Like 1* series accounts are Assets etc..So we can easily define a rule for populating the ACCTYPE  property values. But not sure if there is any easy logic for populating the hierarchy text nodes as we dont have any pattern in them. Would we need to maintain it manually always?
    Thanks
    Gaurav

    Hello Richard,
    If there is really no logic behind them there is off course no way of automating this. Then I guess you will have to maintain each node separately.
    Some customers are also willing to change their text node structure. For example I had one when where the rules for the 0HIER_NODE records were as follows:
    *           EXP -> Starts with 32*, 311*, 312*, 321*, 3111*, 3112*,
    *                  3142*,  31111*,  31112*,  311111*
    *           INC -> Starts with TOT, 3000000000, 3100000000, 313*,
    *                  322*, 3113*, 3141*, 31113*, 311112*
    *           AST -> Starts with 1*
    *           LEQ -> Starts with 2*
    Kind regards,
    Christophe

  • How to import hierarchy text node from BW infoobject

    I tried to import hierarchy from BW InfoObject through process chain /CPMB/IMPORT_IOBJ_HIER.
    But BPC complains the hierarchy text node haven't been dimension member.
    As result, I have to export the hierarchy text node to a flat file and import again which is not convenient.
    Does anyone have some best practice for this?
    Thank you.

    Hi,
    You can follow the steps mentioned in the below How-to-Guide of sdn. This explains the steps to be implemeted to inport hierarchies.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c02d0b47-3e54-2d10-0eb7-d722b633b72e
    Hope this helps.
    Rgds,
    Poonam

  • The text which is in text node is not displaying in output in smartforms

    Hi,
      In smartforms i created a text node and entered some text like following.
         Target Quantity               60000001     60000002          
         Scheduled Quantity               60000003     60000004               
         So far delivered Quantity          60000005     60000006
         Last delivered Quantity          60000007     60000008
          Delivery Schedule Details
    the text which i entered as above in the text node is not displaying.It is in main area.

    Hi
    if u are using table or template inside the main window
    then just mention the position of the text element
    goto text element - output options- output structure tab----give line and column no.
    Thanks
    krushna

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

  • Displaying the entire text of a tree node when the tree isn�t wide enough

    Hi,
    I have a JTree displayed in a JScrollPane, so there is a chance that some of the tree data may be hidden if the tree's width is insufficient, so when the user moves the cursor over a tree node whose text is not completely visible (cut off by the right edge of the scroll pane and/or window), a tooltip is displayed to show the entire node text. So far so good!
    If the user double click a node in the tree a new window is supposed to be opened. This works fine if the tooltip hasn�t been displayed jet, but if it has then the user has to click 3 times to open the window.
    The first time to remove the tooltip and the next 2 opens the window.
    How can I awoid this?
    Thanks!!!!
    :-)Lisa

    Any ideas, please?

  • Cannot Include and exclude selectiion on hierarchy node in the Filter area

    Hi,
    When i open the query and execute it. and select the filter area for hierarchy nodes. The include and exclude selection is disabled in 3.5x analyzer. We are using BI 7.0 with SP 12. we just upgraded.
    Can you please help. is this functionality not available?
    Regards,
    Gaurav

    Hi Rob, you can do that for the query (the exclude selection) on the Query Designer. But its not recomended on performance point of view.
    hope this helps
    Natalia.

  • Enabling the set/hierarchy node option in Report painter

    In Report painter how to enable the option to check the set/hierarchy node option in ‘general data selection’. it always displayes in disabled mode.

    sanjay,
    in change mode(GRR2)it wont allow to edit 'set/hierarchy node', only allows for variable.

  • What is the highest node in Cost Center Hierarchy.

    hi SAP gurus,
    can anybody tell me what is the highest node in Cost Center Hierarchy.
    thanks

    Hi,
    In Cost Centre Hierarchy highest node is Operating concern -> controlling Area
    Hierarchy of controlling is-
    Client
    Operating Concern
    Controlling area
    Company codes
    Business Areas
    Rgds
    shekar
    hi SAP gurus,
    can anybody tell me what is the highest node in Cost Center Hierarchy.
    thanks

Maybe you are looking for

  • Help -- APP Automatic Payment Posting

    Hi Again,    I am very glad to this community and I appreciate people out other. can anyone send me the step - step config on APP. Thanks in advance Manisha

  • How to read/insert MS .xls  record into Oracle without .csv conversion etc.

    i really have this challenge to download .xls file at oracle level. In other word no apache utility like Sheet etc. need to use. Any thin at oracle level is permitted though. E.g. stored procedure/ function etc. File is as such in .xls format. Not te

  • My back button has disappeared any ideas?

    When in Safari - the back/forward button has just gone. Probably a simple solution, but I just can't find - Thanks, Tom

  • Photoshop CS 4 won't use paper profiles.

    Running Photoshop CS 4. Changed operating system to Windows 7 64 bit. Using a calibrated monitor and Epson 3800 printer. The paper profiles are not being applied by photoshop. Printed 50% gray scale patches with no correction. The printer managed  pa

  • Setting break lines

    Hi all I want to know how to insert a blank line between the first line of column labels and lines of column values in a group-left report . And is it also possible to break line between each result set records ? Thank you.