XPath Node Selection not seeing children nodes

Hello All,
I have a question regarding XPath and when it returns a node (via the Expression)
Lets say, I have this document:
<person>
  <name>someName</name>
  <location>someLocation</location>
<person>I have setup my XPath Expression to return the <person> node. When I try to access the children nodes of that node, I cannot see them via code.
The documentation states that the nodes returned from the Expression are "live", which (imo) means the children should be available. However, I do not see them using DOM methods like .getNextChild(). When I check the Node.hasChildren(); it returns true.
The reason for this is: I need to be able to select a top-level node and import that node into another document ( see my JAXB question ).
Any Advice on this one?
Thanks in advance,
Mark Buetow

remember you will get TextNodes too, when you call getFirstChild, so you need to walk thru all the children till you find nodes that are instanceof Element

Similar Messages

  • Could not see Security Node under Global Explorer.

    Hi All,
    Could not see Security Node under Global Explorer, can some one guide is there any I can make changes to the setup to see the Security node.
    Thanks in Advance.
    --Satish                                                                                                                                                                                                                                                                                                                                                                                   

    Hi
    Is OWBUSER the repository owner? If not then log on as the repository owner. Otherwise it may be you have killed the panel and it has disappeared, see post here for resetting layout.
    You can have as many target users that you deploy into as you want.
    Cheers
    David

  • DBCA did not see the ASM disk group in NODE 2 but see in NODE 1

    Are there anyone who encountered creating a database using DBCA with ASM as file system?
    Our issue before is in both nodes the DBCA did not see the ASM disk group.
    But after setting the TNS_ADMIN in both nodes and running the DBCA as administrator in Node 1, the DBCA able to see now the ASM disk group. Unfortunately, in Node 2 it didn't work out?
    So we didn't know why is it from Node 2, the DBCA still didn't see the ASM disk group?Since it is both the same.
    Any ideas? Please advise.
    For you information, we are using Windows 64-bit, Oracle 11g R2
    Thank you in advance for those who will respond.
    Edited by: 822505 on Dec 20, 2010 7:47 PM

    822505 wrote:
    Are there anyone who encountered creating a database using DBCA with ASM as file system?
    Our issue before is in both nodes the DBCA did not see the ASM disk group.
    But after setting the TNS_ADMIN in both nodes and running the DBCA as administrator in Node 1, the DBCA able to see now the ASM disk group. Unfortunately, in Node 2 it didn't work out?
    So we didn't know why is it from Node 2, the DBCA still didn't see the ASM disk group?Since it is both the same.
    Any ideas? Please advise.
    For you information, we are using Windows 64-bit, Oracle 11g R2
    Thank you in advance for those who will respond.
    Are the disks given to the ASM are visible from Node2?
    Aman....

  • When-tree-node-selected not fire while navigating through keyboard(Urgent)

    i am using treeview for displaying chart of account and fires the above said trigger in the form, but the trigger has no effect whilt navigating tree view with keybpard arrow keys until user explicitly select the node through mouse help me out plzz
    i want that trigger also fires when user navigate and select node through keyboard or through mouse thanks
    its urgent

    Stop duplicating your threads!!!
    when-tree-node-selected (Urgent)
    You posted the same question 2 days ago and I've answered you, you didn't even provide an exact version of your forms.
    Posting again will not change your problem.
    Do not waste space on the forum.

  • Tree Node selected not firing all the time

    I have a tree menu that calls other forms when the user selects a tree branch (see
    When-tree-node-selected trigger below).
    This works fine, but if the user closes the form and want to re-open it, the trigger doesn't fire unless the user clicks off the branch item and back on it. How can I make it work whenever the user clocks the branch item?
    if :SYSTEM.TRIGGER_NODE_SELECTED = 'TRUE' then null;
    node_value := Ftree.Get_Tree_Node_Property(htree, :SYSTEM.TRIGGER_NODE, Ftree.NODE_VALUE);
    open_a_form(l_form,l_module,l_form_code);
    end if;

    Have you tried setting the node the node to deselected programmatically?

  • Use XPath to select one of the node??

    Can I use xpath to draw <param-value>/mnt/VISL/stats/stats/clarent2</param-value>
    only?
    I have tried to use ApplyXPath sample, but
    I don't know what xpath value I should use?
    I tried /doc/servlet/init-param/param-value
    but it certainly draw other tag with the same name
    Pls help!!!
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <servlet>
    <servlet-name>
    gen_daily
    </servlet-name>
    <servlet-class>
    gen_daily
    </servlet-class>
    <init-param>
    <param-name>clarent_init_dir</param-name>
    <param-value>/mnt/VISL/stats/stats/clarent2</param-value>
    </init-param>
    <init-param>
    <param-name>linefeed_mode</param-name>
    <param-value>2</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>
    RequestParamExample
    </servlet-name>
    <servlet-class>
    RequestParamExample
    </servlet-class>
    </servlet>
    <servlet>
    <servlet-name>
    RequestParamExample2
    </servlet-name>
    <servlet-class>
    RequestParamExample2
    </servlet-class>
    </servlet>
    <!-- Define example application events listeners -->
    <!-- Define servlets that are included in the example application -->
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <taglib>
    <taglib-uri>
    http://java.apache.org/tomcat/examples-taglib
    </taglib-uri>
    <taglib-location>
    /WEB-INF/jsp/example-taglib.tld
    </taglib-location>
    </taglib>
    <resource-ref>
    <res-ref-name>mail/session</res-ref-name>
    <res-type>javax.mail.Session</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    <security-constraint>
    <display-name>Example Security Constraint</display-name>
    <web-resource-collection>
    <web-resource-name>Protected Area</web-resource-name>
    <!-- Define the context-relative URL(s) to be protected -->
    <url-pattern>/jsp/security/protected/*</url-pattern>
    <!-- If you list http methods, only those methods are protected -->
    <http-method>DELETE</http-method>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    <http-method>PUT</http-method>
    </web-resource-collection>
    <auth-constraint>
    <!-- Anyone with one of the listed roles may access this area -->
    <role-name>tomcat</role-name>
    <role-name>role1</role-name>
    </auth-constraint>
    </security-constraint>
    </web-app>

    You have to start at the root and go down the XML tree.
    Try:
    /web-app/servlet/init-param/param-value
    Are you trying to use this in xsl?
    Kind regards,
    Hans.

  • ORA-31185 DOM NODES DO NOT BELONG TO THE SAME DOCUMENT

    Hi all,
    I developed an Oracle function that returns a XMLTYPE. In this function, I first created a node <ROOT> and I would like to append children nodes to this root node.
    To create children nodes I loop on a cursor and each iteration of this loop "build" a XMLTYPE node. I would like append this XMLTYPE node to the root node but for now I get the ORA-31185 error !
    Here is the code of my function (simplified version (without use of cursor)):
    CREATE OR REPLACE
    FUNCTION GET_MEDOC2 RETURN XMLTYPE IS
          parent_document DBMS_XMLDOM.DOMDOCUMENT;
       parent_rootnode DBMS_XMLDOM.DOMNODE;
       child_document  DBMS_XMLDOM.DOMDOCUMENT;
       child_rootnode  DBMS_XMLDOM.DOMNODE;
       rootXML XMLTYPE;
       subXML XMLTYPE;
       countLOOP NUMBER;
    BEGIN
        SELECT XMLELEMENT("ROOT") INTO rootXML FROM DUAL;
        parent_document := DBMS_XMLDOM.newDOMDocument(rootXML);
        parent_rootnode := DBMS_XMLDOM.makeNode(DBMS_XMLDOM.getDocumentElement(parent_document));
         FOR countLOOP IN 1..10 LOOP
            SELECT XMLELEMENT("CHILD", countLOOP) INTO subXML FROM DUAL;
            child_document  := DBMS_XMLDOM.newDOMDocument(subXML);
            child_rootnode  := DBMS_XMLDOM.makeNode(DBMS_XMLDOM.getDocumentElement(child_document));   
            child_rootnode := DBMS_XMLDOM.appendchild(parent_rootnode, child_rootnode);  
         END LOOP;
         RETURN rootXML;
    END GET_MEDOC2;When I execute the following :
    SELECT GET_MEDOC2() FROM DUAL;I get the beautiful ORA-31185 DOM NODES DO NOT BELONG TO THE SAME DOCUMENT
    What I expect is an XML like this :
    <ROOT>
        <CHILD>1</CHILD>
        <CHILD>2</CHILD>
        <CHILD>3</CHILD>
        <CHILD>4</CHILD>
        <CHILD>5</CHILD>
        <CHILD>6</CHILD>
        <CHILD>7</CHILD>
        <CHILD>8</CHILD>
        <CHILD>9</CHILD>
        <CHILD>10</CHILD>
    </ROOT>Can someone help me please ? (I'm on Oracle 10.1.0.5.0)
    Thanks

    Hi,
    I get the beautiful ORA-31185 DOM NODES DO NOT BELONG TO THE SAME DOCUMENTYou need function importNode (or adoptNode) to copy nodes across different documents.
    But, do not use DOM manipulation in this case.
    A single query using SQL/XML functions is certainly simpler and more performant :
    SELECT XMLElement("ROOT",
             XMLAgg(
               XMLelement("CHILD",
                 XMLForest(
                   empno
                 , ename
               ) order by empno
           ) as result
    FROM (
      -- your query goes here, e.g. :
      SELECT empno, ename
      FROM scott.emp
    <ROOT>
      <CHILD>
        <EMPNO>7369</EMPNO>
        <ENAME>SMITH</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7499</EMPNO>
        <ENAME>ALLEN</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7521</EMPNO>
        <ENAME>WARD</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7566</EMPNO>
        <ENAME>JONES</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7654</EMPNO>
        <ENAME>MARTIN</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7698</EMPNO>
        <ENAME>BLAKE</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7782</EMPNO>
        <ENAME>CLARK</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7839</EMPNO>
        <ENAME>KING</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7844</EMPNO>
        <ENAME>TURNER</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7900</EMPNO>
        <ENAME>JAMES</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7902</EMPNO>
        <ENAME>FORD</ENAME>
      </CHILD>
      <CHILD>
        <EMPNO>7934</EMPNO>
        <ENAME>MILLER</ENAME>
      </CHILD>
    </ROOT>

  • Hierarchy Node Variable not working

    Hello,
    I created two variable one being Hierarchy Node variable and other Hierarchy variable.
    I am using this for the Internal order hierarchy.
    I amd also working on 2004s and not 3.5 version.
    I restricted the Internal order and then selected the variable and then selected the nodes and before moving the Nodes variable, I also selected the Variable for the Hierarchy and then moved the Node variable to the right screen.
    When I run the report, the option for the selecting the Hierarchy appears and I selected the correct Hierarchy, but when I go to the Hierarchy Node variable, I do not see the Nodes for that Hierarchy I selected in the first variable and it always like a fixed value Hierarchy defaults to the first Hierarchy.  Hence I am unable to select the node to execute the report.
    I would appreciate any ones feedback.
    Thanks
    Sundar

    I am working in 2004s as well (SP11) and I am trying to do the same type of thing.
    I have multiple cost center hieriarchies that the user can choose from at run-time using the hierachy variable.
    Then once the user chooses to the hierarchy they then should go choose a specific node that they want to run for in that hierarchy using the Cost Center Hierarchy Node variable (using the hierarchy variable, not fixed hierarchy).
    When I run this in the web I am allowed to choose one of the multiple cost center hierarchies... this means that the hierarchy variable is working, however when i go to choose the specific cost center node for that hierarchy it uses the defult cost center hierarchy instead of the one selected in the selection screen.
    If anyone can shed some light on this it would be greatly appreciated.
    Aaron

  • OPEN FORM WHEN-TREE-NODE-SELECTED

    hello all...
    i have a tree and i wanna when i click on the node another forms open due to form name
    i have table includes form_if,form_name " as in H.D.D"
    when i present all nodes and i click on the node the form opened and when i click on other node from the tree
    " the last previous selected node also opened and when i close it the new form is opened and so on"
    the code in when-tree-node-selected is
    DECLARE
    node_value varchar2 (100);
    frm_name varchar2 (100);
    path varchar2 (100);
    BEGIN
    node_value := ftree.get_tree_node_property('block33.sub_TREE',:SYSTEM.TRIGGER_NODE, FTREE.NODE_VALUE);
    select FRM_NAME into frm_name
    from forms_list
    where FO_ID = node_value
    path :=(frm_name||'.fmx');
    call_form(path);
    path:=null;
    frm_name:=null;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN NULL;
    END;

    Hi,
    >
    when-tree-node-selected
    >
    Fires when a node is selected or deselected.
    So your code is getting executed for selection and deselection
    use SYSTEM.TRIGGER_NODE_SELECTED to check
    IF SYSTEM.TRIGGER_NODE_SELECTED THENRegards
    Yoonas

  • The selected context node does not have attributes - Message no. SWDP_WB_TO

    Hello,
    I am trying out the example in web dynpro documentation -> Creating a Simple Flight Info Application
    and in part 3 steps 11 - 13 I get the following error
    The selected context node does not have attributes
    and the associated message class and # is :
    Message no. SWDP_WB_TOOL467
    can anyone please help ?

    Hi Raj,
    Have you done the steps 7 and 8 as described
    7.      Create an additional node called u201CflightSu201D, this time with the cardinality 0..n.
    8.      Use the Create Using Wizard option of the context node again to define attributes from the SFLIGHT structure for this new node (see part 1, step 15). Choose the following fields: CARRID, CONNID, FLDATE, PRICE and PLANETYPE.
    See the flights node , if there are no attributes the perform the steps as described in 8.

  • Error "Lead selection not set for context node"

    Hi everyone,
    I've got a Tree control in WebDynpro ABAP and I've implemented an "expand all" button.
    Here's the coding:
    METHOD expand_node_rec.
      DATA lo_el_child TYPE REF TO if_wd_context_element.
      DATA lo_node_children TYPE  wdr_context_child_map.
      DATA wa_lo_node_children LIKE LINE OF lo_node_children.
      DATA lo_nd_child TYPE REF TO if_wd_context_node.
      DATA lo_kschl TYPE klschl.
      DATA lv_has_children TYPE boolean.
      lo_el_child = node->get_element( ).
      lo_node_children = node->get_child_nodes( ).
      node->get_attribute( EXPORTING name = 'KSCHL' IMPORTING value = lo_kschl ).
      node->get_attribute( EXPORTING name = 'HAS_CHILDREN' IMPORTING value = lv_has_children ).
      IF lv_has_children = abap_true.
        node->set_attribute( name = 'IS_EXPANDED' value = abap_true ).
      ENDIF.
      LOOP AT lo_node_children INTO wa_lo_node_children.
        lo_nd_child = wa_lo_node_children-node.
        me->expand_node_rec( node = lo_nd_child  ).
      ENDLOOP.
    ENDMETHOD.
    However I'm getting the error above: "Lead selection not set for context node".
    Any suggestions?
    Edited by: DEVELOPMENT THEMIS on Jul 7, 2011 6:34 PM

    hi developement Themis,
    I think u didn't diclare "node" as context node. So declare it as a context node before using as a context node..as below
    DATA node  TYPE REF TO if_wd_context_node.
    or u can use  "lo_nd_child " as ur context node in ur program in place of "node"
    then I think this error will be removed.
    thanks,
    simadri

  • Partial selection of child does not keep parent node selected

    Hi All,
    Please help! I have a checkbox JTree which is working fine in all regard as I want except one condition i.e. if all child(leaf) of a parent are not selected parent gets deselected i.e. if we uncheck any child(leaf) node parent will get unselected even if there are some child are selected. I am posing code for the model. let me know if I need to post other codes also
    tree.setModel(new DefaultTreeModel(rootNode1) {
        public void valueForPathChanged(TreePath path, Object newValue) {
            Object currNode = path.getLastPathComponent();
            super.valueForPathChanged(path, newValue);
            if ((currNode != null) && (currNode instanceof DefaultMutableTreeNode)) {
                DefaultMutableTreeNode editedNode = (DefaultMutableTreeNode) currNode;
                CheckBoxNode newCBN = (CheckBoxNode) newValue;
                //CheckBoxNode newCBN1 = (CheckBoxNode) newValue;
                if (!editedNode.isLeaf()) {
                    int i=0;
                    //for (int i = 0; i < editedNode.getChildCount(); i++) {
                      while(i < editedNode.getChildCount()){
                         System.out.println("child count root"+editedNode.getChildCount());
                         System.out.println("child count root i"+i);
                        DefaultMutableTreeNode node = (DefaultMutableTreeNode) editedNode.getChildAt(i);
                        CheckBoxNode cbn = (CheckBoxNode) node.getUserObject();
                        cbn.setSelected(newCBN.isSelected());
                        if(!editedNode.getChildAt(i).isLeaf())
                        for(int j=0;j<editedNode.getChildAt(i).getChildCount();j++)
                         System.out.println("child count roottt"+editedNode.getChildCount());
                         System.out.println("child count root j"+j);
                         DefaultMutableTreeNode node1 = (DefaultMutableTreeNode) editedNode.getChildAt(i).getChildAt(j);
                         CheckBoxNode cbn1 = (CheckBoxNode) node1.getUserObject();
                         //cbn1.setSelected(true);
                         cbn1.setSelected(newCBN.isSelected());
                        i++;
                else{
                    boolean isAllChiledSelected = true;
                   for (int i = 0; i < editedNode.getParent().getChildCount(); i++) {
                        DefaultMutableTreeNode node = (DefaultMutableTreeNode) editedNode.getParent().getChildAt(i);
                        CheckBoxNode cbn = (CheckBoxNode) node.getUserObject();
                        if(!cbn.isSelected()){
                            isAllChiledSelected = false;
                    if(isAllChiledSelected){
                        DefaultMutableTreeNode node = (DefaultMutableTreeNode)editedNode.getParent();
                          CheckBoxNode cbn = (CheckBoxNode) node.getUserObject();
                        cbn.setSelected(isAllChiledSelected);
                if (!newCBN.isSelected()) {
                    DefaultMutableTreeNode node = (DefaultMutableTreeNode) editedNode.getParent();
                    if (node.getUserObject() instanceof CheckBoxNode)
                        ((CheckBoxNode) node.getUserObject()).setSelected(false);
              /*if (!newCBN.isSelected()) {
                    DefaultMutableTreeNode node = (DefaultMutableTreeNode) editedNode.getParent();
                    if (node.getUserObject() instanceof CheckBoxNode)
                        ((CheckBoxNode) node.getUserObject()).setSelected(false);
    });

    Hi Thomas,
    Sorry for late reply due to weekend.
    I had already tried your suggestion but it is not working. Do not know why? here is the code.
    else {
      int countselection=0;
    int t=editedNode.getParent().getChildCount();
                   for (int i = 0; i < editedNode.getParent().getChildCount(); i++) {
                        DefaultMutableTreeNode node = (DefaultMutableTreeNode) editedNode.getParent().getChildAt(i);
                        CheckBoxNode cbn = (CheckBoxNode) node.getUserObject();
                        if(cbn.isSelected()){
                            countselection= countselection+1;
                    if(icountselection==0 ){
                        DefaultMutableTreeNode node = (DefaultMutableTreeNode)editedNode.getParent();
                          CheckBoxNode cbn = (CheckBoxNode) node.getUserObject();
                        cbn.setSelected(false );}
    else if(countselection==1 && countselection<=t)
    DefaultMutableTreeNode node = (DefaultMutableTreeNode)editedNode.getParent();
                          CheckBoxNode cbn = (CheckBoxNode) node.getUserObject();
                        cbn.setSelected(true );
    }}

  • Treeview Selected Node is not visible

    Hi
    I have below code snippet
                                TreeNode tn = TreeView1.FindNode(DefaultCustomFolderPath);
                                if (tn != null)
                                TreeView1.CollapseAll();                           
                                tn.SelectAction = TreeNodeSelectAction.SelectExpand;
                                tn.Selected = true;
    This code was working fine when i was having Windows XP OS..
    Now that the XP OS has been upgraded to Windows7, it is showing the collapsed tree view only i.e the selected node is not automatically displayed. If you expand the treeview to the selected node, it is selected/highlighted correctly.
    Please help to solve this issue
    Edit: I am using <asp:TreeView>

    There is a different TreeView for every UI Technology (WinForms, WPF, ASP.Net). Plus several 3rd party TreeViews. Please specify wich one you use and ideall repost in the proper (sub)forum for the UI Technology.
    Let's talk about MVVM: http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/b1a8bf14-4acd-4d77-9df8-bdb95b02dbe2 Please mark post as helpfull and answers respectively.

  • After registering SAPCCMSR agent not able to see J2ee nodes in rz20

    Hi,
    After registering SAPCCMSR agent on J2ee instance not able to see J2ee nodes in rz20. The ccms_connetor file has the
    following error
    Feb 26, 2012 8:43:44 AM  ...y.monitor.mapping.ccms.Selfmonitoring [SAPEngine_System_Thread[impl:5]_65] Error: Couldn't create self monitoring (java.lang.RuntimeException: Update on node failed (java.lang.IllegalArgumentException: Method
    name is empty.)).
    Feb 26, 2012 8:43:44 AM  ...ne.library.monitor.mapping.ccms.Trace [SAPEngine_System_Thread[impl:5]_65] Error: Could not read host name (com.sap.mona.api.JMonException: No instance info available.)
    Feb 26, 2012 8:43:44 AM  ...ne.library.monitor.mapping.ccms.Trace [SAPEngine_System_Thread[impl:5]_65] Error: RegisterNode</>: com.sap.mona.api.JMonException: java.lang.RuntimeException: Update on node failed (java.lang.IllegalArgumentEx
    ception: Method name is empty.)
    Feb 26, 2012 8:43:44 AM  ...ne.library.monitor.mapping.ccms.Trace [SAPEngine_System_Thread[impl:5]_65] Error: Could not read host name (com.sap.mona.api.JMonException: No instance info available.)
    Feb 26, 2012 8:43:44 AM  ...ne.library.monitor.mapping.ccms.Trace [SAPEngine_System_Thread[impl:5]_65] Error: RegisterNode</>: com.sap.mona.api.JMonException: java.lang.RuntimeException: Update on node failed (java.lang.IllegalArgumentEx
    ception: Method name is empty.)
    Feb 26, 2012 8:43:44 AM  ...ne.library.monitor.mapping.ccms.Trace [SAPEngine_System_Thread[impl:5]_65] Error: RegisterNode</Kernel>: com.sap.engine.library.monitor.mapping.ccms.CcmsConnectorException: /Kernel can't be created due to missing parent node(s).
    Feb 26, 2012 8:43:44 AM  ...ne.library.monitor.mapping.ccms.Trace [SAPEngine_System_Thread[impl:5]_65] Error: Could not read host name (com.sap.mona.api.JMonException: No instance info available.)
    Feb 26, 2012 8:43:44 AM  ...ne.library.monitor.mapping.ccms.Trace [SAPEngine_System_Thread[impl:5]_65] Error: RegisterNode</>: com.sap.mona.api.JMonException: java.lang.RuntimeException: Update on node failed (java.lang.IllegalArgumentException: Method name is empty.)
    Feb 26, 2012 8:43:44 AM  ...ne.library.monitor.mapping.ccms.Trace [SAPEngine_System_Thread[impl:5]_65] Error: RegisterNode</Services>: com.sap.engine.library.monitor.mapping.ccms.CcmsConnectorException: /Services can't be created due to missing parent node(s).
    Can some one help me on this.
    Thanks

    Hello Kranthi,
    I would suggest you to cross check the steps you have performed to register sapccmsr agent with the following help links and update us.
    http://help.sap.com/saphelp_nw04/helpdata/en/48/6a76607a7c91409474ad6c7b6f5a26/content.htm
    Good Luck.
    Thanks,
    Siva Kumar

  • See Multiple node names under Import manager source table of single XML

    Hi,
    I have a xml file with differnt nodes of following structure when it comes to IMport manager It shows multipletable names where I can choose Business Partner, Partner, RemoteSystem... But My maps are based on Partner only.. Now I need to update the look up Qualifer table.. of which values are in Type.. Which I am unable to see under Partner node in import manager...I dont see the fields of Type Node under Map Filed/Values tab...
    <Business_partner xlms....
    --<Partner>
    <Address>
    <name>   
    <name1>
    <Role>
    <A>   
    <B>
    <Remote SYstem>
    <name>   
    <Code>
    <Type>
    <Type>   
    <Type2>
    Can any one put there comments please..
    Thanks
    Rajeev

    Hello Rajeev
    "Import manager guide"
    page 36:
    "For XML source files, the source table list displays the nested elements defined in the XML schema."
    page 44:
    "The XML Schema list includes an entry for each XML schema defined in the MDM Console."
    page 86:
    "Ways in which the Source Hierarchy tree now reflects an XML fileu2019s structure include:
    u2022 Top-level node is the source XML file
    u2022 Tables in the tree represent nested XML structures
    u2022All tables are nested under the root element
    u2022 Fields in the tree represent data-storing XML elements
    u2022 Joins and _ID fields are no longer added or required
    With these changes, users no longer have to manually recreate the relationships implicit in the XML schema, as they are preserved by MDM and accurately reflected in the source hierarchy tree.
    NOTE ►► To ensure that Import Manager correctly interprets the structure of an XML file, specify its corresponding XML schema file in the Connect to Source dialog (see u201CStarting and Exiting the Import Manageru201D on page 43 for more information)."
    page 188:
    "When the source is an XML file, the Available Fields list is limited to nodes which are siblings (on the same level as), or children of (nested below) the currently selected Source Hierarchy tree node."
    page 213
    "For example, if a source file is in XML format, Import Manager uses a tree in the Source Fields grid to depict the nested structure of fields within the associated XML schema."
    Use XML schema for right node showing
    Regards
    Kanstantsin Chernichenka

Maybe you are looking for