One node in incorrect order in hierarchy

I am loading a hierarchy from a flat file. The file has the right order for the node numbers. But when I load it, one of the nodes appears at the top when it should be at the bottom. Say 1000 to 1010 are 10 nodes below the root. The first node is 1010 and then 1000 to 1009 appear in the right order. Why is 1010 going to the top and how can I fix it?
I think I can use a sorted hierarchy but for that I have to change the flat file. So is there any other way to fix it? Thanks.

Ok, I think I did not explain it right. In the flat file, the nodes are in this order
1000
1001
1002
1003
1010
But when I load the hierarchy, it comes out as
1010
1001
1002
1003
1009
Why did it put the 1010 above every thing else? How can I make it go at the bottom?

Similar Messages

  • 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

  • Lync Server 2013 Front End Pool Mediation Service only works on one node

    Hello, I'm currently experiencing an interesting issue with a Lync 2013 Front End Pool implementation on a customer, and I don't know if this is by design or am I missing something.
    We implemented 3 Enterprise Front End Servers in a Pool with a hardware load balancer and we have them configured also as a mediation Pool.
    We have a SIP trunk to an Avaya PBX which was perfectly working before on a Lync 2010 Implementation that we migrated to these new 2013 Front End Pools.
    Now the SIP traffic is only working when configured directly to one node of the pool. If we configure it to any other node the calls fail. We also tried configuring the HLB for port 5060 for the pool and pointed the PBX to that IP but the calls also fail.
    Searching around I read something about that the PBX has to be Lync certified in order to use DNS load balancing to send SIP traffic to the mediation pool, however, I don't think DNS load balancing will work because the other nodes doesn't connect the calls
    from the PBX, only one node appears to be listening for the SIP Trunk.
    I also restarted the mediation service on one  non-working mediation server node and the event viewer on the working mediation server node showed events that it restarted the service, Not the non-working one, it's like only one server from the pool
    is doing as mediation server. 
    So even if I get a Lync Certified PBX/Media Gateway, the mediation service doesn't appear to be load balanced, or how does it work in order to do that?
    Thanks.
    Eduardo Rojas

    Just a few things about what should be happening.  Each front-end server should be listening on the port configured in topology builder for the mediation service. So if that is port 5060, verify that you see that port listening on all front-end servers
    by running a netstat -ano.  From a local workstation, also make sure you can connect to that port via a telnet IPAddress 5060.  As you say, you should be able to send any of the three mediation servers an inbound call.
    Outbound calls will round robin out of the enterprise pool.  So you shouldn't see all of the calls coming out of a single server.
    A few other items I would look into:
    - Make sure your ports are right.  Ensure that you are matching ports on the Avaya and Lync.  It's not a hard requirement but makes life easier to troubleshoot.  So if the Avaya is 5060, just make sure TCP/5060 enabled in your mediation pools
    and that your gateways/trunks are also set to TCP/5060.
    - Look outside the Lync Event Viewer and see if anything strange (.net errors) are being tossed anywhere else during startup of the mediation service.  I once had to remove the mediation server installer (Program and Features | Remove) and rebootstrap
    the server because something went sideways during an install.
    Thanks,
    Richard
    Richard Brynteson, Lync MVP | http://masteringlync.com | http://lyncvalidator.com

  • Query running slow in one node

    Hi All,
    We are running 4-node Oracle 10g RAC (linux 64-bit). The query is running fast in one node, but the same query is running very slow in the other node. And sometimes, we see pin S wait on X wait event in top 5 events.
    Has anyone faced this kind of situation before ?
    Thanks,
    Kumar

    Hi,
    Execute your query on node where query is running very slow. Get SID and execute query above to see what is event of waiting.
    exec dbms_application_info.set_client_info('@sw2')
    -- file sw2.sql
    col event  format     a25  heading "Wait Event" trunc
    col state  format     a15  heading "Wait State" trunc
    col siw    format   99999  heading "Waited So|Far (ms)"
    col wt     format 9999999  heading "Time Waited|(ms)"
    select event,
           state,
           seconds_in_wait siw,
           wait_time wt
    from   v$session_wait
    where  sid = &sid
    order by event;
    exec dbms_application_info.set_client_info('@sw1');
    -- file  sw1.sql
    set linesize 30000
    set pagesize 200
    col sid      format    9999  heading "SID"
    col username format     a10  heading "USERNAME"
    col osuser   format     a20  heading "OSUSER"
    col event    format     a25  heading "Wait Event" trunc
    col state    format     a15  heading "Wait State" trunc
    col siw      format   99999  heading "Waited So|Far (ms)"
    col wt       format 9999999  heading "Time Waited|(ms)"
    col sw1      format 9999999  heading "File"
    col sw2      format 9999999  heading "Block"
    col Objeto   format a50
    select sw.event,
           sw.p1,
           sw.p2,
           sw.p3,
           sw.state,
           s.sid,
           S.osuser,
           s.username,
           nvl(s.program, s.module),
           sw.seconds_in_wait siw,
           sw.wait_time wt
      from gv$session_wait sw,
           gv$session s
    WHERE sw.sid = s.sid
       and sw.EVENT NOT LIKE 'SQL%'
       and username is not NULL
       and s.inst_id = sw.inst_id
       and sw.event not like 'PX%'
    order by 1, 6, 7;Regards,
    Levi Pereira

  • Getting errorHierarchy node 000000 is missing inthe hierarchy 100 for comp

    Hi Friends,
    When we are executing the query in BI we are geeting the error that "errorHierarchy node 000000 is missing inthe hierarchy 100 for comp"
    Could you kindly suggest me anything for resolve this error.
    Thanks,
    Shaliny. M

    Hi,
        check the hierarchy which is assigned to the query is correct one or not? and try to view the hierarchy, try to reactivate the hierarchy.
    Regards
    Sankar

  • Removing one node, re-install and join cluster 3.2/RAC/QFS

    Hi all,
    I have one cluster system with 2 node ( Cluster 3.2, Oracle RAC, QFS). Now one node have been failed and cannot recover. Now I have to reinstall the faulty node.
    How can it removing all the faulty node from the active node?
    Can I reinstall and rejoin new node to cluster?
    Thanks
    Nguyen

    The instructions to orderly remove a node from the cluster (http://docs.sun.com/app/docs/doc/820-4679/gcfso?l=en&a=view) do assume that the cluster node itself is still healthy.
    If you lost a node due to failure/disaster, then you would need to rebuild the same hardware and restore it from your backup. This is described at
    http://docs.sun.com/app/docs/doc/820-4679/cfhdbgbc?l=en&a=view
    Regards
    Thorsten

  • Can we assign 2 IPs for a SCCM 2012 primary site server and use 1 IP for communicating with its 2 DPs and 2nd one for communicating with its upper hierarchy CAS which is in a different .Domain

    Hi,
    Can we assign 2 IPs for a SCCM 2012 primary site server and use 1 Ip for communicating with its 2 DPs and 2nd one for communicating with its upper hierarchy CAS . ?
    Scenario: We are building 1 SCCM 2012 primary site and 2 DPs in one domain . In future this will attach to a CAS server which is in different domain. Can we assign  2 IPs in Primary site server , one IP will use to communicate with its 2 DPs and second
    IP for communicating with the CAS server which is in a different domain.? 
    Details: 
    1)Server : Windows 2012 R2 Std , VM environment .2) SCCM : SCCM 2012 R2 .3)SQL: SQL 2012 Std
    Thanks
    Rajesh Vasudevan

    First, it's not possible. You cannot attach a primary site to an existing CAS.
    Primary sites in 2012 are *not* the same as primary sites in 2007 and a CAS is 2012 is completely different from a central primary site in 2007.
    CASes cannot manage clients. Also, primary sites are *not* used for delegation in 2012. As Torsten points out, multiple primary sites are used for scale-out (in terms of client count) only. Placing primary sites for different organizational units provides
    no functional differences but does add complexity, latency, and additional failure points.
    Thus, as the others have pointed out, your premise for doing this is completely incorrect. What are your actual business goals?
    As for the IP Addressing, that depends upon your networking infrastructure. There is no way to configure ConfigMgr to use different interfaces for different types of traffic. You could potentially manipulate the routing tables in Windows but that's asking
    for trouble IMO.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Xsl:selecting nodes in ascending order

    Hi,
    Could anybody please answer this query.
    I have the following xml
    <Root>
    <Child>
         <number>1</number>
    </Child>
    <Child>
         <number>3</number>
    </Child>
    <Child>
         <number>4</number>
    </Child>
    <Child>
         <number>6</number>
    </Child>
    <Child>
         <number>7</number>
    </Child>
    <Child>
         <number>10</number>
    </Child>
    </Root>
    Now from xsl i need to select Child nodes in ascending order based on the <number> tag within <Child> node.
    Also at max there will be 10 child nodes,As the loop goes and retrives the nodes,I need to know which nodes
    have gone missing as i need to do some thing if a node is missing {For example in the above xml Child nodes
    with number 2,5,8,9 are missing.
    Is there any way I can do this?
    Thanks and Regards,
    Deepak                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    There's <xsl:sort> if you want to process a node set in ascending sequence. And there's the preceding-sibling axis if you want to look at a previous sibling node. You would want to test whether the preceding sibling's number element was one less than the current node's number element.

  • Incorrect "Ordered" quantity in the item master data

    Hello Experts,
    I have a situation where there are two items we have found that show the incorrect ordered quantity in the item master data. This is in fact the ordered column and the items are not production items. One of the items is showing a negative quantity and the other is showing 50,000 LBs less than it should given the one open production order with NO GRPO documents linked. Please advise ASAP..
    Thank you,
    Taylor

    Hi,
    You need to check the detect query and the scenarios in the Note No. : 999124.
    If the detect query of the Note returns result, you need to log a support ticket to get the database investigated.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Why only gets one node when select many nodes of tree in DWCS4 on Mac OS

    I use tag <mm:treecontrol> to create tree in DWCS4 on Mac OS.
    When I select many nodes in tree, but I only get one node by method: selectedNodes.
    codes of created tree as following:
    <mm:treecontrol name='tree' size='20' multiple noheaders>
         <mm:treecolumn state='hidden'>
              <mm:treenode value='A' state='expanded'></mm:treenode>
              <mm:treenode value='B' state='expanded'></mm:treenode>
              <mm:treenode value='C' state='expanded'></mm:treenode>
    </mm:treecontrol>
    Who can  tell me reasons?
    Thanks!
    comments: if don't use tag <mm:treecolumn>, tree will not show on Mac OS.

    Hi macbig,
    I finally got to look at my sister's computer. The HDD "Repair Disk" found missing threads, missing directory records, etc. and ended with:
    Error: Disk Utility can't repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-
    up files.
    Then, I tried "Verify Disk" and it found invalid volume file count and ended with:
    The volume Macintosh HD was found corrupted and needs to be repaired.
    Error: This disk needs to be repaired. Click Repair Disk
    I guess running Apple Hardware Test is not going to happen. :/
    I've ordered online a new 2.5 disk, make a Maverick boot USB, and start from scratch. Do you have any other suggestions?
    As for the corrupted old hard drive, do you have any suggestions of how to get out the data somehow?
    Thank you so much!

  • Permissions are incorrectly ordered Error

    I was looking to change some permissions on out AD when I right clck on the root in our domain hit properties then the security tab I get a Pop up
    The permissions on THISMOMAON.COM are incorrectly ordered, which may cause some entries to be innefective.
    Tor order the permissions correctly click reorder.
    To leave the permissions unchanged (the view will be read only) Click cancel.
    If this were just a folder or OU I'd just hit reorder but since I don't know exactly what it does it makes me nervous hitting reorder on the root. But since I don't all the settings are grayed out as in read only. Does anyone know what this means?
    Jason

    I was looking to change some permissions on out AD when I right clck on the root in our domain hit properties then the security tab I get a Pop up
    The permissions on THISMOMAON.COM are incorrectly ordered, which may cause some entries to be innefective.
    Tor order the permissions correctly click reorder.
    To leave the permissions unchanged (the view will be read only) Click cancel.
    If this were just a folder or OU I'd just hit reorder but since I don't know exactly what it does it makes me nervous hitting reorder on the root. But since I don't all the settings are grayed out as in read only. Does anyone know what this means?
    Jason
    Take a system state backup of at least one DC with global catalog. Once done, run the reorder action outside of Business hours. If you noticed that something went wrong then you can do an authoritative restore.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • How to read the content in one node of XML in Java? Pls help

    My dear brothers,
    I am a newbie of XML, I have a exercise which is creating a Tree View from XML file. But the trouble is I do not know how to read the content in one node of XML file. I decide to use the algorithm as following:
    1. Create a GUI form which gives the ability for user to choose a XML file (ok)
    2. Load XML and return the file (ok)
    3. Read the file from node to node to create the node in Tree View (?!)
    Please help me, and if you are enough kind, please give me an small example to easy understand. Thanks in advance.
    Hoang Yen Binh

    I hope this one helps you.
         <ABC Type="ProductBased" ProdName="One" Location="India">
              <CEO>Raj</CEO>
              <Finance>Vikram</Finance>
              <HR>Karthik</HR>
              <Technical>Satish</Technical>
         </ABC>
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Attr;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Node;
    import org.w3c.dom.DOMException;
    import javax.xml.parsers.ParserConfigurationException;
    import org.xml.sax.SAXException;
    import java.io.File;
    import java.io.IOException;
    public class XmlReading {
         Document doc;
         Element element;
         public static void main(String[] args) throws Exception{
              XmlReading xr = new XmlReading();
              xr.getXmlParser(args);
         public void getXmlParser(String[] args) {
              DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                   if(args.length != 1) {
                        System.err.println("Argument Required");
              try {
                   DocumentBuilder builder = factory.newDocumentBuilder();
                   doc = builder.parse(new File(args[0]));
              }catch(ParserConfigurationException e1) {
              }catch(SAXException e2) {
              }catch(IOException e3) {
              getAttributes();
         public void getAttributes() {
              // Retrive the entire Document from the Dom Tree
              element = doc.getDocumentElement();
    //          System.out.println(element);
              NamedNodeMap attrs = element.getAttributes();
              // Get number of attributes in the element
         int numAttrs = attrs.getLength();
         // Process each attribute
              for (int i=0; i<numAttrs; i++) {
                   Node node = attrs.item(i);
                   // Get attribute name and value
                   String attrName = node.getNodeName();
                   String attrValue = node.getNodeValue();
                   System.out.println(attrName + ": " + attrValue);
              String s1 = element.getTagName();
              System.out.println(s1);
              // To get all the elements in a DOM Tree
              NodeList nl1 = element.getElementsByTagName("*");
              int i2 = nl1.getLength();
              System.out.println(i2);
              for(int i=0; i<i2; i++) {
                   System.out.println(nl1.item(i) + "\n");
    }

  • Application deployed on one node is not getting displayed in second node

    Our environment is linux x86_64 and FMW version 11g,weblogic 10.3.4.0 ,soa 11.1.1.4.
    We have installed weblogic cluster :
    node1: Admin server,soa_server1
    node2:soa_server2
    when we deploy any soa application in one node it is not getting published in second node.We have taken oracle support also still problem is not solved.
    They told us to configure coherence ,we have taken owc from metalink .
    very urgent.
    Any one can help me.

    You have a cluster consisting of soa_server1 and soa_server2 or are these stand-alone WebLogic instances?
    Is soa-infra active on soa_server2?
    Can you check if soa-infra can be reached on both the server instances (http://hostname:port/soa-infra/)
    When soa_infra cannot be reached on soa_server2 can you check the logging to see what errors
    are occuring.
    Some examples that set-up a clustered envionment can be found here: http://middlewaremagic.com/weblogic/?p=6872
    and here: http://middlewaremagic.com/weblogic/?p=6637

  • How to display(binding) values in the table from more than one node?

    Hi,
    I have two nodes (TRIPS & AMOUNTS)in the context. How to bind these values into the table control?
    When i bind second one, first one is getting replaced.

    Hi Mog,
    Of course it is possible to create a table from attributes of more than one node, and in some cases this is still necessary, but you have to do this the hard (manual) way.
    If you have a table control, have a look at the properties and the elements belonging to it.
    First of all, there is the property "dataSource", which binds to a multiple node (let's name it TableRootNode). This means that for each element of THIS node, one row is created. In each row the data of exactly one element of this TableRootNode is displayed.
    Then you have columns in this table. Inside of the columns there is a header and an editor. The editor is the interesting part.
    Normally the primary property of this editor is bound to an attribute of the TableRootNode. Then everything works as expected. If it binds to an attribute of a subnode (SUB) of TableRootNode, then in row i the data of the subnode of the i-th element of TableRootNode is displayed. There is no need for SUB to be a multiple node, but it must not be a singleton.
    If you bind a property of the editor to an attribute, which does not lie in the subtree of TableRootNode, then you will see the same value in each row.
    Now it depends on the structure of your context. Take the node, which is relevant for the change in each row (I assume it is TRIPS) and bind the table to the node as you are used to. Then for each additional column, you have to create a new column in the tree, create a new header element with a title and a new editor (e.g. textview or inputfield) and then bind the right property of the editor to the corresponding attribute in node AMOUNTS).
    If these 2 nodes do not have parent-child-relationship, the tip to create a new node, which consists of the attributes of both nodes is the only solution.
    Ciao, Regina

  • Can I move sessions from one node to another in Oracle RAC 11g?

    Hi everybody,
    When I need to shutdown one node for maintenance, can I move the sessions connected to that node to the other one? I know TFA but I'm not using it right now, I just wanted to know if I may move the sessions without warning everyone that some of them will be disconnected.
    Thanks for your help.

    2686998 wrote:
    sol.beach, thanks for your answers, just a few words:
    When you answered "NO, shutting down a node will disrupt every session on that node". it was confusing, as I wasn't asking for the behavior of the sessions when the node is shut down, you should've answered "NO, there's no way to manually relocate a session", that would have been clear since the beginning, also asking me to post a SQL didn't help much either, I honestly thought I didn't explain well my doubt.
    Thanks anyway.
    The answer is a no but the question for you, why you want to do that anyways?
    Aman....

Maybe you are looking for

  • Email sending: "sending report output directly to the body of the email"

    Hi      I got one requirement.this is the enhancement to already exisitng report.when user clicks on send email check box,report has to be display and this report output has to be send to email of the particular vendor. it has be seen directly in the

  • Using a xpath expression stored in a variable

    Hi All, I have an xpath expression which is stored in the database which I need to use against the request XML. I am able to retrieve this Xpath expression from the database, but not able to use it against the request XML. Xpath expression got from t

  • How to put this condition in Query

    Dear experts, I have a scenario where in the calculation should be dynamic between key figures in query For example i have a Target Cost and Actualcost1, Actualcost2, Actualcost3 i need to findout the variance between the Target and Actual but the ca

  • Getting started -- in the most basic way

    OK, I'm not very techie but this goes beyond. As I was pulling my ipod out of the box, it turned on and accidentally, the language selected was Japanese. How do I change it back to English? How do I turn up the volume?

  • Preferred vendor not being copied from the selection list of F4 --- Shop

    Hi SRM Gurus,   When we are creating a shopping cart with the sources of supply, preferred list of vendors is displayed when we click the icon next to the preferred vendor in the browser.  Source of supply, F4 in GUI also gives a list of vendors but